e122f6435a
Add spruce scraper with CLI, session management, parsers, progress tracking, recheck logic, and test suite. Includes example config and README.
6 lines
123 B
Python
6 lines
123 B
Python
"""Entry point — delegates entirely to spruce.cli."""
|
|
from spruce.cli import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|