معرفی شرکت ها


dnif-1.0.2


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

DNIF Logging Client Library
ویژگی مقدار
سیستم عامل -
نام فایل dnif-1.0.2
نام dnif
نسخه کتابخانه 1.0.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Bhumil Haria
ایمیل نویسنده bhumilharia@gmail.com
آدرس صفحه اصلی https://github.com/dnif/dnif-logger
آدرس اینترنتی https://pypi.org/project/dnif/
مجوز Apache
dnif-logger =========== This is the official Python DNIF client library. This allows you to directly write log statements into your application code and integrate it with DNIF Adapters. Installation ------------ You can download the library using pip, as: .. code:: sh $ pip install dnif Getting Started --------------- The DNIF library currently supports two ingestion mechanisms: 1. TCP protocol uploads using the HTTP(S) endpoint 2. Uploads using the UDP protocol Typical usages for both of these are given below. TCP ~~~ .. code:: python from dnif.consumer import AsyncHttpConsumer from dnif.logger import DnifLogger dlog = DnifLogger(AsyncHttpConsumer('http://TARGET_IP:PORT/json/receive')) dlog.log({'key': 'value'}) The AsyncHttpConsumer is thread-safe, so you can use the same instance across threads (recommended). UDP ~~~ .. code:: python from dnif.consumer import AsyncUDPConsumer from dnif.logger import DnifLogger dlog = DnifLogger(AsyncUDPConsumer('UDP_IP', UDP_PORT)) dlog.log('Hello World') The AsyncUDPConsumer is thread-safe, so you can use the same instance across threads (recommended).


نحوه نصب


نصب پکیج whl dnif-1.0.2:

    pip install dnif-1.0.2.whl


نصب پکیج tar.gz dnif-1.0.2:

    pip install dnif-1.0.2.tar.gz