pywmdockapps/wmdocklib/__init__.py

13 lines
352 B
Python
Raw Permalink Normal View History

2024-09-08 16:50:24 -06:00
"""\
wmdocklib is a python module that will help you develop WindowMaker dockapps
in python. It is mostly a wrapper around the functions from the popular
wmgeneral.c, but some new functions are added too.
to get help about a contained package, try:
help(wmdocklib.<name>)
"""
2024-09-09 01:16:30 -06:00
from .pywmgeneral import *
from .pywmhelpers import *
2024-09-08 16:50:24 -06:00
__all__ = ['wmoo']