initpy icon indicating copy to clipboard operation
initpy copied to clipboard

Easy way to create Python projects. (formerly flask-init)

initpy

.. image:: https://img.shields.io/pypi/v/initpy.svg?style=flat :target: https://pypi.python.org/pypi/initpy/ :alt: Latest Version .. image:: https://img.shields.io/pypi/dm/initpy.svg :target: https://pypi.python.org/pypi/initpy/ :alt: Downloads .. image:: https://readthedocs.org/projects/initpy/badge/?version=latest :target: http://initpy.readthedocs.org/en/latest/ :alt: Documentation Status

Generate Python_ project.

.. _Python: https://www.python.org/

Installation

.. sourcecode:: bash

~ $ python setup.py install

or can use pip

.. sourcecode:: bash

~ $ pip install initpy

Quick start

.. sourcecode:: bash

~ $ init.py foo.py # Create single Python file. ~ $ init.py foo/ # Create Python Module. ~ $ init.py -f foo # Create Flask project. ~ $ init.py -tw foo # Create Tornado web project. ~ $ init.py -fc foo # Create Falcon project. ~ $ init.py -hd flask foo # Create project from 3rd-Party template.

More details in docs <http://initpy.readthedocs.org/en/latest/>_.