my_utils.py 241 B

123456789101112131415
  1. """
  2. shared functions
  3. """
  4. def get_latest_comic_num():
  5. """
  6. Load the comic number from 'latest_comic_num.txt'
  7. return: int
  8. """
  9. fn = "latest_comic_num.txt"
  10. f = open(fn)
  11. num = f.read()
  12. f.close
  13. return int(num)