├── .gitignore ├── README.md ├── images ├── enter_prompt.png └── multilink.png ├── requirements.txt └── src ├── __init__.py ├── scraper.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-ibex/screener-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-ibex/screener-scraper/HEAD/README.md -------------------------------------------------------------------------------- /images/enter_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-ibex/screener-scraper/HEAD/images/enter_prompt.png -------------------------------------------------------------------------------- /images/multilink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-ibex/screener-scraper/HEAD/images/multilink.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-ibex/screener-scraper/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-ibex/screener-scraper/HEAD/src/scraper.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binary-ibex/screener-scraper/HEAD/src/utils.py --------------------------------------------------------------------------------