Skip to main content

A Pyramid Scaffold to Pony users (django) by Mario Idival

Project description

I am Pharaoh is scaffold create to Django users which are starting with Pyramid.

Install:

pip install iampharaoh

After, verify your scaffold’s:

pcreate -l

Result:

Available scaffolds:
    alchemy:                 Pyramid SQLAlchemy project using url dispatch
    pharaohapps:             Create an 'app' in project. - Like startapp Django
    pharaohproject:          Scaffold created for Django users initiate with Pyramid more comfortably
    starter:                 Pyramid starter project
    zodb:                    Pyramid ZODB project using traversal

Only pharaohapps and pharaohproject are created by I am Pharaoh, others are default in Pyramid

How to:

After install I am Pharaoh, start a new project

pcreate -s pharaohproject nameOfProject

The result in nameOfProeject folder is:

├── LICENSE
├── MANIFEST.in
├── README
├── nameOfProject
│   ├── __init__.py
│   ├── nameOfProject
│   │   ├── __init__.py
│   │   ├── base_model.py
│   │   └── urls.py
│   ├── scripts
│   │   ├── __init__.py
│   │   ├── destroydb.py
│   │   └── initializedb.py
│   └── static
├── development.ini
├── production.ini
├── setup.cfg
└── setup.py

So, run in you project:

python setup.py develop

This command will download some packages, but the most significant for Django users are:

Create App

Whitin your project (Like Django):

pcreate -s pharaohapps nameOfApp

The result in nameOfProeject folder now is:

├── LICENSE
├── MANIFEST.in
├── README
├── nameOfProject
│   ├── __init__.py
│   ├── nameOfProject
│   │   ├── __init__.py
│   │   ├── base_model.py
│   │   └── urls.py
│   ├── nameOfApp -> add after run last command
│   │   ├── __init__.py
│   │   ├── models.py
│   │   ├── templates
│   │   │   └── index.html
│   │   ├── urls.py
│   │   └── views.py
│   ├── scripts
│   │   ├── __init__.py
│   │   ├── destroydb.py
│   │   └── initializedb.py
│   └── static
├── development.ini
├── production.ini
├── setup.cfg
└── setup.py

To connect app in project:

# nameOfProject/urls.py
config.include("nameOfProject.nameOfApp.urls")

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

iampharaoh-0.0.1.tar.gz (4.1 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