mirror of
https://github.com/thecyberlearn/chat-backend.git
synced 2026-08-18 12:12:52 +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>
15 lines
281 B
Python
15 lines
281 B
Python
from ._query import Query, QueryVariable, SimpleQuery
|
|
from ._url import URL, cache_clear, cache_configure, cache_info
|
|
|
|
__version__ = "1.20.1"
|
|
|
|
__all__ = (
|
|
"URL",
|
|
"SimpleQuery",
|
|
"QueryVariable",
|
|
"Query",
|
|
"cache_clear",
|
|
"cache_configure",
|
|
"cache_info",
|
|
)
|