Metadata-Version: 2.1
Name: nyaasi-rss
Version: 0.1.0
Summary: Add your description here
Home-page: https://github.com/praveensenpai/nyaasi_rss
Author: Praveen
Author-email: pvnt20@gmail.com
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.27.2

# NyaaSI RSS Package

This package provides a simple interface to fetch and parse RSS feeds from [nyaa.si](https://nyaa.si/).

## Installation

You can install the package using pip:

```bash
pip install nyaasi_rss
```

## Usage

Here’s how you can use the package:

```bash
from nyaasi_rss import RSSFetcher

fetcher = RSSFetcher("https://nyaa.si/?page=rss")
rss_channel = fetcher.fetch_and_parse()

for item in rss_channel.items:
    print(f"{item.title} - Seeders: {item.seeders}")
```
