├── .github └── workflows │ └── main.yaml ├── .gitignore ├── LICENSE ├── README.md ├── README_template.md ├── flake.lock ├── flake.nix ├── main.py ├── request_success_time.json ├── requirements.txt ├── speeds.json ├── speedtest.py ├── url_models.json └── urls.json /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuddinCat/OllamaSpider/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuddinCat/OllamaSpider/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuddinCat/OllamaSpider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuddinCat/OllamaSpider/HEAD/README.md -------------------------------------------------------------------------------- /README_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuddinCat/OllamaSpider/HEAD/README_template.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuddinCat/OllamaSpider/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuddinCat/OllamaSpider/HEAD/flake.nix -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuddinCat/OllamaSpider/HEAD/main.py -------------------------------------------------------------------------------- /request_success_time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuddinCat/OllamaSpider/HEAD/request_success_time.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | httpx 2 | tqdm -------------------------------------------------------------------------------- /speeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuddinCat/OllamaSpider/HEAD/speeds.json -------------------------------------------------------------------------------- /speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuddinCat/OllamaSpider/HEAD/speedtest.py -------------------------------------------------------------------------------- /url_models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuddinCat/OllamaSpider/HEAD/url_models.json -------------------------------------------------------------------------------- /urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PuddinCat/OllamaSpider/HEAD/urls.json --------------------------------------------------------------------------------