Metadata-Version: 2.1
Name: kooPy
Version: 0.4
Summary: KooPy: Koo for Python!
Home-page: https://github.com/nick2580/KooPy
Author: Nikhil
Author-email: nikhil.bhamere@gmail.com
License: MIT
Download-URL: https://github.com/nick2580/KooPy/archive/refs/tags/0.4.tar.gz
Keywords: kooapp,koo,koopy
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# KooPy: Koo for Python!

KooPy is a Python library for [KooApp](https://www.kooapp.com/feed).

This is a very basic version with only the most basic functions.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install KooPy.

```bash
pip install kooPy
pip install kooPy --upgrade
```

## Usage

```python
from kooPy import Koo

# Initialize
ku = Koo()

# Get User Profile
profile = ku.getUserProfile('virat.kohli', format='dict', method='filter')

# Get User Koos
user_koos = ku.getUserKoos('virat.kohli', format='dict', method='filter', limit=10)

# Get Trending Koos
trending = ku.getTrendingKoos(format='dict', method='filter', limit=5)
```

## Contributing

Pull requests are welcome. For major changes, you can also open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License

[MIT](https://choosealicense.com/licenses/mit/)


