PyPePacker (version 0.0.1)
index
pypepacker.py

This package implements a packer written in python, the packer reduce
the size (gzip compression), encrypt data (RC6 encryption) and reduce
data entropy (using EntropyEncoding).

 
Functions
       
exit(status=None, /)
Exit the interpreter by raising SystemExit(status).
 
If the status is omitted or None, it defaults to zero (i.e., success).
If the status is an integer, it will be used as the system exit status.
If it is another kind of object, it will be printed and the system
exit status will be one (i.e., failure).
main() -> int
This is the main function to start the program from command line.
mkdir(path, mode=511, *, dir_fd=None)
Create a directory.
 
If dir_fd is not None, it should be a file descriptor open to a directory,
  and path should be relative; path will then be relative to that directory.
dir_fd may not be implemented on your platform.
  If it is unavailable, using it will raise a NotImplementedError.
 
The mode argument is ignored on Windows. Where it is used, the current umask
value is first masked out.

 
Data
        __author_email__ = 'mauricelambert434@gmail.com'
__copyright__ = '\nPyPePacker Copyright (C) 2025 Maurice Lambert...ome to redistribute it\nunder certain conditions.\n'
__description__ = '\nThis package implements a packer written in pyt...and reduce\ndata entropy (using EntropyEncoding).\n'
__license__ = 'GPL-3.0 License'
__maintainer__ = 'Maurice Lambert'
__maintainer_email__ = 'mauricelambert434@gmail.com'
__url__ = 'https://github.com/mauricelambert/PyPePacker'
code = <string.Template object>
copyright = '\nPyPePacker Copyright (C) 2025 Maurice Lambert...ome to redistribute it\nunder certain conditions.\n'
license = 'GPL-3.0 License'

 
Author
        Maurice Lambert