Created
March 18, 2014 23:39
-
-
Save damianavila/9632346 to your computer and use it in GitHub Desktop.
Just a simple template to avoid starting with a blank page ;-)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""A one-line description. | |
A longer description that spans multiple lines. Explain the purpose of the | |
file and provide a short list of the key classes/functions it contains. This | |
is the docstring shown when some does 'import foo;foo?' in IPython, so it | |
should be reasonably useful and informative. | |
""" | |
#----------------------------------------------------------------------------- | |
# Copyright (c) 2012 - 2014, Continuum Analytics, Inc. All rights reserved. | |
# | |
# Powered by the Bokeh Development Team. | |
# | |
# The full license is in the file LICENCE.txt, distributed with this software. | |
#----------------------------------------------------------------------------- | |
#----------------------------------------------------------------------------- | |
# Imports | |
#----------------------------------------------------------------------------- | |
# [remove this comment in production] | |
# | |
# List all imports, sorted within each section (stdlib/third-party/ipython). | |
# For 'import foo', use one import per line. For 'from foo.bar import a, b, c' | |
# it's OK to import multiple items, use the parenthesized syntax 'from foo | |
# import (a, b, ...)' if the list needs multiple lines. | |
# Stdlib imports | |
# Third-party imports | |
# Our own imports | |
# [remove this comment in production] | |
# | |
# Use broad section headers like this one that make it easier to navigate the | |
# file, with descriptive titles. For complex classes, simliar (but indented) | |
# headers are useful to organize the internal class structure. | |
#----------------------------------------------------------------------------- | |
# Globals and constants | |
#----------------------------------------------------------------------------- | |
#----------------------------------------------------------------------------- | |
# Local utilities | |
#----------------------------------------------------------------------------- | |
#----------------------------------------------------------------------------- | |
# Classes and functions | |
#----------------------------------------------------------------------------- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment