Skip to content

Instantly share code, notes, and snippets.

View DFilyushin's full-sized avatar
:octocat:
Python, MSA, Rabbitmq

Dmitriy Filyushin DFilyushin

:octocat:
Python, MSA, Rabbitmq
View GitHub Profile
@DFilyushin
DFilyushin / habr_api.py
Created September 16, 2025 12:30 — forked from iamlostshe/habr_api.py
Сгружаем статьи с habr.ru
import asyncio
from pathlib import Path
from aiohttp import ClientSession
from bs4 import BeautifulSoup
from html_to_markdown import convert_to_markdown
from loguru import logger
ALLOWED_ALPHABET = " qwertyuiopasdfghjklzxcvbnmйцукенгшщзфывапролджэячсмитьбюхъё"
BASE_URL = "http://habr.com/"