├── .gitignore ├── LICENSE ├── README.md ├── icon.ico ├── main.py └── src ├── Processor ├── Crawler.py ├── Handler.py └── __init__.py ├── Tools ├── Config.py ├── Logger.py ├── Tools.py └── __init__.py ├── UI ├── Interface.py └── __init__.py └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Science_Reading_Book_Downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Science_Reading_Book_Downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Science_Reading_Book_Downloader/HEAD/README.md -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Science_Reading_Book_Downloader/HEAD/icon.ico -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Science_Reading_Book_Downloader/HEAD/main.py -------------------------------------------------------------------------------- /src/Processor/Crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Science_Reading_Book_Downloader/HEAD/src/Processor/Crawler.py -------------------------------------------------------------------------------- /src/Processor/Handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Science_Reading_Book_Downloader/HEAD/src/Processor/Handler.py -------------------------------------------------------------------------------- /src/Processor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Science_Reading_Book_Downloader/HEAD/src/Processor/__init__.py -------------------------------------------------------------------------------- /src/Tools/Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Science_Reading_Book_Downloader/HEAD/src/Tools/Config.py -------------------------------------------------------------------------------- /src/Tools/Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Science_Reading_Book_Downloader/HEAD/src/Tools/Logger.py -------------------------------------------------------------------------------- /src/Tools/Tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Science_Reading_Book_Downloader/HEAD/src/Tools/Tools.py -------------------------------------------------------------------------------- /src/Tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Science_Reading_Book_Downloader/HEAD/src/Tools/__init__.py -------------------------------------------------------------------------------- /src/UI/Interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Science_Reading_Book_Downloader/HEAD/src/UI/Interface.py -------------------------------------------------------------------------------- /src/UI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Science_Reading_Book_Downloader/HEAD/src/UI/__init__.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeerChen/Science_Reading_Book_Downloader/HEAD/src/__init__.py --------------------------------------------------------------------------------