├── .gitignore ├── LICENSE ├── README.md ├── setup.cfg ├── setup.py └── yfm ├── YahooFetcher ├── .gitignore ├── ComponentsExtractor.py ├── LICENSE ├── QueryBuilder.py ├── README.md ├── YahooFetcher.py ├── __init__.py ├── exchanges ├── globalIndexes ├── sampleMSFT.py └── test.py ├── __init__.py ├── dowjones ├── yfMongo.py ├── yfmTest.py └── yfmcli.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/README.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/setup.py -------------------------------------------------------------------------------- /yfm/YahooFetcher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/yfm/YahooFetcher/.gitignore -------------------------------------------------------------------------------- /yfm/YahooFetcher/ComponentsExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/yfm/YahooFetcher/ComponentsExtractor.py -------------------------------------------------------------------------------- /yfm/YahooFetcher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/yfm/YahooFetcher/LICENSE -------------------------------------------------------------------------------- /yfm/YahooFetcher/QueryBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/yfm/YahooFetcher/QueryBuilder.py -------------------------------------------------------------------------------- /yfm/YahooFetcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/yfm/YahooFetcher/README.md -------------------------------------------------------------------------------- /yfm/YahooFetcher/YahooFetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/yfm/YahooFetcher/YahooFetcher.py -------------------------------------------------------------------------------- /yfm/YahooFetcher/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ["YahooFetcher", "QueryBuilder"] 2 | from . import * 3 | -------------------------------------------------------------------------------- /yfm/YahooFetcher/exchanges: -------------------------------------------------------------------------------- 1 | NASDAQ 2 | NYSE 3 | MSE 4 | -------------------------------------------------------------------------------- /yfm/YahooFetcher/globalIndexes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/yfm/YahooFetcher/globalIndexes -------------------------------------------------------------------------------- /yfm/YahooFetcher/sampleMSFT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/yfm/YahooFetcher/sampleMSFT.py -------------------------------------------------------------------------------- /yfm/YahooFetcher/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/yfm/YahooFetcher/test.py -------------------------------------------------------------------------------- /yfm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/yfm/__init__.py -------------------------------------------------------------------------------- /yfm/dowjones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/yfm/dowjones -------------------------------------------------------------------------------- /yfm/yfMongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/yfm/yfMongo.py -------------------------------------------------------------------------------- /yfm/yfmTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/yfm/yfmTest.py -------------------------------------------------------------------------------- /yfm/yfmcli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubenafo/yfMongo/HEAD/yfm/yfmcli.py --------------------------------------------------------------------------------