mirror of
https://github.com/thecyberlearn/chat-backend.git
synced 2026-08-18 22: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>
31 lines
931 B
Python
31 lines
931 B
Python
from pip._vendor.packaging.version import parse as parse_version
|
|
|
|
from pip._internal.models.link import Link
|
|
from pip._internal.utils.models import KeyBasedCompareMixin
|
|
|
|
|
|
class InstallationCandidate(KeyBasedCompareMixin):
|
|
"""Represents a potential "candidate" for installation."""
|
|
|
|
__slots__ = ["name", "version", "link"]
|
|
|
|
def __init__(self, name: str, version: str, link: Link) -> None:
|
|
self.name = name
|
|
self.version = parse_version(version)
|
|
self.link = link
|
|
|
|
super().__init__(
|
|
key=(self.name, self.version, self.link),
|
|
defining_class=InstallationCandidate,
|
|
)
|
|
|
|
def __repr__(self) -> str:
|
|
return "<InstallationCandidate({!r}, {!r}, {!r})>".format(
|
|
self.name,
|
|
self.version,
|
|
self.link,
|
|
)
|
|
|
|
def __str__(self) -> str:
|
|
return f"{self.name!r} candidate (version {self.version} at {self.link})"
|