=========== sitebuilder =========== `sitebuilder` is the main script. It joins all pieces together to generate the website:: >>> from sitebuilder import buildSite >>> buildSite('tests/pycommunity.conf') Checking the structure:: >>> import os >>> os.path.exists('tests/www/glossary.html') True >>> os.path.exists('tests/www/recipes') True >>> os.path.exists('tests/www/recipes.html') True >>> os.listdir('tests/www/recipes') ['glossary_recipe.html', 'main_readme_recipe.html'] >>> os.path.exists('tests/www/tutorials') True >>> os.path.exists('tests/www/tutorials.html') True >>> os.listdir('tests/www/tutorials') ['how_to_use.html']