Metadata-Version: 2.1
Name: bitstory
Version: 0.1.4
Summary: A package for programmatic access to bitstory API
Home-page: https://github.com/bitstory-ai/bitstory-api
Author: Gunnar Pope
Author-email: gunnar@bitstory.ai
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# Bitstory

**Bitstory** is a Python package that provides programmatic access to the Bitstory API.

## Installation

To install the latest version of Bitstory, use `pip`:

1. Create a virtual environment 
```bash
python3 -m venv .venv
```

2. Activate the virtual environment
```bash
source .venv/bin/activate
```

3. Create a new file __myfile.py__ with the following code
```Python
# myfile.py
import bitstory as bts
print(bts.__version__)
```

4. Run the python file to verify the installation.
```bash
(.venv) $ python myfile.py 
Bitstory Version: 0.1.3
```
