This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/" |