معرفی شرکت ها


asyncnewsapi-0.2.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

AsyncIO Python wrapper to News API
ویژگی مقدار
سیستم عامل -
نام فایل asyncnewsapi-0.2.1
نام asyncnewsapi
نسخه کتابخانه 0.2.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Paulo Kauscher Pinto
ایمیل نویسنده paulo.kauscher.pinto@icloud.com
آدرس صفحه اصلی https://github.com/pkpinto/asyncnewsapi
آدرس اینترنتی https://pypi.org/project/asyncnewsapi/
مجوز Apache License 2.0
# asyncnewsapi [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Build Status](https://travis-ci.org/pkpinto/asyncnewsapi.svg?branch=master)](https://travis-ci.org/pkpinto/asyncnewsapi) [![PyPI version](https://badge.fury.io/py/asyncnewsapi.svg)](https://badge.fury.io/py/asyncnewsapi) [![Code Coverage](https://codecov.io/gh/pkpinto/asyncnewsapi/branch/master/graph/badge.svg)](https://codecov.io/gh/pkpinto/asyncnewsapi) [![Join the chat at https://gitter.im/pkpintoHUB/asyncnewsapi](https://badges.gitter.im/pkpintoHUB/asyncnewsapi.svg)](https://gitter.im/pkpintoHUB/asyncnewsapi?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) An asyncio Python library to perform request against [News API](https://newsapi.org). It provides direct access to the endpoints defined in the [documentation](https://newsapi.org/docs/endpoints). Two classes are implemented, returning async iterators for the request results. Session will return an iterator through the results of a single request. Alternatively, Stream will return an infinite iterator, performing successive requests and continuing to iterate through the results. A minimal implementation can be as simple as: ``` import asyncio from asyncnewsapi import Session async def main(): async with Session() as api: async for article in api.top_headlines(language='en'): print(article['title']) if __name__ == '__main__': asyncio.run(main()) ``` The API key should be provided as an environment variable named NEWSAPI_KEY: ``` export NEWSAPI_KEY="..." ``` Go to the NewsAPI [website](https://newsapi.org) to create a free API key. This library is loosely based on / inspired by [newsapi-python](https://github.com/mattlisiv/newsapi-python), a requests based library by Matt Lisivick. ## Installation Use pip to install this package, either directly from pypi: ``` pip install asyncnewsapi ``` or after cloning from github: ``` pip install . ``` ## Tests Unit tests have been implemented using pytest. To run them, additional dependencies need be installed: ``` pip install ".[test]" ``` The tests can then be run using: ``` python -m pytest -v tests/ ``` from the root of the repo (running it explicitly on the tests/ directory avoids interference with the venv folders).


نیازمندی

مقدار نام
<4,>=3.5 aiohttp
- async-timeout
- yarl
<5.3 pytest
- pytest-cov
<4,>=3.5 aiohttp
- async-timeout
- yarl


نحوه نصب


نصب پکیج whl asyncnewsapi-0.2.1:

    pip install asyncnewsapi-0.2.1.whl


نصب پکیج tar.gz asyncnewsapi-0.2.1:

    pip install asyncnewsapi-0.2.1.tar.gz