Easy way to use binary files with built in class and functions
Project description
Easy Binary File Package
Easy way to use binary files with built in class and functions.
Installation from PYPI
You can find last version of project in: https://pypi.org/project/easy-binary-file/
Command to install:
pip install easy-binary-file
Quick use
Simply import and use functions or class
Example of function to dump a single value:
from easy_binary_file import dump_single_value
dump_single_value("test_file_single.tmp", "test_value")
Example of function to load a single value:
from easy_binary_file import load_single_value
value = load_single_value("test_file_single.tmp")
print(value)
Example of instance of class to dump several values:
from easy_binary_file import EasyBinaryFile
with EasyBinaryFile("test_ebf_object.tmp") as ebf:
ebf.dump("First value")
ebf.dump("Second value")
Example of instance of class to read all items:
from easy_binary_file import EasyBinaryFile
with EasyBinaryFile("test_ebf_object.tmp", "rb") as ebf:
for item in ebf:
print(item)
Import
Import functions, class or all.
from easy_binary_file import *
Content
This is a review of class and functions content inside.
The difference between use functions vs class:
- Functions open and close file in each use (For use a lot, functions are slower than class)
- Instance of class maintain open the file until end of use (or call to
close
)
You have complete docstring documentation in code and more examples/tests in doctest format.
Functions:
dump_ensure_space
: Only dump value if space enough in disk.dump_single_value
: Open a file in the binary mode, dump a single value and close fileload_single_value
: Open a file in the binary mode, load a single value, return it and close filedump_items
: Serialize one iterable in a single fileload_items
: Deserialize item by item in one stream generatorquick_dump_items
: Quick open a file in ab or wb mode and dump items one by one from iterator, when generator is exhausted then close the file.quick_load_items
: Quick open a file in rb mode and load items in one generator, when generator is exhausted then close the file.
Class:
EasyBinaryFile
: Open (or create if not exist) a new binary file.close
: Close the binary file.dump
: Dump one single value in file.dump_ensure_space
: Dump one single value in file only if space enough in disk.load
: Load from file one single value.get_cursor_position
: Get last position of cursor in file.seek
: Seek file in position.get_by_cursor_position
: Get value by cursor position in file.dump_items
: Serialize one iterable in a file.load_items
: Deserialize item by item in one stream generator.__iter__
: wrap ofload_items
result to use directly in afor
loop.
Is useful for you?
Maybe you would be so kind to consider the amount of hours puts in, the great effort and the resources expended in doing this project. Thank you.
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
Built Distribution
File details
Details for the file easy-binary-file-1.0.4.tar.gz
.
File metadata
- Download URL: easy-binary-file-1.0.4.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3e3047c18cea101cf585644a55c223f1bad68ec01f8ce59dc03250f45944b70 |
|
MD5 | 45e62fd0b8433691ecc31177e9253276 |
|
BLAKE2b-256 | 87b719f97ca10ab53d31f2e23c2c25faad00cda01cf19f852a981cf0e5bcf5f9 |
File details
Details for the file easy_binary_file-1.0.4-py3-none-any.whl
.
File metadata
- Download URL: easy_binary_file-1.0.4-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bad8eb67450daa59fdeec08da5e0e4d6109bd466bfe032aed089ac28b924120c |
|
MD5 | 68f381dc89f88a6f80d290909e084068 |
|
BLAKE2b-256 | 81e909e801acd3e20e256d6a3fa6946aa6856645bee8bcf847f110314f102e99 |