stocksymbolscraper/README.md

27 lines
898 B
Markdown
Raw Permalink Normal View History

2021-11-07 15:56:36 +01:00
# Stock Symbol Scraper
2021-11-09 19:09:24 +01:00
Scrapes the entire list of stocks off of [MarketWatch.com](https://www.marketwatch.com/tools/markets/stocks/a-z/), which includes company name, stock symbol, country, exchange, and sector (if available).
**NOTE**: No prices or financials of any kind are collected.
2021-11-11 16:03:32 +01:00
Asynchronous HTTP requests are currently used by default.
2021-11-09 19:09:24 +01:00
This is not intended to be run continuously since the data gathered this way will rarely change.
### Dependencies
- [Python](https://www.python.org/) 3.7+
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
...