Metadata-Version: 2.1
Name: pyqqq
Version: 0.12.211
Summary: Package for quantitative strategy development on the PyQQQ platform
License: MIT
Author: PyQQQ team
Author-email: pyqqq.cs@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: cachetools (>=5.3.3,<6.0.0)
Requires-Dist: cssutils (>=2.10.2,<3.0.0)
Requires-Dist: diskcache (>=5.6.3,<6.0.0)
Requires-Dist: pandas (>=2.0.3,<3.0.0)
Requires-Dist: pandas-market-calendars (>=4.4.2,<5.0.0)
Requires-Dist: pika (>=1.3.2,<2.0.0)
Requires-Dist: pycryptodome (>=3.20.0,<4.0.0)
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
Requires-Dist: requests (>=2.31.0,<3.0.0)
Requires-Dist: tinydb (>=4.8.0,<5.0.0)
Requires-Dist: websockets (>=12.0,<13.0)
Project-URL: Documentation, https://docs.pyqqq.net
Description-Content-Type: text/markdown

# PyQQQ SDK

## How to Use the Package

You can install it by running the following command:

```
pip install pyqqq
```



## Setting Up the Development Environment

0. Create a Virtual Environment (Optional)

You can create and use a virtual environment with the following steps:

```
pyqqq-user:$ cd sdk
pyqqq-user:sdk:$ python -m venv .venv --prompt sdk
pyqqq-user:sdk:$ activate .venv/bin/activate
(sdk) pyqqq-user:sdk:$
```


1. Install Poetry

```
(sdk) pyqqq-user:sdk:$ pip install poetry
```


2. Install Dependencies

```
(sdk) pyqqq-user:sdk:$ poetry install
```


