Metadata-Version: 2.1
Name: KickApi
Version: 0.2.0
Summary: A Python package for interacting with the Kick API to retrieve channel and video data.
Home-page: https://github.com/yourusername/kickapi
Author: Enmn
License: MIT
Keywords: kick,api,kickapi
Description-Content-Type: text/markdown
Requires-Dist: requests

# Kick API for Python
The `KickApi` package provides a Python client for interacting with the Kick API, allowing you to retrieve channel and video data.

## Installation
Install the package using pip:
```bash
pip install KickApi
```
## Usage
You can use the package for many things, and these are examples of them
### Fetch Channel Data
```python
from kickapi import KickAPI

# Create an instance of KickAPI
kick_api = KickAPI()

# Fetch channel data by username
channel = kick_api.channel("username")

# Access channel attributes
print("Channel ID:", channel.id)
print("Username:", channel.username)
print("Bio:", channel.bio)
print("Avatar URL:", channel.avatar)
print("Followers:", channel.followers)
print("Playback URL:", channel.playback)
```

### Fetch Video Data
```python
from kickapi import KickAPI

# Create an instance of KickAPI
kick_api = KickAPI()

# Fetch video data by video ID
video = kick_api.video("video_id")

# Access video attributes
print("Video ID:", video.id)
print("Title:", video.title)
print("Thumbnail URL:", video.thumbnail)
print("Duration:", video.duration)
print("Live Stream ID:", video.live_stream_id)
print("Created At:", video.createdAt)
print("Updated At:", video.updatedAt)
print("UUID:", video.uuid)
print("Views:", video.views)
print("Language:", video.language)
print("Stream Video URL:", video.strem_video)

# Access channel data associated with the video
print("Channel ID:", video.channel.id)
print("Channel Username:", video.channel.username)
```

## Features
**Channel Data Retrieval** Fetch detailed information about a Kick channel by providing the username.</br>
**Video Data Retrieval** Retrieve information about a Kick video using its video ID.

## Contributing
We welcome contributions from the community! If you'd like to contribute to the development of KickApi, please follow these guidelines:
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Make your changes and ensure the code passes all tests.
- Submit a pull request with a clear description of your changes.

## License
This project is licensed under the MIT License - see the LICENSE file for details.
Make sure to include a `LICENSE` file in your project's root directory and specify the licensing details in that file. The provided link in the "License" section should point to the actual `LICENSE` file in your project.
