NewsDash is a fast and reliable Python wrapper for the News API that simplifies accessing the latest news articles from around the world.
Project description
NewsDash
NewsDash is a fast and reliable Python wrapper for the News API that simplifies accessing the latest news articles from around the world. 📰
Made by: NaviTheCoderboi
!!! note "Note" This is a WIP library, please report bugs if you find one
Features
- Fast performance: This API wrapper is designed to be fast and efficient, allowing users to retrieve news articles quickly and easily.
- Reliable functionality: The wrapper uses best practices to ensure reliable functionality and accuracy in retrieving news articles from the API.
- Easy-to-use interface: The API wrapper has an intuitive interface that makes it easy for developers to interact with the API and retrieve news articles without having to worry about the details of the underlying protocol.
- Built with aiohttp: The wrapper is built using the popular aiohttp library, which provides high-performance asynchronous HTTP client/server for asyncio and Python. This means the wrapper takes advantage of the latest and greatest in async programming techniques to provide fast and efficient performance.
- Customizable functionality: The wrapper has a range of customization options, allowing developers to tailor their use of the API to their specific needs.
- Flexible data handling: The wrapper is designed to handle a wide variety of data formats, allowing developers to work with the data in the way that best suits their needs.
- Well-documented: The wrapper has clear and comprehensive documentation, making it easy for developers to get up and running quickly and troubleshoot any issues that may arise.
Installation
python -m pip install newsdash
Examples
- with client
from newsdash import NewsDash
import asyncio
cl = NewsDash("your_api_key")
async def get_news():
print(await cl.get_everything(query="tech",pageSize=5))
print(await cl.get_top_headlines(query="Microsoft"))
print(await cl.get_sources(country="in",language="en"))
asyncio.run(get_news())
- with async context manager
from newsdash import NewsDash
import asyncio
async def main():
async with NewsDash("api_key") as nd:
print(await nd.get_everything(query="apple"))
asyncio.run(main())
Important urls
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
newsdash-0.1.0a1.tar.gz
(8.0 kB
view hashes)
Built Distribution
Close
Hashes for newsdash-0.1.0a1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1b4ca4ef8a69c747eda5bca582f78ab95c5ce5ca966394951cc4115e2de1fa1 |
|
MD5 | 8398d0309a45e93754b925fef5686f54 |
|
BLAKE2b-256 | 5027ac741d18b970ba5c1e037bb566fa423744e804bdff061c1dda19ecbdc604 |