Skip to content

Commit c5997d4

Browse files
committed
Industrial_developed_hangman changed to api usage
1 parent 1c04b3a commit c5997d4

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

Industrial_developed_hangman/src/hangman/main.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1+
import json
12
import random
23
import time
34
from enum import Enum
45
from pathlib import Path
56
from typing import Callable, List
67

78
import requests
8-
from bs4 import BeautifulSoup
99
from colorama import Fore, Style
1010

1111
DEBUG = False
@@ -59,7 +59,7 @@ def parse_word_from_local(choice_function: Callable[[List[str]], str] = random.c
5959
raise FileNotFoundError('File local_words.txt was not found')
6060

6161

62-
def parse_word_from_site(url: str = 'https://randomword.com') -> str:
62+
def parse_word_from_site(url: str = 'https://random-word-api.herokuapp.com/word') -> str:
6363
# noqa: DAR201
6464
"""
6565
Parse word from website.
@@ -70,12 +70,11 @@ def parse_word_from_site(url: str = 'https://randomword.com') -> str:
7070
:raises RuntimeError: something go wrong with getting the word from site.
7171
"""
7272
try:
73-
page: requests.Response = requests.get(url, timeout=request_timeout)
73+
response: requests.Response = requests.get(url, timeout=request_timeout)
7474
except ConnectionError:
7575
raise ConnectionError('There is no connection to the internet')
76-
if page.status_code == success_code:
77-
soup = BeautifulSoup(page.text, 'html.parser')
78-
return soup.find('div', id='random_word').text
76+
if response.status_code == success_code:
77+
return json.loads(response.content.decode())[0]
7978
raise RuntimeError('Something go wrong with getting the word from site')
8079

8180

Industrial_developed_hangman/tests/test_hangman/test_main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def test_parse_word_from_site() -> None:
5656

5757
def test_parse_word_from_site_no_internet() -> None:
5858
with requests_mock.Mocker() as mock:
59-
mock.get('https://randomword.com', text='<div id="random_word">some text</div>')
59+
mock.get('https://random-word-api.herokuapp.com/word', text='["some text"]')
6060
assert parse_word_from_site() == 'some text'
6161

6262

0 commit comments

Comments
 (0)