Skip to main content

Oldschool Web Development for Humans™

Project description

index.py

Although I've never used PHP, I like its hot-swap mechanism. I expect to use index.py to make Python's Web program deployment easier.

Install

pip install -U index.py

Or get the latest version on Github

git clone https://github.com/abersheeran/index.py
sudo python3 setup.py install

How to use

Execute the command index-cli dev under the path where you place your Web program.

deploy

In linux, you can use index-cli gunicorn start to start server.

  • -w INT: The number of worker processes for handling requests. This value is best when it is equal to the number of cores of the CPU.

  • -d: Increasing this parameter will cause the program to run in the background and redirect the log to the log.index in the current directory.

Configuration

Environment variables

At startup, index automatically reads the configuration from the environment variable that begins with INDEX_.

like this

INDEX_DEBUG=on
INDEX_ENV=pro

Config file

At the root of your web program, the configuration in config.json will be read when index starts.

example:

{
  "dev": {
    "debug": true,
  },
  "pro": {
    "debug": false,
    "port": 34567,
    "host": "0.0.0.0"
  }
}

List

  • ENV

    ENV is an important configuration that allows for the distinction between different configuration environments.

  • LOG_LEVEL

    log_level has five values, the corresponding table to the logging is as follows

    log_level loggins
    "critical" logging.CRITICAL
    "error" logging.ERROR
    "warning" logging.WARNING
    "info" logging.INFO
    "debug" logging.DEBUG

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

index.py-0.0.6.tar.gz (11.4 kB view hashes)

Uploaded Source

Built Distribution

index.py-0.0.6-py2.py3-none-any.whl (12.3 kB view hashes)

Uploaded Python 2 Python 3

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