mirror of
https://github.com/thecyberlearn/chat-backend.git
synced 2026-08-18 15:32:53 +00:00
Features: - Django REST API backend - Multi-strategy web scraping system (Beautiful Soup, Playwright, Firecrawl) - Anti-detection features (proxy rotation, user-agent rotation) - Data export functionality (JSON, CSV, TXT) - Business and CrawledPage models - Enhanced crawling service with fallback mechanisms 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
506 B
Python
20 lines
506 B
Python
import os
|
|
import sys
|
|
from typing import TYPE_CHECKING
|
|
|
|
__all__ = ("_Quoter", "_Unquoter")
|
|
|
|
|
|
NO_EXTENSIONS = bool(os.environ.get("YARL_NO_EXTENSIONS")) # type: bool
|
|
if sys.implementation.name != "cpython":
|
|
NO_EXTENSIONS = True
|
|
|
|
|
|
if TYPE_CHECKING or NO_EXTENSIONS:
|
|
from ._quoting_py import _Quoter, _Unquoter
|
|
else:
|
|
try:
|
|
from ._quoting_c import _Quoter, _Unquoter
|
|
except ImportError: # pragma: no cover
|
|
from ._quoting_py import _Quoter, _Unquoter # type: ignore[assignment]
|