Skip to content

Commit 71ed1d9

Browse files
authored
Merge pull request #18 from PovertyAction/Release-0.1.2
Knowledge articles, comparison chart, version update
2 parents d736569 + 2b30a1b commit 71ed1d9

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,4 @@ Untitled.ipynb
105105

106106
t.csv
107107
exe packaging
108+
PII Charts Update.pdf

tkinter_script.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
intro_text = "This script is meant to assist in the detection of PII (personally identifiable information) and subsequent removal from a dataset."
1818
intro_text_p2 = "Ensuring the dataset is devoid of PII is ultimately still your responsibility."
19-
intro_text_p3 = "This is an alpha program. Please help improve it by filling out the survey on your experience using it (Help -> Provide Feedback)."
19+
intro_text_p3 = "This is an alpha program, built without access to datasets containing PII on which to test or train it. Please help improve the program by filling out the survey on your experience using it (Help -> Provide Feedback)."
2020
app_title = "IPA's PII Detector - Windows"
2121

2222

@@ -157,11 +157,11 @@ def about():
157157
def contact():
158158
webbrowser.open('https://github.com/PovertyAction/PII_detection/issues')
159159

160-
def methods():
161-
webbrowser.open('https://github.com/PovertyAction/PII_detection/blob/master/README.md#pii_detection')
160+
def article():
161+
webbrowser.open('https://povertyaction.force.com/support/s/article/IPAs-Personally-Identifiable-Information-Application')
162162

163163
def comparison():
164-
webbrowser.open('https://github.com/PovertyAction/PII_detection/blob/master/README.md#pii_detection')
164+
webbrowser.open('https://ipastorage.box.com/s/35jbvflnt6e4ev868290c3hygubofz2r')
165165

166166
def PII_field_names():
167167
webbrowser.open('https://github.com/PovertyAction/PII_detection/blob/fa1325094ecdd085864a58374d9f687181ac09fd/PII_data_processor.py#L115')
@@ -219,9 +219,9 @@ def restart_program():
219219

220220
# create more pulldown menus
221221
helpmenu = Menu(menubar, tearoff=0)
222-
helpmenu.add_command(label="About (v0.1.1)", command=about)
223-
#helpmenu.add_command(label="- Detection Methods", command=methods)
224-
#helpmenu.add_command(label="- Comparison with Other Scripts", command=comparison)
222+
helpmenu.add_command(label="About (v0.1.2)", command=about)
223+
helpmenu.add_command(label="- Knowledge Article", command=article)
224+
helpmenu.add_command(label="- Comparison with Other Scripts", command=comparison)
225225
#helpmenu.add_command(label="- PII Field Names", command=PII_field_names)
226226
#helpmenu.add_command(label="- Data Security", command=PII_field_names)
227227
helpmenu.add_separator()

0 commit comments

Comments
 (0)