Metadata-Version: 2.1
Name: Alpha_Vantage_API_Data
Version: 1.0
Summary: This is an Aplha_Vantage_API data retrieving package
Home-page: https://github.com/codemakerss/Alpha_Vantage_API_Project
Author: Jeff Duan
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/codemakerss/Alpha_Vantage_API_Project/issues
Platform: UNKNOWN
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Alpha-Vantage-API-Data - Financial Data Retrieving

Alpha-Vantage-API-Data is a package for collecting stocks price and 
their related information.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install Alpha-Vantage-API-Data.

```bash
pip install Alpha-Vantage-API-Data
```

## Example

```python
from Alpha-Vantage-API-Data import API_Data_Retrieves

# returns stock daily result 
StockTimeSeries = API_Data_Retrieves.StockTimeSeries(apikey)
daily_data = StockTimeSeries.GetDailyStockPrice("IBM")
print(daily_data)

# returns company information
FundamentalData = API_Data_Retrieves.FundamentalData(apikey)
stock_company_info = FundamentalData.CompanyInfo("AAPL")
print(stock_company_info)
```

Go to [Alpha_Vantage_API_Project Issues Page](https://github.com/codemakerss/Alpha_Vantage_API_Project/issues) to report any issues.

## License
[MIT](https://choosealicense.com/licenses/mit/)

