Simple batch file renaming tool.
Project description
Moniker
A simple batch file rename tool.
Installation
Moniker is a simple Python utility for renaming and manipulating the filesystem based off similar project and work from Irving Ruan.
Currently work in progress
Clone the repository
$ git clone https://github.com/jjangsangy/moniker.git
Install
$ python setup.py install
Usage
$ moniker . .py .python
{
".": [
{
"setup.py": "setup.python"
}
],
"docs": [
{
"conf.py": "conf.python"
}
],
"moniker": [
{
"__init__.py": "__init__.python"
},
{
"__main__.py": "__main__.python"
},
{
"__version__.py": "__version__.python"
},
{
"moniker.py": "moniker.python"
}
],
"moniker/tests": [
{
"__init__.py": "__init__.python"
},
{
"test_main.py": "test_main.python"
}
]
}