معرفی شرکت ها


binario-0.0.4


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Package that lets an application read/write primitive data types from an underlying input/output stream as binary data.
ویژگی مقدار
سیستم عامل -
نام فایل binario-0.0.4
نام binario
نسخه کتابخانه 0.0.4
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Alex Saskevich
ایمیل نویسنده bwatas@gmail.com
آدرس صفحه اصلی http://github.com/asaskevich/binario
آدرس اینترنتی https://pypi.org/project/binario/
مجوز MIT
binario ======= Simple work with binary data. What is the binario? -------------------- **binario** is the Python package that lets an application read/write primitive data types from an underlying input/output stream as binary data. And which primitive data types it can process? ---------------------------------------------- It can work with booleans, integers, shorts, long integers, floats, doubles, strings and any byte buffers. How to write data? ------------------ It's simple. Just create instance of `Writer` and then do your work: >>> import binario >>> w = binario.Writer("file.dat") >>> w.write_short(2014) >>> w.write_bool(True) >>> w.write_float(3.1415) >>> w.write_string("Hello, world!") >>> w.write(bytes([128, 20, 10, 255, 0])) And how to read data? --------------------- It's simple too. Like outputting, create `Reader` and then do your work: >>> import binario >>> r = binario.Reader("file.dat") >>> r.read_short() 2014 >>> r.read_bool() True >>> r.read_float() 3.1415 >>> r.read_string() "Hello, world!" >>> r.read(5) b'\x80\x14\n\xff\x00' Which byte order specified by default? -------------------------------------- By default it is `network` order (or `big-endian`). Okay, it is good, but if I want to change byte order for `Reader` or `Writer`? ------------------------------------------------------------------------------ Not a problem! Just specify it: >>> import binario >>> r = binario.Reader("file.dat", binario.LITTLE_ENDIAN) >>> w = binario.Writer("another_file.dat", binario.BIG_ENDIAN) What about append new data to existing file? -------------------------------------------- Yeah, it is also very simple: >>> import binario >>> w = binario.Writer("incomplete_file.dat", append=True) How to install this package? ---------------------------- Just type in your terminal >>> pip install binario Where to find documentation? ---------------------------- Look here: http://binarios-docs.readthedocs.org/en/latest/ Contribution ------------ If you do have a contribution for the package feel free to put up a Pull Request or open Issue on GitHub repo: http://github.com/asaskevich/binario.


نحوه نصب


نصب پکیج whl binario-0.0.4:

    pip install binario-0.0.4.whl


نصب پکیج tar.gz binario-0.0.4:

    pip install binario-0.0.4.tar.gz