Allows you to manage zip folders as data
Project description
zipmanager
pip install zipmanager
What does this package do ?
It allows you to create and handle zip folders as data without needing to save them.
Usage
from zipmanager import ZipFolder
file_data = b'some data'
zip_folder = ZipFolder({'file_name.file_extension': file_data})
# file extension not required
# ZipFolder will hold all the files given in the dictionary
file_data = zip_folder['file_name.file_extension']
# will return the file data
Main functions
from zipmanager import ZipFolder
file_data = b'some_data'
zip_folder = ZipFolder({'file_name.file_extension': file_data})
# list of functions:
zip_folder.add_files({'new_file': 'new_data'}) # add files to zip. read more at docstring.
zip_folder.delete_file('new_file') # removes file from zip
zip_folder.get('file_name') # returns None if file was not found
# or
zip_folder['file_name']
zip_folder.save() # saves zip in given location (empty is './temp.zip')
File extension features
json and text files data is automatically returned as a dict or str respectively:
from zipmanager import ZipFolder
file_data = b'{"key": "value"}'
zip_folder = ZipFolder({'file_name.json': file_data})
# .json extension is required to return a dict/list/str
data = zip_folder['file_name.json'] # returns a dict/list/str type
# same for .txt
file_data = b'text file data'
zip_folder = ZipFolder({'file_name.txt': file_data})
data = zip_folder['file_name.txt'] # returns a string
new in version 0.2.0 - files with the zip extension will return a ZipFolder object:
from zipmanager import ZipFolder
zip_data = b'some zip data'
zip_folder = ZipFolder({'file_name.zip': zip_data})
data = zip_folder['file_name.zip'] # returns a ZipFolder object
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
zipmanager-0.4.0.tar.gz
(7.8 kB
view details)
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 zipmanager-0.4.0.tar.gz.
File metadata
- Download URL: zipmanager-0.4.0.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce97c1b4e0fd23d4fc4955c35343e64c22aac80e4470e87b5f779df2c0b8f7ad
|
|
| MD5 |
11fda33476a42b8d1ef5bee379e36a2f
|
|
| BLAKE2b-256 |
9810d8ce3b115d3cd1edcd06f07ee3c053950dbe3c7bec2563fcef9305059341
|
File details
Details for the file zipmanager-0.4.0-py3-none-any.whl.
File metadata
- Download URL: zipmanager-0.4.0-py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5667a9ee7f76c0e929b1773271dd73384a9396c27ee70d92a070d94f4d964c2a
|
|
| MD5 |
623a2d309350b437809f05cfa9424437
|
|
| BLAKE2b-256 |
c865516e8a0572d2963ffe34e748e4ebfc6ab4e1799fdaa6406d688f7bca31d8
|