Create the static directory if it is missing
[cookbook.git] / cookbook / __init__.py
1 """Cookbook package, for manipulating and serving cookbooks.
2
3 Submodules:
4 * cookbook, basic cookbook classes
5 * server, for serving a cookbook over HTTP
6 * mom, for parsing my mom's cookbook format
7 """
8
9 from .cookbook import Cookbook
10
11 __all__ = {'Cookbook':Cookbook}