Skip to content

Instantly share code, notes, and snippets.

@orjanv
Last active August 29, 2015 14:05
Show Gist options
  • Save orjanv/ebadea62b6aff76b61cd to your computer and use it in GitHub Desktop.
Save orjanv/ebadea62b6aff76b61cd to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# untitled.py
#
class class_name(object):
def __init__(self):
return
def function_name(self, parameter):
'''This function does this and that
'''
return
def main():
# Construct an instance of the class
class_instance = class_name()
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment