Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/Parkayun/initpy
- Owner: Parkayun
- License: mit
- Created: 2015-02-09T04:24:23.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2020-10-01T06:57:44.000Z (over 4 years ago)
- Last Synced: 2024-03-15T01:03:48.713Z (10 months ago)
- Language: Python
- Homepage: http://initpy.readthedocs.org/en/latest/
- Size: 73.2 KB
- Stars: 47
- Watchers: 5
- Forks: 7
- Open Issues: 7
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - Parkayun/initpy - Easy way to create Python projects. (formerly flask-init) (Python)
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 StatusGenerate `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 `_.