├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── requirements.txt ├── run.py └── searchscrapeserver ├── __init__.py ├── schemas └── schemas.py ├── server └── server.py └── tests ├── html_samples ├── bing.html ├── google.html └── yandex.html ├── testing_parsing.py └── testing_scraping.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdmundMartin/SearchScraperAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdmundMartin/SearchScraperAPI/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdmundMartin/SearchScraperAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdmundMartin/SearchScraperAPI/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdmundMartin/SearchScraperAPI/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdmundMartin/SearchScraperAPI/HEAD/run.py -------------------------------------------------------------------------------- /searchscrapeserver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdmundMartin/SearchScraperAPI/HEAD/searchscrapeserver/__init__.py -------------------------------------------------------------------------------- /searchscrapeserver/schemas/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdmundMartin/SearchScraperAPI/HEAD/searchscrapeserver/schemas/schemas.py -------------------------------------------------------------------------------- /searchscrapeserver/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdmundMartin/SearchScraperAPI/HEAD/searchscrapeserver/server/server.py -------------------------------------------------------------------------------- /searchscrapeserver/tests/html_samples/bing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdmundMartin/SearchScraperAPI/HEAD/searchscrapeserver/tests/html_samples/bing.html -------------------------------------------------------------------------------- /searchscrapeserver/tests/html_samples/google.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdmundMartin/SearchScraperAPI/HEAD/searchscrapeserver/tests/html_samples/google.html -------------------------------------------------------------------------------- /searchscrapeserver/tests/html_samples/yandex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdmundMartin/SearchScraperAPI/HEAD/searchscrapeserver/tests/html_samples/yandex.html -------------------------------------------------------------------------------- /searchscrapeserver/tests/testing_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdmundMartin/SearchScraperAPI/HEAD/searchscrapeserver/tests/testing_parsing.py -------------------------------------------------------------------------------- /searchscrapeserver/tests/testing_scraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdmundMartin/SearchScraperAPI/HEAD/searchscrapeserver/tests/testing_scraping.py --------------------------------------------------------------------------------