Metadata-Version: 2.1
Name: jeugdjournaal
Version: 0.1.7
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 (Dutch Youth News) Python Library

A simple Python library for fetching and interacting with articles, polls, comments, and reactions from Jeugdjournaal, made by hcr5.

## Installation

You can install the library via pip:

```bash
pip install jeugdjournaal
```

## Example Usage

Here’s a quick example to get started:

```python
import jeugdjournaal

# Read an article
article = jeugdjournaal.read_item(1234567)
print(article.title)
print(article.content)

# Get poll IDs from the article
poll_ids = jeugdjournaal.get_poll_ids(1234567)
print(poll_ids.id_1)
print(poll_ids.id_2)

# Vote in a poll
jeugdjournaal.vote_in_poll(poll_ids.id_1["id"])
```

For more functions and detailed usage, refer to the [full documentation](https://github.com/hcr5/jeugdjournaal-python/blob/main/docs.md).
