Go to file
Daniil Fajnberg 7dbfcf568b comments and minor refactoring 2021-11-15 16:06:58 +01:00
requirements basic async capabilities added 2021-11-11 16:03:32 +01:00
src/stocksymbolscraper main function now async 2021-11-13 20:39:54 +01:00
tests comments and minor refactoring 2021-11-15 16:06:58 +01:00
.coveragerc more tests; coverage script and settings 2021-11-13 21:56:42 +01:00
.gitignore more tests; coverage script and settings 2021-11-13 21:56:42 +01:00
LICENSE python packaging boilerplate 2021-11-07 15:56:36 +01:00
README.md basic async capabilities added 2021-11-11 16:03:32 +01:00
coverage.sh more tests; coverage script and settings 2021-11-13 21:56:42 +01:00
pyproject.toml python packaging boilerplate 2021-11-07 15:56:36 +01:00
setup.cfg more tests; coverage script and settings 2021-11-13 21:56:42 +01:00

README.md

Stock Symbol Scraper

Scrapes the entire list of stocks off of MarketWatch.com, which includes company name, stock symbol, country, exchange, and sector (if available).

NOTE: No prices or financials of any kind are collected.

Asynchronous HTTP requests are currently used by default.

This is not intended to be run continuously since the data gathered this way will rarely change.

Dependencies

Should run on most Linux/Windows systems. Tested on Arch and Windows 10.

Building

Clone this repo, install build via pip, then run pip -m build from the repository's root directory. This should produce a dist/ subdirectory with a wheel (build) and archive (source) distribution. The resulting whl-file can be installed via pip install path/dist/***.whl.

Running

...