PyTextBin is a versatile Python library facilitating seamless conversion between text, binary, JSON, base64, xml and CSV formats with ease.
Project description
PyTextBin
PyTextBin is a versatile Python library facilitating seamless conversion between text, binary, JSON, base64, xml and CSV formats with ease.' See the documentaion for more information
Installation
You can install PyTextBin using pip from PyPI:
pip install PyTextBin
Alternatively, you can find the project on GitHub:
Usage
Text and Binary
# Import everything from textbin
from pytextbin import *
#To begin, create an object from the Textbin() class, which you'll use to access all the methods.
# 0) create textbin_obj instance
textbin_obj = pytextbin.Textbin()
# 1) convert text to binary
text = 'hello world'
converted = textbin_obj.to_binary(text)
print("to_binary>>", converted)
# 2) convert json data to a base64 string
json_data = { 'id' : 12 , 'name' : 'Collins' }
converted = textbin_obj.json_to_base64(json_data)
print("json_to_base64>>", converted)
base64_data = 'eyJpZCI6IDEyLCAibmFtZSI6ICJDb2xsaW5zIn0='
converted = textbin_obj.base64_to_json(base64_data)
print("base64_to_json>>", converted)
Contributions
Contributions to PyTextBin are welcome! You can find the project's GitHub repository and contribute to its development.
Contributors
Your contributions are highly appreciated! We hope that PyTextBin proves helpful to you. Thank you for using it.
I hope it be of help to you thank you. Collins O. Odhiambo
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file PyTextBin-0.0.3.tar.gz.
File metadata
- Download URL: PyTextBin-0.0.3.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a94f8198af54b23e56c2c228a0afaf25932d022bd5f54bbfe19ab9ef2df912f
|
|
| MD5 |
31e413ea9d654c6007e05031442e4322
|
|
| BLAKE2b-256 |
40eab49469e0f4aa36530256a7c973a3cf446c0f9ba29833a03c82bc63c696d1
|
File details
Details for the file PyTextBin-0.0.3-py3-none-any.whl.
File metadata
- Download URL: PyTextBin-0.0.3-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1205a35ca9d6e83361c29b5e491d8eebd228b391412ba2246cdfaf4bad6beeeb
|
|
| MD5 |
58d5d191121217031c226868b05eb022
|
|
| BLAKE2b-256 |
f9fb0cb357e6aefbf95837b82f4c3527bd156db15b3b10fbf83049911f2492ab
|