Metadata-Version: 2.1
Name: sequential_rename
Version: 1.0.3
Summary: A small package for sequentially renaming files with the same name.
Home-page: https://github.com/GizmoTechy/Sequential-Rename
Author: Stefan Mladenovic (Gizmotechy)
Author-email: stefan.mladenovic@live.com
Project-URL: Bug Tracker, https://github.com/GizmoTechy/Sequential-Rename/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Rename-Sequential-Files

A small rename function I created to handle documents that have the same file name during automated copy jobs. This function will allow the files to be copied by just appending a (#) to the end of the file name similar to how file systems do so. You need to pass the new directory, current file name, and the files extension and the function will return the new name with (#) if no file with the same name already exists.

For example:
```
from sequential_rename.sequential_rename import seq_rename

new_doc_name = seq_rename(r'C:\Users\[USERNAME]\Documents', 'test', '.csv')
```
