Skip to main content

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

Python 3.9-3.11 License: MIT Code style: black GitHub stars GitHub last commit


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


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.1a0.tar.gz (8.2 kB view hashes)

Uploaded Source

Built Distribution

newsdash-0.1.1a0-py3-none-any.whl (8.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page