Metadata-Version: 2.1
Name: AletheiaPy
Version: 0.0.2
Summary: AletheiaPy is a Python wrapper of Aletheia API, which provides access to financial data.
Home-page: https://github.com/lliang17/AletheiaPy
Author: Lyndon Liang
Author-email: lyndon.y.liang@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# AletheiaPy

AletheiaPy is a Python wrapper of Aletheia API, which provides access to financial data.

## Installation

Run the following to install:

```python
pip install AletheiaPy
```

## Usage

Note that an API key is required to use the client.

```python
from AletheiaPy import Client

# Initialize Client
key = "333acb16de254844ab64783232d2ba66" # Example from Aletheia's website
Aletheia = Client(key)

# Get a stock summary for a security
Aletheia.StockData("FB")
```

