Metadata-Version: 2.1
Name: videojungle
Version: 0.1.1
Summary: A Python client for the Video Jungle API
Project-URL: repository, https://github.com/burningion/video-jungle-python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests

# Video Jungle API Client

This is a Python client for the Video Jungle API. It provides a simple interface to interact with the Video Jungle API.

## Installation

You can install the Video Jungle API client using pip:

```
pip install videojungle
```

## Usage

Here's a simple example of how to use the Video Jungle API client:

```python
from videojungle import ApiClient

client = ApiClient("your_api_token_here")

# Get a project
project = client.projects.get("2ec097cd-1fff-4824-a7bf-a0e14281f4e5")
print(project)
```

## License

This project is licensed under the MIT License.
