Skip to content

visualdensity/python-package

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

Python Modules Example

Sample package to shows the structure typical pyhon package. It answers questions like how do one create subpackages, what is the __init__.py is used for and what is supposed to be in the __init__.py file.

This package works, just that it does not do much. To give it a run, try the following:

from mainpackage import *

main_package = Top_class()
main_package.test_me()

sub_package1 = Sub1_class()
sub_package.test_me()

sub_package2 = Sub2_class()
sub_package.test_me()

Resources

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages