Skip to main content

A bunch of helpers for successfully running Pyramid on Heroku.

Project description

Introduction

pyramid_heroku is a collection of tweens and helpers to successfully run Pyramid on Heroku

It provides the following:

  • ClientAddr tween that sets real user’s IP to request.client_addr

  • Host tween that sets request.host to proxied X-Forwarded-Host header (note: potential security risk)

  • HerokuappAccess tween that denies access to your app’s <app>.herokuapp.com domain for any non-whitelisted IPs.

  • migrate.py script for automatically running alembic migrations on deploy.

  • maintenance.py script for controlling Heroku maintenance mode.

Installation

Just do

pip install pyramid_heroku

or

easy_install pyramid_heroku

Compatibility

pyramid_heroku runs with pyramid>=1.7 and python>=3.6. Other versions might also work.

Documentation

Usage example for tweens:

def main(global_config, **settings):$ cat .heroku/release.sh
    config = Configurator(settings=settings)
    config.include('pyramid_heroku.client_addr')
    config.include('pyramid_heroku.herokuapp_access')
    return config.make_wsgi_app()

The pyramid_heroku.herokuapp_access tween depends on pyramid_heroku.client_addr tween and it requires you to list whitelisted IPs in the pyramid_heroku.herokuapp_whitelist setting.

Usage example for automatic alembic migration script:

$ cat .heroku/release.sh
#!/usr/bin/env bash

set -e

echo "Running migrations"
python -m pyramid_heroku.migrate my_app etc/production.ini

echo "DONE!"

For migration script to work, you need to set the MIGRATE_API_SECRET_HEROKU env var in Heroku. This allows the migration script to use the Heroku API.

Before running DB migration, the script will enable Heroku maintenance mode if the app is not already in maintenance mode. After the migration, maintenance mode will be disabled only if it was enabled by the migration script.

Maintenance mode can also be enabled/disabled using the pyramid_heroku.maintenance script.

Usage example for enabling the Heroku maintenance mode:

python -m pyramid_heroku.maintenance on my_app etc/production.ini

If you use structlog, add the following configuration setting to your INI file to enable structlog-like logging:

pyramid_heroku.structlog = true

See tests for more examples.

Releasing

  1. Update CHANGES.rst.

  2. Update pyproject.toml version.

  3. Run poetry check.

  4. Run poetry publish --build.

We’re hiring!

At Niteo we regularly contribute back to the Open Source community. If you do too, we’d like to invite you to join our team!

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

pyramid_heroku-0.8.0.tar.gz (13.3 kB view details)

Uploaded Source

Built Distribution

pyramid_heroku-0.8.0-py3-none-any.whl (18.2 kB view details)

Uploaded Python 3

File details

Details for the file pyramid_heroku-0.8.0.tar.gz.

File metadata

  • Download URL: pyramid_heroku-0.8.0.tar.gz
  • Upload date:
  • Size: 13.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.8.6 Linux/5.9.16-1-MANJARO

File hashes

Hashes for pyramid_heroku-0.8.0.tar.gz
Algorithm Hash digest
SHA256 cf92d7bec504cd8ce64d87545b566595ec5d89467cade34abbbb1afdf82e7b87
MD5 4070c51121f2be9f88b9ebf024a22eed
BLAKE2b-256 57861a71dd77abaa3d50acddb6ee3170f50f4b6ba1214d7b098c0c94959f1e4c

See more details on using hashes here.

File details

Details for the file pyramid_heroku-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: pyramid_heroku-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 18.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.8.6 Linux/5.9.16-1-MANJARO

File hashes

Hashes for pyramid_heroku-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a614c4666148f45f4c34ea1f9de561c76f5996275988b4821531f00a955df455
MD5 c6bc93470516ed54faf2ff4970dc1cb8
BLAKE2b-256 c102bdf4d249f860abb5de553256545817cb98b32ecdf1c9ab4f0f736cfe3bd7

See more details on using hashes here.

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