Metadata-Version: 2.1
Name: p123api
Version: 1.3.4
Summary: Portfolio123 API wrapper
Home-page: https://github.com/portfolio-123/p123api-py
Author: Portfolio123
Author-email: info@portfolio123.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Portfolio123 API Wrapper

Sample code:
```python
import p123api
try:
    client = p123api.Client(api_id='your api id', api_key='your api key')
    print(client.screen_run({'screen': {'type': 'stock', 'universe': 'nasdaq100'}, 'asOfDt': '2020-05-12'}))
except p123api.ClientException as e:
    print(e)
``` 

