Metadata-Version: 2.1
Name: hundred-x
Version: 0.1.10
Summary: # hundred_x
Author: 8baller
Author-email: 8ball030@gmail.com
Requires-Python: >=3.9,<=3.12
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: eip712-structs (>=1.1.0,<2.0.0)
Requires-Dist: eth-account (<=0.11.0)
Requires-Dist: requests (>=2.31.0,<3.0.0)
Requires-Dist: safe-pysha3 (>=1.0.4,<2.0.0)
Requires-Dist: web3 (>=5,<6)
Requires-Dist: websockets (>=9)
Description-Content-Type: text/markdown

# 100x Python Client

This is a Python client for the 100x API. It is a simple wrapper around the API, and provides a convenient way to interact with the API from Python.

## Installation
```bash
pip install hundred-x
``

## Running a dockerised environment
```bash
docker buildx build --platform linux/amd64 . -t test
# now we have the dependencies installed,
# we can mount the current directory and run the tests against the dockerised environment
docker run -v (pwd):/app -it test
```
