Skip to content

Instantly share code, notes, and snippets.

@aGupieWare
aGupieWare / pygest_final.py
Created April 20, 2015 18:34
PyGest: Final Version
"""
pygest.py
A simple Python GUI tutorial application for processing file hashes.
Final Version
blog.agupieware.com
"""
@aGupieWare
aGupieWare / pygest_5_7.py
Created April 13, 2015 18:51
PyGest Code Snippet 5-7
"""
pygest.py
A simple Python GUI tutorial application for processing file hashes.
blog.agupieware.com
"""
import tkinter
import tkinter.filedialog as fd
@aGupieWare
aGupieWare / pygest_5_6.py
Created April 13, 2015 18:47
PyGest Code Snippet 5-6
class View():
"""
The main view class for the PyGest tkinter interface.
"""
.
.
.
def clear(self):
"""
Clears all input and output fields.
@aGupieWare
aGupieWare / pygest_5_5.py
Created April 13, 2015 18:44
PyGest Code Snippet 5-5
class View():
"""
The main view class for the PyGest tkinter interface.
"""
.
.
.
def configure_buttons(self):
"""
Configure button frame and two buttons: hash and clear.
@aGupieWare
aGupieWare / pygest_5_4.py
Created April 13, 2015 18:39
PyGest Code Snippet 5-4
class View():
"""
The main view class for the PyGest tkinter interface.
"""
.
.
.
def configure_buttons(self):
"""
Configure button frame and two buttons: hash and clear.
@aGupieWare
aGupieWare / pygest_5_3.py
Created April 13, 2015 18:36
PyGest Code Snippet 5-3
class View():
"""
The main view class for the PyGest tkinter interface.
"""
.
.
.
def configure_buttons(self):
"""
Configure button frame and two buttons: hash and clear.
@aGupieWare
aGupieWare / pygest_5_2.py
Created April 13, 2015 18:31
PyGest Code Snippet 5-2
class View():
"""
The main view class for the PyGest tkinter interface.
"""
.
.
.
def configure_buttons(self):
"""
Configure button frame and two buttons: hash and clear.
@aGupieWare
aGupieWare / pygest_5_1.py
Created April 13, 2015 18:25
PyGest Code Snippet 5-1
class View():
"""
The main view class for the PyGest tkinter interface.
"""
def __init__(self, root_object):
self.root = root_object
self.mainframe = None
self.filePath = None
self.set_up()
@aGupieWare
aGupieWare / pygest_4_4.py
Created April 6, 2015 17:15
PyGest Code Snippet 4-4
class View():
"""
The main view class for the PyGest tkinter interface.
"""
.
.
.
def configure_outputs(self):
"""
Configure output widgets: hash value, match value.
@aGupieWare
aGupieWare / pygest_4_3.py
Created April 6, 2015 17:12
PyGest Code Snippet 4-3
class View():
"""
The main view class for the PyGest tkinter interface.
"""
.
.
.
def configure_outputs(self):
"""
Configure output widgets: hash value, match value.