├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── main.py ├── src ├── Crawler.py ├── __init__.py └── tools.py └── textbooks.jsonc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Textbook-Crawler/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.analysis.typeCheckingMode": "basic" 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Textbook-Crawler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Textbook-Crawler/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Textbook-Crawler/HEAD/main.py -------------------------------------------------------------------------------- /src/Crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Textbook-Crawler/HEAD/src/Crawler.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | __all__: list[str] = ['Crawler', 'tools'] 2 | -------------------------------------------------------------------------------- /src/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Textbook-Crawler/HEAD/src/tools.py -------------------------------------------------------------------------------- /textbooks.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Textbook-Crawler/HEAD/textbooks.jsonc --------------------------------------------------------------------------------