Skip to main content

Allows you to manage zip folders as data

Project description

zipmanager

downloads changelog wiki

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


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.6.0.tar.gz (11.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

zipmanager-0.6.0-py3-none-any.whl (11.7 kB view details)

Uploaded Python 3

File details

Details for the file zipmanager-0.6.0.tar.gz.

File metadata

  • Download URL: zipmanager-0.6.0.tar.gz
  • Upload date:
  • Size: 11.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for zipmanager-0.6.0.tar.gz
Algorithm Hash digest
SHA256 2068b2d9d81705ed99f591e8ceb75d0d09dbaab7be070109dc1f42347b5730a6
MD5 43cd302e22a4e4ea34d5b8ecb22ed054
BLAKE2b-256 d487434d4135dbc3e5fcddbd83be1290f7f98dfba70e4a1069c7247d5eaff961

See more details on using hashes here.

File details

Details for the file zipmanager-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: zipmanager-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 11.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for zipmanager-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c17f6463e75c3b3cd1de29ab2d1fe39a2bd2ccb99842a2223d3af69f3993228a
MD5 af1cbd221525a96d3d7b61dcec71bda6
BLAKE2b-256 b281a5f37cef25d6aa803933f0bbcda12f86cdc85d841f5088c292f44148c637

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page