Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. """
  2. pygest.py
  3.  
  4. A simple Python tkinter GUI application for processing file hashes.
  5.  
  6. blog.agupieware.com
  7. """
  8.  
  9. import tkinter
  10. import hashlib
  11. import logging
  12.  
  13. def main():
  14. """
  15. Main function to run the PyGest GUI application.
  16. """
  17. pass
  18.  
  19. if __name__ == "__main__":
  20. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement