Metadata-Version: 2.1
Name: orf-news
Version: 1.1.3
Summary: Online ORF News Wrapper
Home-page: https://github.com/mcbabo/orfnews
Author: Moritz Joksch
Author-email: moritz.joksch@gmail.com
License: MIT
Keywords: orf news austria api wrapper
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENCE

# ORF-News #

Online ORF News Wrapper

[My Discord](https://discordapp.com/users/731128007388823592/ "Moritzâšœ#6969")

## Instructions ##

### Install: ###

```py
pip install orf-news
```

### Information: ###

```py
news() takes one required and one optional argument
news([HEADLINE], [LIMIT])
HEADLINE = str
LIMIT = int
```

### Run Program: ###

```py
# import orfnews and asyncio
import asyncio
from orf_news import orfnews

# make def
async def bread():
    output = await orfnews.news("ausland", 2)
    print(output)

# run def
asyncio.run(bread())
```

### OUTPUT: ###
```py
# with 2 posts
["post1", "post2"]
# without n posts limitation
["post1", "post2", ....., "postn"]
```

## Ride the space skyway home to 80s Miami ##


