Metadata-Version: 2.1
Name: zipind
Version: 1.1.0
Summary: zipind - From a folder, make a splitted ZIP with INDependent parts
Home-page: https://github.com/apenasrr/zipind
Author: apenasrr
Author-email: apenasrr@gmail.com
License: MIT license
Keywords: zipind
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
License-File: LICENSE
License-File: AUTHORS.rst

======
zipind
======


.. image:: https://img.shields.io/pypi/v/zipind.svg
        :target: https://pypi.python.org/pypi/zipind

.. image:: https://readthedocs.org/projects/zipind/badge/?version=latest
        :target: https://zipind.readthedocs.io/en/latest/?version=latest
        :alt: Documentation Status

zipind - From a folder, make a splitted ZIP with INDependent parts


* Free software: MIT license
* Documentation: https://zipind.readthedocs.io.


Features
--------

- Compact folder to .zip or .rar, dividing into independent parts, grouping your files in alphanumeric order.
- Respects the ordering of folders and files.
- Respects the internal structure of folders.
- If any file is larger than the defined maximum size, the specific file is partitioned in dependent mode.
- Set file types to be ignored in compression (config/ignore_extensions.txt)

Requirements
------------

- To compress to Zip format, It is necessary to have 7Zip_ app installed and added in system variables
- To compress to Rar format, It is necessary to have Winrar_ app installed and added in system variables


Usage
-----

Let's zip a folder, with a maximum of 100MB per file, in zip mode and ignoring 'ISO' extension files.

**Through python script importation**

.. code-block:: python

    import zipind

    path_folder = r'c://my_project'

    zipind.run(path_folder, mode='zip', mb_perfile=100, mode='zip', ignore_extensions=['iso'])


**Through terminal in chatbot-like style**


.. code-block:: text

    $ zipind

Zipind will start by responding:

.. code-block:: text

    Zipind - From a folder, make a splitted ZIP with INDependent parts
    >> github.com/apenasrr/zipind <<

    Paste the folder path to be compressed:


Now paste the folder path to be compressed:

.. code-block:: text

    Paste the folder path to be compressed: c://my_project

Answer the questions to customize the parameters and your project will be processed.

**CLI Mode**

Soon...


We recommend
------------

`mises.org`_ - Educate yourself about economic and political freedom

`lbry.tv`_ - Store files and videos on blockchain ensuring free speech

`A Cypherpunk's Manifesto`_ - How encryption is essential to Free Speech and Privacy


Credits
-------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
.. _`7Zip`: https://www.7-zip.org/download.html
.. _`Winrar`: https://www.win-rar.com/download.html
.. _`mises.org`: https://mises.org/
.. _`lbry.tv`: http://lbry.tv/
.. _`A Cypherpunk's Manifesto`: https://www.activism.net/cypherpunk/manifesto.html

=======
History
=======

Tired of dealing with dependent-mode slicing folders and not finding
applications to be able to slice folders in independent pieces, the 2020
tyrannical lock-down time was used to create the first version of this tool.

0.1.0 (2020-04)
---------------

- Birth of the first beta version


1.1.0 (2022-09-04)
------------------

* First release on PyPI.
