Metadata-Version: 2.1
Name: multi-rename
Version: 0.0.2
Summary: Easily rename multiple files ending with incrementing numbers.
Home-page: https://github.com/pshkrh/multi-rename
Author: Pushkar Kurhekar
Author-email: dev@pshkrh.com
License: UNKNOWN
Description: # multi-rename
        
        A python module for renaming multiple files in a directory to a common format ending in incrementing numbers.
        
        ## Installation
        
        Install using pip:
        
        ```sh
        pip install multi-rename
        ```
        
        ## Usage
        
        ```Python
        from multi_rename import renamer
        
        # Full Rename
        renamer.full_rename(dir_path='/path/to/dir/here', new_name='new_file_name')
        
        # Add prefix
        renamer.add_affix(dir_path='/path/to/dir/here', affix='prefix_to_add', affix_type='prefix')
        
        # Add suffix
        renamer.add_affix(dir_path='/path/to/dir/here', affix='suffix_to_add', affix_type='suffix')
        
        ```
        
        ## Example
        
        ```Python
        renamer.full_rename('/home/test_imgs/','newname')
        ```
        
        This will make all the files in the directory to be renamed as:
        
        ```
        newname1.jpg
        newname2.pdf
        newname3.png
        ...
        ```
        
        ## Contributing
        
        If you have any bug fixes / useful feature additions, feel free to fork this repository, make your changes and drop in a pull request.
        
        ## License
        
        [MIT](https://github.com/pshkrh/multi-rename/blob/master/LICENSE)
Keywords: multi batch rename all files
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Requires-Python: >=3.3
Description-Content-Type: text/markdown
