Metadata-Version: 2.1
Name: koo-api
Version: 0.0.1
Summary: API client wrapper for Koo micro-blogging platform
License: MIT
Author: loudercake
Author-email: jxzk@protonmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: flake8 (>=5.0.4,<6.0.0)
Requires-Dist: pydantic (>=1.10.2,<2.0.0)
Requires-Dist: requests (>=2.28.1,<3.0.0)
Description-Content-Type: text/markdown

> Work in progress!

# Koo API

This is a basic api wrapper for [Koo](https://www.kooapp.com/).

# Use
## Install
```bash
pip install koo-api
```

## Usage

```python
from koo_api import KooAccount, KooAccountNotFoundException

user = KooAccount("felipeneto")
for post in user.get_koos():
    print(post.content)
```


# Development


This is the standard workflow:

1. Clone this repo.
Before anything:

```bash
pip install poetry
poetry install
```

2. Create a new branch, add your changes and tests.
```bash
git checkout my-new-feature
```

3. Run linting check and tests with: `poetry run tests`
4. If it is all ok format it with: `poetry run format`
4. Commit and open a pull request and request a review from one of the autors.


# TODO

- [] ??
- [] ??
- [] ??
- [] ??

