معرفی شرکت ها


aioinflux-0.9.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Asynchronous Python client for InfluxDB
ویژگی مقدار
سیستم عامل -
نام فایل aioinflux-0.9.0
نام aioinflux
نسخه کتابخانه 0.9.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Gustavo Bezerra
ایمیل نویسنده gusutabopb@gmail.com
آدرس صفحه اصلی https://github.com/gusutabopb/aioinflux
آدرس اینترنتی https://pypi.org/project/aioinflux/
مجوز -
aioinflux ========= .. image:: https://img.shields.io/circleci/project/github/gusutabopb/aioinflux/master.svg :target: https://circleci.com/gh/gusutabopb/aioinflux :alt: CI status .. image:: https://img.shields.io/codecov/c/github/gusutabopb/aioinflux.svg :target: https://codecov.io/gh/gusutabopb/aioinflux :alt: Coverage .. image:: https://img.shields.io/pypi/v/aioinflux.svg :target: https://pypi.python.org/pypi/aioinflux :alt: PyPI package .. image:: https://img.shields.io/pypi/pyversions/aioinflux.svg :target: https://pypi.python.org/pypi/aioinflux :alt: Supported Python versions .. image:: https://readthedocs.org/projects/aioinflux/badge/?version=stable :target: https://aioinflux.readthedocs.io/en/stable/?badge=stable :alt: Documentation status Asynchronous Python client for `InfluxDB`_. Built on top of `aiohttp`_ and `asyncio`_. Aioinflux is an alternative to the official InfluxDB Python client. Aioinflux supports interacting with InfluxDB in a non-blocking way by using `aiohttp`_. It also supports writing and querying of `Pandas`_ dataframes, among other handy functionality. .. _Pandas: http://pandas.pydata.org/ .. _InfluxDB: http://influxdata.com/ .. _asyncio: https://docs.python.org/3/library/asyncio.html .. _aiohttp: https://github.com/aio-libs/aiohttp Please refer to the `documentation`_ for more details. Installation ------------ Python 3.6+ is required. You also need to have access to a running instance of InfluxDB. .. code:: bash pip install aioinflux Quick start ----------- This sums most of what you can do with ``aioinflux``: .. code:: python import asyncio from aioinflux import InfluxDBClient point = { 'time': '2009-11-10T23:00:00Z', 'measurement': 'cpu_load_short', 'tags': {'host': 'server01', 'region': 'us-west'}, 'fields': {'value': 0.64} } async def main(): async with InfluxDBClient(db='testdb') as client: await client.create_database(db='testdb') await client.write(point) resp = await client.query('SELECT value FROM cpu_load_short') print(resp) asyncio.get_event_loop().run_until_complete(main()) See the `documentation`_ for more detailed usage. .. _documentation: http://aioinflux.readthedocs.io/en/stable/


نیازمندی

مقدار نام
>=3.0 aiohttp
- ciso8601
>=1.2.0 aioredis
>=2.1.0 lz4
- docutils
- sphinx
- sphinx-rtd-theme
- sphinx-autodoc-typehints
>=0.21 pandas
- numpy
- pytest
- pytest-asyncio
- pytest-cov
- pyyaml
- pytz
- flake8
- pep8-naming
- flake8-rst-docstrings
- pygments
- dataclasses


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl aioinflux-0.9.0:

    pip install aioinflux-0.9.0.whl


نصب پکیج tar.gz aioinflux-0.9.0:

    pip install aioinflux-0.9.0.tar.gz