Beispiel #1
0
"""
An example usage of the packages, modules, and functions in this project.
"""

from setup_example.sample_mod1 import func1
from setup_example.sample_mod2 import func2

print("In " + __file__)
func1()
func2()
Beispiel #2
0
"""
An example usage of the packages, modules, and functions in this project.
"""


from setup_example.sample_mod1 import func1
from setup_example.sample_mod2 import func2


print("In " + __file__)
func1()
func2()
Beispiel #3
0
def main():
    print("In {}.main()".format(__name__))
    func1()
    func2()