Metadata-Version: 2.4
Name: p123api
Version: 3.0.0a3
Summary: Portfolio123 API wrapper
Author-email: Portfolio123 <info@portfolio123.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/portfolio-123/p123api-py
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: typing_extensions
Provides-Extra: pandas
Requires-Dist: pandas; extra == "pandas"
Dynamic: license-file

# Portfolio123 API Wrapper

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