Generate Python project
Project description
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 details)
File details
Details for the file initpy-0.1.0.tar.gz.
File metadata
- Download URL: initpy-0.1.0.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d83e099fd0bd2888a78886254462bcae17bed29b13f48435ff5b2ecd7b4abb69
|
|
| MD5 |
8e32e8c8500e40d5517ceab7050d7d3d
|
|
| BLAKE2b-256 |
963dbdeb8a6605455326b38c4071a1645c81ecfe97016e3c948b517e785723be
|