__init__.py 327 B

123456789101112131415
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. """
  4. demeter init
  5. author:rabin
  6. 这里写页面逻辑
  7. """
  8. import os
  9. from demeter.web import *
  10. path = os.path.split(os.path.realpath(__file__))[0] + '/'
  11. files = Web.file(path)
  12. url = []
  13. for key in files:
  14. module = __import__(key, globals())
  15. url = Web.url(module, key, url)