All Projects → nvie → python-fu

nvie / python-fu

Licence: other
Python command line tools, for increased fu.

Programming Languages

python
139335 projects - #7 most used programming language
Makefile
30231 projects

python-fu: Useful shell scripts for Python devs

Build status

Create dir structures for your modules easily:

$ mkmodule foo.bar.qux
$ tree foo
foo
├── __init__.py
└── bar
    ├── __init__.py
    └── qux.py

Easily promote module files:

$ promote foo.bar.qux
$ tree foo
foo
├── __init__.py
└── bar
    ├── __init__.py
    └── qux
        └── __init__.py

Easily demote modules files (if safe):

$ demote foo.bar.qux
$ tree foo
foo
├── __init__.py
└── bar
    ├── __init__.py
    └── qux.py

Safety first

These commands will never cause any data loss.

Installation

You can use pip to install python-fu:

$ pip install python-fu
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].