Online ORF News Wrapper
pip install orf-news
news() takes one required and one optional argument
news([HEADLINE], [LIMIT])
HEADLINE = str
LIMIT = int
# 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())
# with 2 posts
["post1", "post2"]
# without n posts limitation
["post1", "post2", ....., "postn"]