Files
python_project/example/core.py
T
Kenneth Reitz 21670e1a42 ready to rock
2010-08-02 08:51:57 -04:00

20 lines
279 B
Python

# -*- coding: utf-8 -*-
""" Example -- Core Package
"""
import packages.extlib
import packages.extlib2
__version__ = '0.1.1'
__lisence__ = 'MIT'
__author__ = 'Kenneth Reitz'
class model(object):
"""Generic class used throught application"""
def __init__(self):
pass