mirror of
https://github.com/gryf/wmdocklib.git
synced 2025-12-19 12:28:10 +01:00
13 lines
344 B
Python
13 lines
344 B
Python
"""\
|
|
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>)
|
|
"""
|
|
from pywmhelpers import *
|
|
from pywmgeneral import *
|
|
|
|
__all__ = []
|