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. Without this tween you cannot do IP-based geolocation, IP allowlisting, etc.

  • 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-allowlisted IPs. This is helpful because you don’t want anyone outside your team (i.e. usual visitors/users and search bots) to be able to visit <app>.heroku.com besides the domain the app is deployed on. This is for security and SEO purposes.

  • 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 allowlisted IPs in the pyramid_heroku.herokuapp_allowlist setting.

The pyramid_heroku.client_addr tween sets request.client_addr to an IP we can trust. It handles IP spoofing via X-Forwarded-For headers and ignores Cloudflare’s IPs when using Cloudflare reverse proxy.

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.10.2.tar.gz (14.9 kB view details)

Uploaded Source

Built Distribution

pyramid_heroku-0.10.2-py3-none-any.whl (20.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pyramid_heroku-0.10.2.tar.gz
  • Upload date:
  • Size: 14.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.11.9 Darwin/23.6.0

File hashes

Hashes for pyramid_heroku-0.10.2.tar.gz
Algorithm Hash digest
SHA256 5dafec5c5d8878a2b465cbdbd924cadb00787a70a9626bc5214b21c52bcc5cfc
MD5 889ab91295923db1d065812a7ca74888
BLAKE2b-256 1b9d8ae27b39944c9591ca30e581b4af5cc2a0e850a2764a535358500de1559b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyramid_heroku-0.10.2-py3-none-any.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.11.9 Darwin/23.6.0

File hashes

Hashes for pyramid_heroku-0.10.2-py3-none-any.whl
Algorithm Hash digest
SHA256 9324eedd3fcd78a07a1f3232c1149dfbccc50b0adfea0f5b02f1ca9234fa286d
MD5 2dd1c4c55e9e8765708c859424e07b3f
BLAKE2b-256 edd7d22a3c62b6806e665900b541a76b73f7c7f30b05682e35cf356785c6abb6

See more details on using hashes here.

Supported by

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