topvenues-explorer / src /__init__.py
sidneibarbieri's picture
Upload 46 files
fafbad3 verified
Raw
History Blame Contribute Delete
665 Bytes
"""Top Venues Paper Collector - Python version.
A modern, async paper collection system with web interface.
"""
__version__ = "2.0.0"
from .collector import Collector
from .models import (
AbstractLogEntry,
AbstractStatus,
CacheEntry,
CheckpointData,
Configuration,
DownloadLogEntry,
DownloadStatus,
EventType,
Paper,
PaperType,
SearchFilters,
)
__all__ = [
"Collector",
"Configuration",
"Paper",
"SearchFilters",
"EventType",
"PaperType",
"DownloadStatus",
"AbstractStatus",
"DownloadLogEntry",
"AbstractLogEntry",
"CacheEntry",
"CheckpointData",
"__version__",
]