Skip to content

Instantly share code, notes, and snippets.

View CasperCL's full-sized avatar

Casper CasperCL

  • Amsterdam
View GitHub Profile
@CasperCL
CasperCL / Pyramid.Dockerfile
Last active October 14, 2020 17:51
Docker for Pyramid
FROM python:3.6-alpine
RUN pip install gunicorn
COPY . /app
WORKDIR /app
RUN python setup.py develop
VOLUME ['/conf']
@sloria
sloria / bobp-python.md
Last active September 8, 2024 09:08
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens