Skip to main content

Get stock info from Yahoo! Finance

Project description

Stock AI

Python module to get stock data from Yahoo! Finance

This is an ongoing project. If you have any requests or contributions, please create a ticket

Install

From PyPI with pip

pip install stockai

Usage examples

from stockai import Stock
td = Stock('TD.TO')

print(td.get_summary_profile())
print(td.get_price())
print(td.get_currency())

Get Historical Prices

### The date format should be yyyy-mm-dd
td.get_historical_prices('2019-01-01', '2019-01-05')

### The result is a dictionary with ['volumn', 'low', 'open', 'hight', 'close', 'date', 'adjclose']
{  
   'volume':[  
      3930300,
      5407700,
      5103400
   ],
   'low':[  
      67.12000274658203,
      67.12000274658203,
      67.66999816894531
   ],
   'open':[  
      67.51000213623047,
      68.11000061035156,
      68.0
   ],
   'high':[  
      68.43000030517578,
      68.11000061035156,
      68.1500015258789
   ],
   'close':[  
      68.25,
      67.30000305175781,
      67.9800033569336
   ],
   'date':[  
      '2019-01-02',
      '2019-01-03',
      '2019-01-04'
   ],
   'adjclose':[  
      67.57575225830078,
      66.63513946533203,
      67.30841827392578
   ]
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

stockai-0.0.3.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

stockai-0.0.3-py3-none-any.whl (16.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page