40 lines
648 B
Markdown
40 lines
648 B
Markdown
# Exchange Data Manager
|
|
|
|
Efficiently retrieve and manage financial candlestick data with caching, REST API, and WebSocket support.
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
pip install -e .
|
|
```
|
|
|
|
## Usage
|
|
|
|
*TODO: Add usage instructions*
|
|
|
|
## Documentation
|
|
|
|
Full documentation is available at: https://pages.brrd.tech/rob/exchange-data-manager/
|
|
|
|
## Development
|
|
|
|
```bash
|
|
# Clone the repository
|
|
git clone https://gitea.brrd.tech/rob/exchange-data-manager.git
|
|
cd exchange-data-manager
|
|
|
|
# Create virtual environment
|
|
python -m venv .venv
|
|
source .venv/bin/activate
|
|
|
|
# Install for development
|
|
pip install -e ".[dev]"
|
|
|
|
# Run tests
|
|
pytest
|
|
```
|
|
|
|
## License
|
|
|
|
*TODO: Add license*
|