Skip to main content

Generate Python project

Project description

Documentation Status

Generate Python project.

Installation

~ $ python setup.py install

or can use pip

~ $ pip install initpy

Quick start

Create single Python file.

~ $ init.py foo.py
~ $ cat foo.py
#!/usr/bin/python
# -*- coding:utf-8 -*-

Create Python Module.

~ $ init.py foo/
~ $ tree foo/
foo/
└── __init__.py

Create Flask project.

~ $ init.py -f bar
~ $ tree bar/
bar/
 ├── app
    ├── __init__.py
    ├── common
       ├── __init__.py
       ├── models.py
       └── views.py
    ├── static
    └── templates
        ├── base.html
        └── common
            └── index.html
 ├── manage.py
 └── requirements
     └── dev.txt

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

initpy-0.1.0.tar.gz (3.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page