Skip to content

Instantly share code, notes, and snippets.

View pancho-villa's full-sized avatar

Adam Garcia pancho-villa

  • Seattle, Wa
View GitHub Profile
@chrisma
chrisma / boilerplate.py
Created April 29, 2012 08:22 — forked from ssokolow/boilerplate.py
Python boilerplate
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""[application description]"""
__appname__ = "[application name]"
__author__ = "[author]"
__version__ = "0.0"
__license__ = "GNU GPL 3.0 or later"
import logging, argparse
@ssokolow
ssokolow / boilerplate.py
Last active January 8, 2022 17:43
Python boilerplate from which I start all my projects
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""[application description here]"""
__appname__ = "[application name here]"
__author__ = "Stephan Sokolow (deitarion/SSokolow)"
__version__ = "0.0pre0"
__license__ = "GNU GPL 3.0 or later"
import logging