Metadata-Version: 2.1
Name: aiotradier
Version: 0.0.2
Summary: Python library to access Tradier´s API using Async IO
Author-email: Erick Cantú Paz <cantupaz@gmail.com>
License: Apache-2.0
Project-URL: Homepage, https://github.com/cantupaz/aiotradier
Project-URL: Issues, https://github.com/cantupaz/aiotradier/issues
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: aiohttp

Python library to access Tradier´s API using Async IO

Tradier's documentation is at: https://documentation.tradier.com/brokerage-api

This is intended to be a very lightweight library to wrap Tradier's API. It implements functions to access most of
the endpoints for Accounts and Market Data. It does not include yet functions to access Authentication, Orders, or Watchlists.
(Instead of authenticating with the API, you can obtain a token by logging into your account.) I may add functionality if I endup needing it myself.

## Requirements

- Python >= 3.11

## Install

```bash
pip install aioatradier
```

## Install from Source

Run the following command inside this folder

```bash
pip install --upgrade .
```

## Examples

Examples can be found in the `examples` folder
