mirror of
https://github.com/kennethreitz-archive/python_project.git
synced 2026-06-05 23:50:19 +00:00
ready to rock
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
"""
|
||||
|
||||
import cli
|
||||
import packages
|
||||
|
||||
from core import *
|
||||
|
||||
|
||||
|
||||
__all__ = ['core', 'cli', 'packages']
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from core import *
|
||||
|
||||
def start():
|
||||
"""Example Dipatch"""
|
||||
|
||||
print('Example executed')
|
||||
@@ -0,0 +1,20 @@
|
||||
# -*- 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
|
||||
|
||||
Reference in New Issue
Block a user