Skip to content

Instantly share code, notes, and snippets.

@aGupieWare
aGupieWare / pygest_4_2.py
Created April 6, 2015 17:09
PyGest Code Snippet 4-2
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_1.py
Created April 6, 2015 17:07
PyGest Code Snippet 4-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_3_10.py
Created March 28, 2015 16:31
PyGest Code Snippet 3-10
class View():
"""
The main view class for the PyGest tkinter interface.
"""
.
.
.
def configure_inputs(self):
"""
Configure app input objects: file path, hash value, radio buttons.
@aGupieWare
aGupieWare / pygest_3_9.py
Created March 28, 2015 16:21
PyGest Code Snippet 3-9
class View():
"""
The main view class for the PyGest tkinter interface.
"""
.
.
.
def configure_inputs(self):
"""
Configure app input objects: file path, hash value, radio buttons.
@aGupieWare
aGupieWare / pygest_3_8.py
Created March 28, 2015 16:18
PyGest Code Snippet 3-8
class View():
"""
The main view class for the PyGest tkinter interface.
"""
.
.
.
def configure_inputs(self):
"""
Configure app input objects: file path, hash value, radio buttons.
@aGupieWare
aGupieWare / pygest_3_6.py
Last active August 29, 2015 14:17
PyGest Code Snippet 3-6
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_3_5.py
Created March 28, 2015 16:07
PyGest Code Snippet 3-5
class View():
"""
The main view class for the PyGest tkinter interface.
"""
.
.
.
def configure_inputs(self):
"""
Configure app input objects: file path, hash value, radio buttons.
@aGupieWare
aGupieWare / pygest_3_4.py
Created March 28, 2015 15:54
PyGest Code Snippet 3-4
class View():
"""
The main view class for the PyGest tkinter interface.
"""
.
.
.
def configure_inputs(self):
"""
Configure app input objects: file path, hash value, radio buttons.
@aGupieWare
aGupieWare / pygest_3_3.py
Created March 28, 2015 15:49
PyGest Code Snippet 3-3
class View():
"""
The main view class for the PyGest tkinter interface.
"""
.
.
.
def configure_inputs(self):
"""
Configure app input objects: file path, hash value, radio buttons.
@aGupieWare
aGupieWare / pygest_3_2.py
Created March 28, 2015 15:45
PyGest Code Snippet 3-2
class View():
"""
The main view class for the PyGest tkinter interface.
"""
def __init__(self, root_object):
self.root = root_object
self.mainframe = None
self.set_up()
def set_up(self):