pywmdockapps/pywmdockapps/__init__.py

14 lines
642 B
Python

"""
pywmdockapps is a python module that will help you develop WindowMaker dockapps
in python. It is a wrapper around the functions from wmgeneral.c.
To get help about a contained package, try:
help(pywmdockapps.<name>)
"""
from .pywmgeneral import *
from .pywmhelpers import *
# __all__ controls what 'from pywmdockapps import *' pulls in.
# If you want users to see 'pywmgeneral' and 'pywmhelpers' too, add them here.
__all__ = ['wmoo', 'pywmgeneral', 'pywmhelpers']