Metadata-Version: 2.1
Name: jeugdjournaal
Version: 0.1.6
Summary: Python library to interact with the jeugdjournaal API
Home-page: https://github.com/hcr5/jeugdjournaalpy
Author: hcr5
Author-email: hcr5.hcr@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: beautifulsoup4
Requires-Dist: requests

# Jeugdjournaal

## Overview
The `jeugdjournaal` library simplifies interaction with the Jeugdjournaal website and API. It provides functionalities to retrieve article details, participate in polls, read/post comments, and explore articles.

## Installation
You can install `jeugdjournaal` via pip:

```
pip install jeugdjournaal
```

## Example Usage
```python
import jeugdjournaal as jj

# Example: Retrieve article details
article_id = 'item_id'
article_details = jj.read_item(article_id)
print(article_details['title'])
print(article_details['content'])

# Example: Vote in a poll
poll_id = 'poll_id'
vote_response = jj.vote_in_poll(poll_id)
print(vote_response)

# Example: Retrieve comments
comments = jj.get_comments(article_id, limit=10)
print(comments)
```

## Documentation
For more details, refer to the [documentation](https://github.com/hcr5/SomPy/blob/main/docs.md)
