__init__.py 506 B

1234567891011121314151617181920212223
  1. """
  2. Example Lib
  3. """
  4. class foo:
  5. """
  6. Example class.
  7. """
  8. ############################## Attributes ##############################
  9. ############################## Constructor ##############################
  10. def __init__(self):
  11. pass
  12. ############################## Methods ##############################
  13. def bar(self):
  14. """
  15. Example Method.
  16. """
  17. print("class foo, method bar")