Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Parkayun/initpy

Easy way to create Python projects. (formerly flask-init)
https://github.com/Parkayun/initpy

Last synced: about 2 months ago
JSON representation

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

Awesome Lists containing this project

README

        

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 `_.