Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Собрал все изменения в master и оформил статью #889

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixed the code 2
  • Loading branch information
kirill5564 authored Feb 21, 2025
commit 3bcf3a99b3fa169362022ab029a22551609c2e20
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
По условию задачи нужно скачать из сети данные об онлайн-курсах, выбрать из
них лучшие и сохранить результат в xlsx файл. Вот фрагмент кода:

```
```python
def get_courses_list(courses_url):
html = fetch_html(courses_url)
if html:
Expand Down Expand Up @@ -63,7 +63,7 @@ HTML разметкой вместо `courses_url`. Вуаля, мы решил

Пойдем дальше. Код другой функции:

```
```python
def get_course_info(html):
# ... parsing logic

Expand Down Expand Up @@ -92,7 +92,7 @@ rating yet" можно переместить туда где данные по

Та же функция, часть вторая, последняя:

```
```python
def get_course_info(html):
# ... more parsing logic is here

Expand Down