From 1081963e6fa1227e3328406239bf5da561111a24 Mon Sep 17 00:00:00 2001 From: Raffu Khondaker <2022rkhondak@tjhsst.edu> Date: Tue, 16 Jun 2020 21:59:54 -0400 Subject: [PATCH 01/20] docs --- docs/source/cli.rst | 40 ++++++++++++++++++++++++++----- eharris1/Truck_eharris1/README.md | 0 2 files changed, 34 insertions(+), 6 deletions(-) create mode 100644 eharris1/Truck_eharris1/README.md diff --git a/docs/source/cli.rst b/docs/source/cli.rst index 23c9ed8..df41d3b 100644 --- a/docs/source/cli.rst +++ b/docs/source/cli.rst @@ -1,10 +1,10 @@ Command Line Interface ===================== -1. Making a user: +Making a user: ------- - -python skoolos.py +:: + python skoolos.py You will be redirected to a login page for the SkoolOS website. If you have already created an account on the website, enter login informatiton. If not, select the registration button bellow and create an account. Once you create an account via Ion OAuth and SkoolOS, login. The window should close, prompting: @@ -35,7 +35,7 @@ You will then be given the choice to select an existing class, Make a new class, Make New Class Exit SkoolOS -1. Making a new class: +Making a new class: ------- Select 'Make a New Class'. You will then be prompted to enter a class name. The format for every class must be _ (Example: Art12_eharris1). @@ -59,8 +59,36 @@ one username per line. File must be .txt and have 1 student username per line Relative Path: students.txt - - +OR + +? Add Students): 1) Add individual student +Student name: 2022rkhondak + +Accessing an existing class +===================== + +Once you have created a class, you can then view and modify certain fields. (Open opening a class, any students who have accepted the request will be automatically +added you the class.) + +? Select class: (Use arrow keys) + Art12_eharris1 + Civ_eharris1 + ❯ English12_eharris1 + History12_eharris1 + Random_eharris1 + Truck_eharris1 + Make New Class + Exit SkoolOS + +Class: English12_eharris1 +? Select option: (Use arrow keys) + ❯ 1) Request Student + 2) Add assignment + 3) View student information + 4) Exit + +Requesting Students +------- diff --git a/eharris1/Truck_eharris1/README.md b/eharris1/Truck_eharris1/README.md new file mode 100644 index 0000000..e69de29 From 468e7426cd8268aef5ce7c42ea2aaea66794019b Mon Sep 17 00:00:00 2001 From: Raffu Khondaker <2022rkhondak@tjhsst.edu> Date: Tue, 16 Jun 2020 22:02:31 -0400 Subject: [PATCH 02/20] block --- docs/source/cli.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/source/cli.rst b/docs/source/cli.rst index df41d3b..866d89f 100644 --- a/docs/source/cli.rst +++ b/docs/source/cli.rst @@ -20,11 +20,11 @@ Enter the valid SkoolOS username and password. Congratialations, you have succes Start the CLI and select your username. For instance, teacher 'eharris1' python skoolos.py - -? Select User: (Use arrow keys) - 1) 2022rkhondak - ❯ 2) eharris1 - 3) Make new user +.. code-block:: python + ? Select User: (Use arrow keys) + 1) 2022rkhondak + ❯ 2) eharris1 + 3) Make new user You will then be given the choice to select an existing class, Make a new class, or exit the CLI: From d7c16d9c858e9979afcad21afd31380fe16a936f Mon Sep 17 00:00:00 2001 From: Raffu Khondaker <2022rkhondak@tjhsst.edu> Date: Tue, 16 Jun 2020 22:08:06 -0400 Subject: [PATCH 03/20] docs update --- docs/source/cli.rst | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/docs/source/cli.rst b/docs/source/cli.rst index 866d89f..db5c303 100644 --- a/docs/source/cli.rst +++ b/docs/source/cli.rst @@ -19,8 +19,8 @@ Enter the valid SkoolOS username and password. Congratialations, you have succes Start the CLI and select your username. For instance, teacher 'eharris1' -python skoolos.py .. code-block:: python + python skoolos.py ? Select User: (Use arrow keys) 1) 2022rkhondak ❯ 2) eharris1 @@ -90,6 +90,32 @@ Class: English12_eharris1 Requesting Students ------- +Select 'Request Student'. You will then be prompted to add students. If you have a list of students, enter the relative path of a text file with the student usernames. +The file must be a .txt file and have one student username per line. If you add an individual student, simply enter their ion username. +one username per line. + +Class: English12_eharris1 +? Select option: (Use arrow keys) + ❯ 1) Request Student + 2) Add assignment + 3) View student information + 4) Exit + +? Add list of students (input path): (Use arrow keys) + ❯ 1) Add individual student + 2) Add list of students through path + 3) Exit + +? Select option: 1) Request Student +? Add list of students (input path): 1) Add individual student +? Student Name: 2022rkhondak + +OR + +? Add Students): 2) Add list of students through path +File must be .txt and have 1 student username per line +Relative Path: students.txt + From 7f7fdd1ddbd3a34b6f7662040413209c2d71f40c Mon Sep 17 00:00:00 2001 From: rushilwiz Date: Tue, 16 Jun 2020 22:19:39 -0400 Subject: [PATCH 04/20] hmmm --- skoolos.py | 68 ++++++++++++++++++++++++++---------------------------- 1 file changed, 33 insertions(+), 35 deletions(-) diff --git a/skoolos.py b/skoolos.py index 8778d79..1f63a02 100644 --- a/skoolos.py +++ b/skoolos.py @@ -1,6 +1,3 @@ -""" -The main program file for SkoolOS -""" import sys from urllib.parse import urlparse import requests @@ -97,8 +94,8 @@ def main(): def studentCLI(user, password): """ The CLI for students to access - @param user: student username - @param password: student password + :param user: student username + :param password: student password """ from CLI import student data = getUser(user, password, 'student') @@ -116,7 +113,7 @@ def studentCLI(user, password): def chooseClassStudent(student): """ Chooses a class for a student to view and work on - @param student: a student + :param student: a student :return: a course prompt """ carray = student.sclass.split(",") @@ -142,8 +139,8 @@ def classOptionsStudent(student, course): """ Allows students to choose what they want to do related to a class The student can save, exit, or go back - @param student: a student - @param course: a course + :param student: a student + :param course: a course :return: True if exiting, False if going back """ student.viewClass(course) @@ -175,14 +172,14 @@ def classOptionsStudent(student, course): tlist = [] b = True for a in assignments: - oname = a + "_" + course + oname = a + "_" + course a = student.username + "/" + a if(os.path.isdir(a) and not "." in a and not oname in student.completed): tlist.append(a) assignments = tlist assignments.append("Back") print(assignments) - + options = [ { 'type': 'list', @@ -203,8 +200,8 @@ def classOptionsStudent(student, course): def teacherCLI(user, password): """ The CLI for teachers to access - @param user: teachers username - @param password: teachers password + :param user: teachers username + :param password: teachers password """ from CLI import teacher data = getUser(user, password, 'teacher') @@ -422,7 +419,7 @@ def viewStudentsTeacher(teacher, course): data = getDB(teacher.username, teacher.password, "http://127.0.0.1:8000/api/classes/" + course) students = data["confirmed"] unconf = data['unconfirmed'] - print("Studented in class: ") + print("Students in class: ") for s in students: print(s) print("Requsted Students: ") @@ -451,6 +448,7 @@ def viewStudentsTeacher(teacher, course): s = f.split("_")[0] alist.append(s) print("Has submitted: " + str(alist)) + #Y/N #put log stuff @@ -460,9 +458,9 @@ def viewStudentsTeacher(teacher, course): def getUser(ion_user, password, utype): """ Returns user information - @param ion_user: user - @param password: user's password - @param utype: type of user (student or teacher + :param ion_user: user + :param password: user's password + :param utype: type of user (student or teacher :return: api user information """ if 'student' in utype: @@ -490,10 +488,10 @@ def getUser(ion_user, password, utype): def patchDB(USER, PWD, url, data): """ Sends a PATCH request to url - @param USER: username - @param PWD: password - @param url: URL for request - @param data: data to request + :param USER: username + :param PWD: password + :param url: URL for request + :param data: data to request :return: json request response """ r = requests.patch(url=url, data=data, auth=(USER, PWD)) @@ -504,9 +502,9 @@ def patchDB(USER, PWD, url, data): def getDB(USER, PWD, url): """ Sends a GET request to url - @param USER: username - @param PWD: password - @param url: URL for request + :param USER: username + :param PWD: password + :param url: URL for request :return: json request response """ r = requests.get(url=url, auth=(USER, PWD)) @@ -517,10 +515,10 @@ def getDB(USER, PWD, url): def postDB(USER, PWD, url, data): """ Sends a POST request to url - @param USER: username - @param PWD: password - @param url: URL for request - @param data: data to request + :param USER: username + :param PWD: password + :param url: URL for request + :param data: data to request :return: json request response """ r = requests.post(url=url, data=data, auth=(USER, PWD)) @@ -531,10 +529,10 @@ def postDB(USER, PWD, url, data): def putDB(USER, PWD, url, data): """ Sends a PUT request to url - @param USER: username - @param PWD: password - @param url: URL for request - @param data: data to request + :param USER: username + :param PWD: password + :param url: URL for request + :param data: data to request :return: json request response """ r = requests.put(url=url, data=data, auth=(USER, PWD)) @@ -545,9 +543,9 @@ def putDB(USER, PWD, url, data): def delDB(USER, PWD, url): """ Sends a DELETE request to url - @param USER: username - @param PWD: password - @param url: URL for request + :param USER: username + :param PWD: password + :param url: URL for request :return: json request response """ r = requests.delete(url=url, auth=(USER, PWD)) @@ -610,7 +608,7 @@ def authenticate(): path = os.path.join(os.getcwd(), 'chromedriver', 'chromedriver-mac') if(system.lower() == 'linux'): path = os.path.join(os.getcwd(), 'chromedriver', 'chromedriver-linux') - + browser = webdriver.Chrome(path) browser.get("localhost:8000/login") From 2e44139d8066946b236d3776a9813b1e6e266b47 Mon Sep 17 00:00:00 2001 From: Nathaniel Kenschaft Date: Tue, 16 Jun 2020 22:35:52 -0400 Subject: [PATCH 05/20] generated pydoc documentation --- CLI/student.py | 46 +- CLI/teacher.py | 104 +- SkoolOS/logs/skoolos_06162020-221844 | 55 + SkoolOS/logs/skoolos_06162020-221848 | 6452 ++++++++++++++++++++++++++ SkoolOS/logs/skoolos_06162020-222011 | 4352 +++++++++++++++++ bgservice.bgservice.html | 187 + bgservice.checker.html | 44 + bgservice.html | 23 + bgservice/bgservice.py | 37 +- bgservice/bgservice.sh | 3 - bgservice/checker.py | 10 +- bgservice/run.py | 2 - bgservice/test.py | 4 - skoolos.html | 112 + skoolos.py | 180 +- 15 files changed, 11430 insertions(+), 181 deletions(-) create mode 100644 SkoolOS/logs/skoolos_06162020-221844 create mode 100644 SkoolOS/logs/skoolos_06162020-221848 create mode 100644 SkoolOS/logs/skoolos_06162020-222011 create mode 100644 bgservice.bgservice.html create mode 100644 bgservice.checker.html create mode 100644 bgservice.html delete mode 100755 bgservice/bgservice.sh delete mode 100644 bgservice/run.py delete mode 100644 bgservice/test.py create mode 100644 skoolos.html diff --git a/CLI/student.py b/CLI/student.py index 285b001..b74e6a5 100644 --- a/CLI/student.py +++ b/CLI/student.py @@ -33,10 +33,10 @@ def getStudent(ion_user, password): def getDB(user, pwd, url): """ Sends a GET request to url - :param user: username - :param pwd: password - :param url: URL for request - :return: json request response + param user: username + param pwd: password + param url: URL for request + return: json request response """ r = requests.get(url=url, auth=(user, pwd)) print("GET:" + str(r.status_code)) @@ -46,11 +46,11 @@ def getDB(user, pwd, url): def patchDB(user, pwd, data, url): """ Sends a PATCH request to url - :param user: username - :param pwd: password - :param url: URL for request - :param data: data to request - :return: json request response + param user: username + param pwd: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.patch(url=url, data=data, auth=(user, pwd)) print("PATCH:" + str(r.status_code)) @@ -61,11 +61,11 @@ def patchDB(user, pwd, data, url): def postDB(user, pwd, data, url): """ Sends a POST request to url - :param user: username - :param pwd: password - :param url: URL for request - :param data: data to request - :return: json request response + param user: username + param pwd: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.post(url=url, data=data, auth=(user, pwd)) print("POST:" + str(r.status_code)) @@ -76,11 +76,11 @@ def postDB(user, pwd, data, url): def putDB(user, pwd, data, url): """ Sends a PUT request to url - :param user: username - :param pwd: password - :param url: URL for request - :param data: data to request - :return: json request response + param user: username + param pwd: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.put(url=url, data=data, auth=(user, pwd)) print("PUT:" + str(r.status_code)) @@ -91,10 +91,10 @@ def putDB(user, pwd, data, url): def delDB(user, pwd, url): """ Sends a DELETE request to url - :param user: username - :param pwd: password - :param url: URL for request - :return: json request response + param user: username + param pwd: password + param url: URL for request + return: json request response """ r = requests.delete(url=url, auth=(user, pwd)) print("DELETE:" + str(r.status_code)) diff --git a/CLI/teacher.py b/CLI/teacher.py index 0bbd7f3..cf36dda 100644 --- a/CLI/teacher.py +++ b/CLI/teacher.py @@ -29,9 +29,9 @@ from datetime import datetime def getTeacher(ion_user, password): """ Gets information about a teacher from the api - :param ion_user: a teacher - :param password: the teacher's password - :return: teacher information or error + param ion_user: a teacher + param password: the teacher's password + return: teacher information or error """ URL = "http://127.0.0.1:8000/api/teachers/" + ion_user + "/" r = requests.get(url=URL, auth=(ion_user,password)) @@ -53,10 +53,10 @@ def getTeacher(ion_user, password): def getDB(user, pwd, url): """ Sends a GET request to url - :param user: username - :param pwd: password - :param url: URL for request - :return: json request response + param user: username + param pwd: password + param url: URL for request + return: json request response """ r = requests.get(url=url, auth=(user, pwd)) print("GET:" + str(r.status_code)) @@ -66,11 +66,11 @@ def getDB(user, pwd, url): def patchDB(user, pwd, data, url): """ Sends a PATCH request to url - :param user: username - :param pwd: password - :param url: URL for request - :param data: data to request - :return: json request response + param user: username + param pwd: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.patch(url=url, data=data, auth=(user, pwd)) print("PATCH:" + str(r.status_code)) @@ -81,11 +81,11 @@ def patchDB(user, pwd, data, url): def postDB(user, pwd, data, url): """ Sends a POST request to url - :param user: username - :param pwd: password - :param url: URL for request - :param data: data to request - :return: json request response + param user: username + param pwd: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.post(url=url, data=data, auth=(user, pwd)) print("POST:" + str(r.status_code)) @@ -96,11 +96,11 @@ def postDB(user, pwd, data, url): def putDB(user, pwd, data, url): """ Sends a PUT request to url - :param user: username - :param pwd: password - :param url: URL for request - :param data: data to request - :return: json request response + param user: username + param pwd: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.put(url=url, data=data, auth=(user, pwd)) print("PUT:" + str(r.status_code)) @@ -111,10 +111,10 @@ def putDB(user, pwd, data, url): def delDB(user, pwd, url): """ Sends a DELETE request to url - :param user: username - :param pwd: password - :param url: URL for request - :return: json request response + param user: username + param pwd: password + param url: URL for request + return: json request response """ r = requests.delete(url=url, auth=(user, pwd)) print("DELETE:" + str(r.status_code)) @@ -124,7 +124,7 @@ def delDB(user, pwd, url): def command(command): """ Runs a shell command - :param command: shell command + param command: shell command """ ar = [] command = command.split(" ") @@ -145,7 +145,7 @@ class Teacher: # intitialze fields after GET request """ Initializes a Teacher with the data from the api - :param data: api data + param data: api data """ self.git = data['git'] self.username = data['ion_user'] @@ -178,7 +178,7 @@ class Teacher: def checkClass(self, path): """ Checks if a directory is valid for creating a class - :param path: path to the new class directory + param path: path to the new class directory """ cname = path.split("/") cname = cname[len(cname) - 1] @@ -221,7 +221,7 @@ class Teacher: def checkInDB(self, path): """ Checks if "path" is in the database - :param path: path to directory + param path: path to directory """ n = path.split("/") n = n[len(n) - 1] @@ -234,7 +234,7 @@ class Teacher: def addClass(self, path): """ Creates a class from an existing directory, adding it to the proper git repository and the api - :param path: + param path: """ cname = path.split("/") cname = cname[len(cname) - 1] @@ -276,7 +276,7 @@ class Teacher: def makeClass(self, cname): """ Makes a class with its own new directory - :param cname: name of class + param cname: name of class """ # check if class exists path = self.username + "/" + cname @@ -314,7 +314,7 @@ class Teacher: def deleteClass(self, path): """ Deletes an existing class - :param path: class directory path + param path: class directory path """ if not os.path.exists(path): print(path + " does not exist locally.") @@ -348,8 +348,8 @@ class Teacher: def isStudent(self, student): """ Checks if the student exists - :param student: a student - :return: True if student exists, False otherwise + param student: a student + return: True if student exists, False otherwise """ r = requests.get(url="http://127.0.0.1:8000/api/students/" + student + "/", auth=(self.username, self.password)) @@ -360,9 +360,9 @@ class Teacher: def reqStudent(self, sname, cname): """ Request student informatiion from the api - :param sname: student's name - :param cname: class name - :return: True if successful + param sname: student's name + param cname: class name + return: True if successful """ if not self.isStudent(sname): print(sname + " does not exist.") @@ -406,9 +406,9 @@ class Teacher: def addStudent(self, sname, cname): """ Adds a student to a class - :param sname: student name - :param cname: class name - :return: + param sname: student name + param cname: class name + return: """ if not self.isStudent(sname): print(sname + " does not exist.") @@ -476,9 +476,9 @@ class Teacher: def reqAddStudentList(self, array, cname): """ Runs addStudent() on all students in array - :param array: an array of students - :param cname: class name - :return: students that have not confirmed the request + param array: an array of students + param cname: class name + return: students that have not confirmed the request """ unconf = [] for i in range(len(array)): @@ -492,10 +492,10 @@ class Teacher: def addAssignment(self, path, course, due): """ Creates an assignment for "course" that is due on "due" - :param path: directory of assignment - :param course: course name - :param due: due date - :return: False if unsuccessful + param path: directory of assignment + param course: course name + param due: due date + return: False if unsuccessful """ parts = path.split("/") aname = parts[len(parts) - 1] @@ -676,9 +676,9 @@ class Teacher: def getChanges(self, student, course, commits): """ Checks for new submissions by a student - :param student: the student - :param course: the course - :param commits: commits the CLI has made for the assignment + param student: the student + param course: the course + param commits: commits the CLI has made for the assignment """ course = getDB(self.username, self.password, "http://127.0.0.1:8000/api/classes/" + course + "/") ar = self.getCommits(student, course['name'], commits) @@ -735,7 +735,7 @@ class Teacher: def comment(self): """ The ultimate form of laughter - :return: pure joy + return: pure joy """ print("heheheh") diff --git a/SkoolOS/logs/skoolos_06162020-221844 b/SkoolOS/logs/skoolos_06162020-221844 new file mode 100644 index 0000000..2492ce9 --- /dev/null +++ b/SkoolOS/logs/skoolos_06162020-221844 @@ -0,0 +1,55 @@ +Start time: Tuesday, June 16, 2020 22:18:48 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/run.py +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Created file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html +Timestamp: Tuesday, June 16, 2020 22:18:48 + +wrote bgservice.run.html +Event: Wrote to a file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/test.py +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Created file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc.139630150929712 +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc.139630150929712 +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Wrote to a file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc.139630150929712 +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Moved a file out +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc.139630150929712 +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Moved a file in +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice/__pycache__/test.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Created file +Event Path: /home/nkenschaft/Sysadmin/skoolos/SkoolOS/logs/skoolos_06162020-221848 +Timestamp: Tuesday, June 16, 2020 22:18:48 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/SkoolOS/logs/skoolos_06162020-221848 +Timestamp: Tuesday, June 16, 2020 22:18:48 + diff --git a/SkoolOS/logs/skoolos_06162020-221848 b/SkoolOS/logs/skoolos_06162020-221848 new file mode 100644 index 0000000..550f87c --- /dev/null +++ b/SkoolOS/logs/skoolos_06162020-221848 @@ -0,0 +1,6452 @@ +Start time: Tuesday, June 16, 2020 22:18:52 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:53 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:54 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/d4d9743fdf94f6ad_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Moved a file out +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Moved a file in +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 +Timestamp: Tuesday, June 16, 2020 22:18:55 +Event: Moved a file out +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/6ae172a092d36423_0 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Moved a file in +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Deleted file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 +Timestamp: Tuesday, June 16, 2020 22:18:55 + + +Event: Deleted file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_6ae172a092d36423_0_1 +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:55 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:56 +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:56 + + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:56 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:58 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:18:59 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:00 + +problem in bgservice.test - KeyboardInterrupt: +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/docs +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/docs +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/docs +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/docs +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/env +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/env +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/env +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/env +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/__pycache__/skoolos.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/__pycache__/skoolos.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connectionpool.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connectionpool.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/six.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/six.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/wait.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/wait.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/ssl_.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/ssl_.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/url.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/url.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/timeout.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/timeout.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/retry.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/retry.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/_collections.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/_collections.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/filepost.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/filepost.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/fields.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/fields.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/queue.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/queue.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/poolmanager.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/poolmanager.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/socks.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/socks.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/common.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/common.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/parameters.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/parameters.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/signature.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/signature.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/request_validator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/request_validator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/errors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/errors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/request_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/request_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/authorization.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/authorization.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/access_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/resource.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/access_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/resource.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/signature_only.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/pre_configured.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/signature_only.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/pre_configured.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_session.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_session.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/authorization.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/authorization.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/errors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/errors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/introspect.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/metadata.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/introspect.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/metadata.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/revocation.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/revocation.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/authorization_code.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/authorization_code.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/uri_validate.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/uri_validate.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/request_validator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/request_validator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/implicit.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/implicit.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/resource_owner_password_credentials.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/client_credentials.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/resource_owner_password_credentials.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/refresh_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/client_credentials.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/refresh_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/resource.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/resource.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/pre_configured.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/pre_configured.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/tokens.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/tokens.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/parameters.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/parameters.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/signals.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/signals.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/web_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/web_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/mobile_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/mobile_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/legacy_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/legacy_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/backend_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/backend_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/service_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/service_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_session.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_session.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/desired_capabilities.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/desired_capabilities.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/command.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/command.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webelement.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webelement.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/by.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/by.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/keys.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/keys.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/getAttribute.js +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/getAttribute.js +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/isDisplayed.js +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/isDisplayed.js +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/errorhandler.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/errorhandler.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/switch_to.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/switch_to.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/alert.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/alert.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/mobile.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/mobile.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/file_detector.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/file_detector.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/application_cache.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/application_cache.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/extension_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/extension_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_binary.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_binary.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_profile.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_profile.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/proxy.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/proxy.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webelement.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webelement.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/ui.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/ui.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/select.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/select.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/wait.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/wait.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/action_chains.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/action_chains.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/action_builder.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/action_builder.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/interaction.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/interaction.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/input_device.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/input_device.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/mouse_button.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/mouse_button.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/touch_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/touch_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/serving.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/serving.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_compat.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_compat.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_internal.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_internal.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/urls.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/urls.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/core.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/core.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_compat.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_compat.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_unicodefun.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_unicodefun.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/globals.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/globals.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/formatting.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/formatting.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/parser.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/parser.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/termui.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/termui.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/types.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/types.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/decorators.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/decorators.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/test.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/test.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/datastructures.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/datastructures.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/filesystem.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/filesystem.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/http.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/http.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/accept.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/accept.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/formparser.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/formparser.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/wsgi.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/wsgi.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/common_descriptors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/common_descriptors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/etag.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/etag.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/cors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/cors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/user_agent.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/user_agent.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/useragents.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/useragents.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/interface.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/interface.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/__pycache__/six.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/__pycache__/six.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/auto_suggest.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/auto_suggest.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/wcwidth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/wcwidth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_wide.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_wide.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_zero.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_zero.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/version.json +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/version.json +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/cli.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/cli.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/enums.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/enums.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/vi_state.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/vi_state.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/cache.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/cache.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/types.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/types.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/selection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/selection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/in_memory.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/in_memory.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/completion.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/completion.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/document.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/document.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/history.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/history.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/search_state.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/search_state.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/validation.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/validation.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/basic.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/basic.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/keys.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/keys.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/containers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/containers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/controls.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/controls.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/mouse_events.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/mouse_events.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/lexers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/lexers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/processors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/processors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/reactive.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/reactive.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/screen.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/screen.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/dimension.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/dimension.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/margins.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/margins.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/renderer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/renderer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/mouse_handlers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/mouse_handlers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/output.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/output.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/defaults.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/defaults.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_dict.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_dict.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_pygments.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_pygments.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/style.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/style.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/plugin.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/plugin.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/util.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/util.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/default.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/default.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/named_commands.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/named_commands.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/completion.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/completion.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/registry.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/registry.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/input_processor.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/input_processor.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/emacs.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/emacs.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/scroll.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/scroll.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/vi.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/vi.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/digraphs.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/digraphs.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/defaults.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/defaults.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/callbacks.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/callbacks.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/shortcuts.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/shortcuts.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/menus.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/menus.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/prompt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/prompt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/toolbars.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/toolbars.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/lexer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/lexer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/filter.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/filter.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/filters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/filters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/regexopt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/regexopt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_output.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_output.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/modeline.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/modeline.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/prompt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/prompt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/list.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/list.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/manager.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/manager.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/separator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/separator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/common.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/common.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/confirm.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/confirm.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/password.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/password.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/checkbox.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/checkbox.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/rawlist.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/rawlist.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/expand.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/expand.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/editor.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/editor.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.py +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.py +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Wrote to a file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Wrote to a file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html +Timestamp: Tuesday, June 16, 2020 22:19:00 + +wrote skoolos.html +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 +Timestamp: Tuesday, June 16, 2020 22:19:00 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:01 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:02 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:03 +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:03 + + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:03 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:04 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:05 +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:05 + + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Created file +Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Created file +Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Created file +Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Created file +Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/discord/Cache/0471f929f1e2c9fb_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/discord/Cache/26b0da7b4d05faed_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Created file +Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Created file +Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 +Timestamp: Tuesday, June 16, 2020 22:19:05 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/discord/Cache/25dca3160ffd6e1e_0 +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:06 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:07 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:19:07 + diff --git a/SkoolOS/logs/skoolos_06162020-222011 b/SkoolOS/logs/skoolos_06162020-222011 new file mode 100644 index 0000000..608faeb --- /dev/null +++ b/SkoolOS/logs/skoolos_06162020-222011 @@ -0,0 +1,4352 @@ +Start time: Tuesday, June 16, 2020 22:20:13 + +Event: Created file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html +Timestamp: Tuesday, June 16, 2020 22:20:13 + +wrote bgservice.run.html +Event: Wrote to a file +Event Path: /home/nkenschaft/Sysadmin/skoolos/bgservice.run.html +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/chromedriver +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/docs +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/docs +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/eharris1 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/env +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/env +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/rushilwiz +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/__pycache__/skoolos.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connectionpool.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/packages/__pycache__/six.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/wait.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/ssl_.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/url.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/timeout.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/retry.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/_collections.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/filepost.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/fields.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/util/__pycache__/queue.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/__pycache__/poolmanager.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3/contrib/__pycache__/socks.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/common.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/parameters.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/signature.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/request_validator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/__pycache__/errors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/request_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/authorization.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/access_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/resource.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/signature_only.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth1/rfc5849/endpoints/__pycache__/pre_configured.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth1_session.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/authorization.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/errors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/introspect.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/metadata.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/revocation.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/authorization_code.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/uri_validate.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/request_validator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/implicit.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/resource_owner_password_credentials.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/client_credentials.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/refresh_token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/resource.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/endpoints/__pycache__/pre_configured.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/tokens.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/__pycache__/parameters.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/__pycache__/signals.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/web_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/mobile_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/legacy_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/backend_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib/oauth2/rfc6749/clients/__pycache__/service_application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib/__pycache__/oauth2_session.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/desired_capabilities.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/command.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/webelement.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/common/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/by.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/keys.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/getAttribute.js +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/isDisplayed.js +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/errorhandler.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/switch_to.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/alert.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/mobile.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/remote/__pycache__/file_detector.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5 +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/html5/__pycache__/application_cache.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/extension_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_binary.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/firefox_profile.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/proxy.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/firefox/__pycache__/webelement.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/chrome/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/ie/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/edge/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/opera/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/safari/__pycache__/remote_connection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/blackberry/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/ui.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/select.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/support/__pycache__/wait.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/phantomjs/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/android/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/webdriver.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/service.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/webkitgtk/__pycache__/options.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/action_chains.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/action_builder.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/interaction.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/key_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/input_device.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/mouse_button.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/actions/__pycache__/pointer_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium/webdriver/common/__pycache__/touch_actions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/serving.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_compat.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/_internal.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/urls.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/core.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_compat.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/_unicodefun.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/exceptions.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/globals.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/formatting.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/parser.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/termui.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/types.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click/__pycache__/decorators.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/test.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/datastructures.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/filesystem.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/http.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/accept.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/auth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/formparser.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/wsgi.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/base_response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/common_descriptors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/etag.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/request.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/cors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/user_agent.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/__pycache__/useragents.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/werkzeug/wrappers/__pycache__/response.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/interface.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/__pycache__/six.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/application.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/auto_suggest.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/wcwidth.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/yapf-0.30.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wrapt-1.12.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Werkzeug-1.0.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth-0.2.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/urllib3-1.25.9.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/sqlparse-0.3.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/six-1.15.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/selenium-3.141.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/requests_oauthlib-1.3.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/regex-2020.5.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pytz-2020.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyperclip-1.8.0-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pynvim-0.4.1-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pylint-2.5.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer-1.0.3-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyinotify-0.9.6-py3.8.egg-info/PKG-INFO +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Pygments-2.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pyclipper-1.1.0.post3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit-1.0.14.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/oauthlib-3.1.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/numpy-1.18.5.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/mccabe-0.6.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/lazy_object_proxy-1.4.3.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/isort-4.3.21.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/greenlet-0.4.16.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/djangorestframework-3.11.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/Django-3.0.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_oauth_toolkit-1.3.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_crispy_forms-1.9.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/django_cors_middleware-1.5.0.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/click-7.1.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/certifi-2020.4.5.1.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/astroid-2.4.2.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/asgiref-3.2.7.dist-info +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_wide.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/__pycache__/table_zero.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/wcwidth/version.json +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/cli.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/enums.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/vi_state.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/cache.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/types.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/filters/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/selection.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/clipboard/__pycache__/in_memory.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/completion.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/document.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/history.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/search_state.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/validation.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/buffer_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/basic.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/keys.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/containers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/controls.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/mouse_events.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/token.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/lexers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/processors.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/reactive.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/screen.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/dimension.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/margins.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/renderer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/mouse_handlers.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/output.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/defaults.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_dict.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/styles/__pycache__/from_pygments.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/style.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/plugin.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/util.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/styles/__pycache__/default.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/named_commands.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/completion.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/registry.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/input_processor.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/emacs.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/scroll.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/vi.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/digraphs.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/defaults.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/base.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/eventloop/__pycache__/callbacks.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/__pycache__/shortcuts.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/menus.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:13 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/prompt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/layout/__pycache__/toolbars.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/lexer.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/filter.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/filters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/regexopt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/terminal/__pycache__/vt100_output.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/utils.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/lexers/__pycache__/_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/__pycache__/modeline.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/pygments/formatters/__pycache__/_mapping.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/prompt.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/__init__.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/list.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/prompt_toolkit/key_binding/__pycache__/manager.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/__pycache__/separator.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/common.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/confirm.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/input.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/password.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/checkbox.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/rawlist.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/expand.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages/PyInquirer/prompts/__pycache__/editor.cpython-38.pyc +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.py +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Created file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html +Timestamp: Tuesday, June 16, 2020 22:20:14 + +wrote skoolos.html +Event: Wrote to a file +Event Path: /home/nkenschaft/Sysadmin/skoolos/skoolos.html +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/Sysadmin/skoolos/sstern1 +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:14 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Cookies-journal +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:15 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:16 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:17 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:18 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:18 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:18 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:18 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:18 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:18 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:19 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:20 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:21 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:22 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:23 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:24 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:25 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:26 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:27 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Network Action Predictor-journal +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/05948b8e1bbcfa9b_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/05948b8e1bbcfa9b_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/05948b8e1bbcfa9b_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/a2af0a74ac00da17_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/435bea09f3fc7c08_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/cb3090f86ae511a5_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/6a8f9287d9f02656_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/a2af0a74ac00da17_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/2d1d7ad0db168fa0_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/435bea09f3fc7c08_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/7c07a3817a7e00b1_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/cb3090f86ae511a5_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/52240efdbde06a1c_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/6a8f9287d9f02656_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/9d7a4f5e80410c52_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/2d1d7ad0db168fa0_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/7c07a3817a7e00b1_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c4834e66e88c988a_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/f433aaae5c4fe52d_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/cb54c95eaf74ea81_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/096c00ab306c3bdd_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/52240efdbde06a1c_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/12c2900e7638b9db_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/2ba37d7df687aeb1_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/9d7a4f5e80410c52_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a7c29e607589e31b_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/096c00ab306c3bdd_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/12c2900e7638b9db_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c4834e66e88c988a_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/cb54c95eaf74ea81_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/f433aaae5c4fe52d_0 +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Network Action Predictor-journal +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Network Action Predictor-journal +Timestamp: Tuesday, June 16, 2020 22:20:28 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/2ba37d7df687aeb1_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a7c29e607589e31b_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a2af74e4706fbd24_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a2af74e4706fbd24_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Network Action Predictor-journal +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/390e083c2839df39_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/390e083c2839df39_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0a446fad2a1eaaa0_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0a446fad2a1eaaa0_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0cd5a31285ad956d_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0cd5a31285ad956d_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b57bd28f5b3098fc_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b57bd28f5b3098fc_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0a446fad2a1eaaa0_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e525d9c611a0c1fe_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e525d9c611a0c1fe_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e15658981a2d3018_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e15658981a2d3018_0 +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:29 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/4fa4c7b63bce7d9c_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/4fa4c7b63bce7d9c_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/4fa4c7b63bce7d9c_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0cd5a31285ad956d_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Extensions/hdokiejnpimakedhajhdlcegeplioahd/4.49.0.3_0/icon2.png +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Extensions/hdokiejnpimakedhajhdlcegeplioahd/4.49.0.3_0/icon2_2x.png +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/42ab56d467a07f6a_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/42ab56d467a07f6a_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/42ab56d467a07f6a_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.local/share/fonts/3270Medium.ttf +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/363d4ea367fd57d4_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/363d4ea367fd57d4_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c00356eddaf6c6f7_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/40bc73561fb6e32e_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/40bc73561fb6e32e_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/49eae51421567809_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ee745d868505b427_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e0d24440cd5ad5a4_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/69c8b15791443df3_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/69c8b15791443df3_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c00356eddaf6c6f7_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/49eae51421567809_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ee745d868505b427_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e0d24440cd5ad5a4_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/40bc73561fb6e32e_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/69c8b15791443df3_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.config/discord/tray-unread.png +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/5478bf006fcfece0_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/5478bf006fcfece0_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/5478bf006fcfece0_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/8eab70ead1f0cf46_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/8eab70ead1f0cf46_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/8eab70ead1f0cf46_0 +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:30 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/238dc390af8bc0d7_0 +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/238dc390af8bc0d7_0 +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/238dc390af8bc0d7_0 +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Created file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Moved a file out +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/.org.chromium.Chromium.X9K4yR +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Moved a file in +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Local State +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:31 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/9cbe424460ad9eef_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/9cbe424460ad9eef_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3dfdc4e22d2583ff_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3dfdc4e22d2583ff_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/9cbe424460ad9eef_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3dfdc4e22d2583ff_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/5738cc1400b2aa35_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/5738cc1400b2aa35_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/be0e3cea605a0958_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/be0e3cea605a0958_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b57bd28f5b3098fc_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b57bd28f5b3098fc_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/5738cc1400b2aa35_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e525d9c611a0c1fe_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/e525d9c611a0c1fe_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ff8dc3248d4842c1_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ff8dc3248d4842c1_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ff8dc3248d4842c1_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/be0e3cea605a0958_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/f087bbfad7bbe9ed_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/f087bbfad7bbe9ed_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/f087bbfad7bbe9ed_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/363d4ea367fd57d4_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/363d4ea367fd57d4_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c00356eddaf6c6f7_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/bd48bf9e17e30697_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/bd48bf9e17e30697_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/bd48bf9e17e30697_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ba6e548b5340f9b2_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ba6e548b5340f9b2_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0f6fa61c744ef5ae_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0f6fa61c744ef5ae_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/22e91b159dd4af8b_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/22e91b159dd4af8b_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0dd22180e0b6c8da_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0dd22180e0b6c8da_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/c00356eddaf6c6f7_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/9e850d1e72e0d9de_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/9e850d1e72e0d9de_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a1f9c2fa3c329ea9_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/20b36a2112c940c9_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/2dc893ceb65f3f87_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/a1f9c2fa3c329ea9_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/2dc893ceb65f3f87_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/20b36a2112c940c9_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/2e327219389cbede_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/2e327219389cbede_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Code Cache/js/2e327219389cbede_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0dd22180e0b6c8da_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b0e7dede16083f40_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b0e7dede16083f40_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/b0e7dede16083f40_0 +Timestamp: Tuesday, June 16, 2020 22:20:32 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ba6e548b5340f9b2_0 +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/0f6fa61c744ef5ae_0 +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/22e91b159dd4af8b_0 +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Extensions/hdokiejnpimakedhajhdlcegeplioahd/4.49.0.3_0/icon2.png +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.config/BraveSoftware/Brave-Browser/Default/Extensions/hdokiejnpimakedhajhdlcegeplioahd/4.49.0.3_0/icon2_2x.png +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ccaa7620d40c9e4e_0 +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ccaa7620d40c9e4e_0 +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/ccaa7620d40c9e4e_0 +Timestamp: Tuesday, June 16, 2020 22:20:33 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:34 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:35 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:36 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3e7e8f8b8f2d4c7a_0 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3e7e8f8b8f2d4c7a_0 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/3e7e8f8b8f2d4c7a_0 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Created file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/1de9a8455f72e8db_0 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/1de9a8455f72e8db_0 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Moved a file out +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/1de9a8455f72e8db_0 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Moved a file in +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_1de9a8455f72e8db_0_1 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Deleted file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_1de9a8455f72e8db_0_1 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Wrote to a file +Event Path: /home/nkenschaft/.cache/BraveSoftware/Brave-Browser/Default/Cache/todelete_1de9a8455f72e8db_0_1 +Timestamp: Tuesday, June 16, 2020 22:20:37 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/.local/lib/python3.8/site-packages +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/.config/pulse/cookie +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/memusage +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/swapusage +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/cpuload +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/scripts/diskused +Timestamp: Tuesday, June 16, 2020 22:20:38 + +Event: Opened file +Event Path: /home/nkenschaft/.Xauthority +Timestamp: Tuesday, June 16, 2020 22:20:38 + diff --git a/bgservice.bgservice.html b/bgservice.bgservice.html new file mode 100644 index 0000000..e422f56 --- /dev/null +++ b/bgservice.bgservice.html @@ -0,0 +1,187 @@ + +Python: module bgservice.bgservice + + + + + +
 
+ 
bgservice.bgservice
index
/home/nkenschaft/Sysadmin/skoolos/bgservice/bgservice.py
+

A simple background service to log events in a directory,
+check for git commands in bash/zsh history,
+and check for non-whitelisted files in the watched directory.

+

+ + + + + +
 
+Modules
       
bgservice.checker
+os
+
pyinotify
+sys
+
time
+

+ + + + + +
 
+Classes
       
+
pyinotify.ProcessEvent(pyinotify._ProcessEvent) +
+
+
EventHandler +
+
+
+

+ + + + + + + +
 
+class EventHandler(pyinotify.ProcessEvent)
   EventHandler(pevent=None, **kargs)

+Custom event handler for watching a SkoolOS work directory
 
 
Method resolution order:
+
EventHandler
+
pyinotify.ProcessEvent
+
pyinotify._ProcessEvent
+
builtins.object
+
+
+Methods defined here:
+
process_IN_CLOSE_WRITE(self, event)
Generates an output to record for IN_CLOSE_WRITE events
+param event: event automatically passed to function
+return: none
+ +
process_IN_CREATE(self, event)
Generates an output to record for IN_CREATE events
+param event: event automatically passed to function
+return: none
+ +
process_IN_DELETE(self, event)
Generates an output to record for IN_DELETE events
+param event: event automatically passed to function
+return: none
+ +
process_IN_MOVED_FROM(self, event)
Generates an output to record for IN_MOVED_FROM events
+param event: event automatically passed to function
+return: none
+ +
process_IN_MOVED_TO(self, event)
Generates an output to record for IN_MOVED_TO events
+param event: event automatically passed to function
+return: none
+ +
process_IN_OPEN(self, event)
Generates an output to record for IN_OPEN events
+param event: event automatically passed to function
+return: none
+ +
+Methods inherited from pyinotify.ProcessEvent:
+
__call__(self, event)
To behave like a functor the object must be callable.
+This method is a dispatch method. Its lookup order is:
+  1. process_MASKNAME method
+  2. process_FAMILY_NAME method
+  3. otherwise calls process_default

+@param event: Event to be processed.
+@type event: Event object
+@return: By convention when used from the ProcessEvent class:
+         - Returning False or None (default value) means keep on
+         executing next chained functors (see chain.py example).
+         - Returning True instead means do not execute next
+           processing functions.
+@rtype: bool
+@raise ProcessEventError: Event object undispatchable,
+                          unknown event.
+ +
__init__(self, pevent=None, **kargs)
Enable chaining of ProcessEvent instances.

+@param pevent: Optional callable object, will be called on event
+               processing (before self).
+@type pevent: callable
+@param kargs: This constructor is implemented as a template method
+              delegating its optionals keyworded arguments to the
+              method my_init().
+@type kargs: dict
+ +
my_init(self, **kargs)
This method is called from ProcessEvent.__init__(). This method is
+empty here and must be redefined to be useful. In effect, if you
+need to specifically initialize your subclass' instance then you
+just have to override this method in your subclass. Then all the
+keyworded arguments passed to ProcessEvent.__init__() will be
+transmitted as parameters to this method. Beware you MUST pass
+keyword arguments though.

+@param kargs: optional delegated arguments from __init__().
+@type kargs: dict
+ +
nested_pevent(self)
+ +
process_IN_Q_OVERFLOW(self, event)
By default this method only reports warning messages, you can overredide
+it by subclassing ProcessEvent and implement your own
+process_IN_Q_OVERFLOW method. The actions you can take on receiving this
+event is either to update the variable max_queued_events in order to
+handle more simultaneous events or to modify your code in order to
+accomplish a better filtering diminishing the number of raised events.
+Because this method is defined, IN_Q_OVERFLOW will never get
+transmitted as arguments to process_default calls.

+@param event: IN_Q_OVERFLOW event.
+@type event: dict
+ +
process_default(self, event)
Default processing event method. By default does nothing. Subclass
+ProcessEvent and redefine this method in order to modify its behavior.

+@param event: Event to be processed. Can be of any type of events but
+              IN_Q_OVERFLOW events (see method process_IN_Q_OVERFLOW).
+@type event: Event instance
+ +
+Data and other attributes inherited from pyinotify.ProcessEvent:
+
pevent = None
+ +
+Methods inherited from pyinotify._ProcessEvent:
+
__repr__(self)
Return repr(self).
+ +
+Data descriptors inherited from pyinotify._ProcessEvent:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+

+ + + + + +
 
+Functions
       
stop_watching()
Stops the watch started by watch_dir()
+return: none
+
watch_dir(watched_dir='/home/nkenschaft', log_dir='SkoolOS/logs')
Watches the specified directory for changes and outputs it in
+human readable format to a log file in the specified log directory.
+param watched_dir: directory to watch for changes
+param log_dir: directory to store log files
+return: none
+

+ + + + + +
 
+Data
       DIR = None
+NOTIFIER = None
+START_TIME = None
+STDOUT = <_io.TextIOWrapper name='<stdout>' mode='w' encoding='utf-8'>
+ \ No newline at end of file diff --git a/bgservice.checker.html b/bgservice.checker.html new file mode 100644 index 0000000..1fa7c36 --- /dev/null +++ b/bgservice.checker.html @@ -0,0 +1,44 @@ + +Python: module bgservice.checker + + + + + +
 
+ 
bgservice.checker
index
/home/nkenschaft/Sysadmin/skoolos/bgservice/checker.py
+

+

+ + + + + +
 
+Modules
       
os
+

+ + + + + +
 
+Functions
       
file_check(dir_)
Checks specified dir_ for non-whitelisted files using verify_file()
+param dir_: directory to check
+return: list of suspicious files
+
shell_check()
Check .bash_history and .histfile for git commands that could interfere with SkoolOS
+return: results of the check
+
verify_file(file_)
Check if the file name has an extension in the list of whitelisted file exentsions
+param file_: path to file
+return: whether or not the file's extension is whitelisted
+

+ + + + + +
 
+Data
       file_whitelist = ['.doc', '.docx', '.odt', '.pdf', '.rtf', '.tex', '.txt', '.wpd', '.3g2', '.3gp', '.avi', '.flv', '.h264', '.m4v', '.mkv', '.mov', '.mp4', '.mpg', '.mpeg', '.rm', ...]
+ \ No newline at end of file diff --git a/bgservice.html b/bgservice.html new file mode 100644 index 0000000..98a850e --- /dev/null +++ b/bgservice.html @@ -0,0 +1,23 @@ + +Python: package bgservice + + + + + +
 
+ 
bgservice
index
/home/nkenschaft/Sysadmin/skoolos/bgservice/__init__.py
+

+

+ + + + + +
 
+Package Contents
       
bgservice
+
checker
+
+ \ No newline at end of file diff --git a/bgservice/bgservice.py b/bgservice/bgservice.py index 3c3e635..34ae4f3 100644 --- a/bgservice/bgservice.py +++ b/bgservice/bgservice.py @@ -7,11 +7,14 @@ import time import sys import os import pyinotify -import checker +from . import checker from pathlib import Path class EventHandler(pyinotify.ProcessEvent): + """ + Custom event handler for watching a SkoolOS work directory + """ _methods = [ "IN_CREATE", "IN_CLOSE_WRITE", @@ -24,8 +27,8 @@ class EventHandler(pyinotify.ProcessEvent): def process_IN_CREATE(self, event): """ Generates an output to record for IN_CREATE events - :param event: event automatically passed to function - :return: none + param event: event automatically passed to function + return: none """ description = \ "Event: Created file\n" \ @@ -39,8 +42,8 @@ class EventHandler(pyinotify.ProcessEvent): def process_IN_CLOSE_WRITE(self, event): """ Generates an output to record for IN_CLOSE_WRITE events - :param event: event automatically passed to function - :return: none + param event: event automatically passed to function + return: none """ description = \ "Event: Wrote to a file\n" \ @@ -54,8 +57,8 @@ class EventHandler(pyinotify.ProcessEvent): def process_IN_DELETE(self, event): """ Generates an output to record for IN_DELETE events - :param event: event automatically passed to function - :return: none + param event: event automatically passed to function + return: none """ description = \ "Event: Deleted file\n" \ @@ -69,8 +72,8 @@ class EventHandler(pyinotify.ProcessEvent): def process_IN_MOVED_TO(self, event): """ Generates an output to record for IN_MOVED_TO events - :param event: event automatically passed to function - :return: none + param event: event automatically passed to function + return: none """ description = \ "Event: Moved a file in\n" \ @@ -84,8 +87,8 @@ class EventHandler(pyinotify.ProcessEvent): def process_IN_MOVED_FROM(self, event): """ Generates an output to record for IN_MOVED_FROM events - :param event: event automatically passed to function - :return: none + param event: event automatically passed to function + return: none """ description = \ "Event: Moved a file out\n" \ @@ -99,8 +102,8 @@ class EventHandler(pyinotify.ProcessEvent): def process_IN_OPEN(self, event): """ Generates an output to record for IN_OPEN events - :param event: event automatically passed to function - :return: none + param event: event automatically passed to function + return: none """ description = \ "Event: Opened file\n" \ @@ -122,9 +125,9 @@ def watch_dir(watched_dir=str(Path.home()), log_dir="SkoolOS/logs"): """ Watches the specified directory for changes and outputs it in human readable format to a log file in the specified log directory. - :param watched_dir: directory to watch for changes - :param log_dir: directory to store log files - :return: none + param watched_dir: directory to watch for changes + param log_dir: directory to store log files + return: none """ global DIR global START_TIME @@ -152,7 +155,7 @@ def watch_dir(watched_dir=str(Path.home()), log_dir="SkoolOS/logs"): def stop_watching(): """ Stops the watch started by watch_dir() - :return: none + return: none """ NOTIFIER.stop() now = time.time() diff --git a/bgservice/bgservice.sh b/bgservice/bgservice.sh deleted file mode 100755 index 9d43de7..0000000 --- a/bgservice/bgservice.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -python3 bgservice.py diff --git a/bgservice/checker.py b/bgservice/checker.py index 58b3874..9f8941f 100644 --- a/bgservice/checker.py +++ b/bgservice/checker.py @@ -70,7 +70,7 @@ file_whitelist = [ def shell_check(): """ Check .bash_history and .histfile for git commands that could interfere with SkoolOS - :return: results of the check + return: results of the check """ bash_history = [ line.strip() @@ -93,8 +93,8 @@ def shell_check(): def verify_file(file_): """ Check if the file name has an extension in the list of whitelisted file exentsions - :param file_: path to file - :return: whether or not the file's extension is whitelisted + param file_: path to file + return: whether or not the file's extension is whitelisted """ for ext in file_whitelist: if len(file_) > len(ext): @@ -106,8 +106,8 @@ def verify_file(file_): def file_check(dir_): """ Checks specified dir_ for non-whitelisted files using verify_file() - :param dir_: directory to check - :return: list of suspicious files + param dir_: directory to check + return: list of suspicious files """ files = glob(dir_ + "/**/*", recursive=True) suspicious_files = [] diff --git a/bgservice/run.py b/bgservice/run.py deleted file mode 100644 index 8070cd3..0000000 --- a/bgservice/run.py +++ /dev/null @@ -1,2 +0,0 @@ -import bgservice as bg -bg.watch_dir() diff --git a/bgservice/test.py b/bgservice/test.py deleted file mode 100644 index 9c7cad0..0000000 --- a/bgservice/test.py +++ /dev/null @@ -1,4 +0,0 @@ -import bgservice as bg -bg.watch_dir() -input() -bg.stop_watching() diff --git a/skoolos.html b/skoolos.html new file mode 100644 index 0000000..677dfd5 --- /dev/null +++ b/skoolos.html @@ -0,0 +1,112 @@ + +Python: module skoolos + + + + + +
 
+ 
skoolos
index
/home/nkenschaft/Sysadmin/skoolos/skoolos.py
+

The main program file for SkoolOS

+

+ + + + + +
 
+Modules
       
argparse
+datetime
+http
+
json
+os
+pprint
+
requests
+socketserver
+sys
+
time
+webbrowser
+selenium.webdriver
+

+ + + + + +
 
+Functions
       
addAssignmentTeacher(teacher, course)
+
addStudentsTeacher(teacher, course)
+
authenticate()
Authenticates the user via Ion OAuth
+
chooseClassStudent(student)
Chooses a class for a student to view and work on
+param student: a student
+return: a course prompt
+
chooseGeneralTeacher(teacher)
+
classOptionsStudent(student, course)
Allows students to choose what they want to do related to a class
+The student can save, exit, or go back
+param student: a student
+param course: a course
+return: True if exiting, False if going back
+
classOptionsTeacher(teacher, course)
+
create_server()
Creates a simple HTTP server for creating api requests from the CLI
+
delDB(USER, PWD, url)
Sends a DELETE request to url
+param USER: username
+param PWD: password
+param url: URL for request
+return: json request response
+
getDB(USER, PWD, url)
Sends a GET request to url
+param USER: username
+param PWD: password
+param url: URL for request
+return: json request response
+
getUser(ion_user, password, utype)
Returns user information
+param ion_user: user
+param password: user's password
+param utype: type of user (student or teacher
+return: api user information
+
main()
The Command Line Interface (CLI) for SkoolOS
+Serves to allow both teachers and students to access the majority of the features of SkoolOS
+
makeClassTeacher(teacher)
+
makePass()
Prompts the user to create a password
+return: the password
+
patchDB(USER, PWD, url, data)
Sends a PATCH request to url
+param USER: username
+param PWD: password
+param url: URL for request
+param data: data to request
+return: json request response
+
postDB(USER, PWD, url, data)
Sends a POST request to url
+param USER: username
+param PWD: password
+param url: URL for request
+param data: data to request
+return: json request response
+
putDB(USER, PWD, url, data)
Sends a PUT request to url
+param USER: username
+param PWD: password
+param url: URL for request
+param data: data to request
+return: json request response
+
studentCLI(user, password)
The CLI for students to access
+param user: student username
+param password: student password
+
teacherCLI(user, password)
The CLI for teachers to access
+param user: teachers username
+param password: teachers password
+
viewStudentsTeacher(teacher, course)
+

+ + + + + +
 
+Data
       PWD = ''
+USER = ''
+client_id = 'QeZPBSKqdvWFfBv1VYTSv9iFGz5T9pVJtNUjbEr6'
+client_secret = '0Wl3hAIGY9SvYOqTOLUiLNYa4OlCgZYdno9ZbcgCT7RGQ8x2...mOADHIv5fHxaa7GqFNtQr11HX9ySTw3DscKsphCVi5P71mlGY'
+redirect_uri = 'http://localhost:8000/callback/'
+scope = ['read']
+token_url = 'https://ion.tjhsst.edu/oauth/token/'
+ \ No newline at end of file diff --git a/skoolos.py b/skoolos.py index 8778d79..10962e2 100644 --- a/skoolos.py +++ b/skoolos.py @@ -50,7 +50,9 @@ def main(): URL = "http://127.0.0.1:8000/api/" r = requests.get(url=URL) except: - print("Run Django server on http://127.0.0.1:8000/ before continuing") + print( + "Run Django server on http://127.0.0.1:8000/ before continuing" + ) sys.exit(0) input("Welcome to SkoolOS. Press any key to create an account") @@ -94,11 +96,12 @@ def main(): #################################################################################################### STUDENT METHODS + def studentCLI(user, password): """ The CLI for students to access - @param user: student username - @param password: student password + param user: student username + param password: student password """ from CLI import student data = getUser(user, password, 'student') @@ -116,8 +119,8 @@ def studentCLI(user, password): def chooseClassStudent(student): """ Chooses a class for a student to view and work on - @param student: a student - :return: a course prompt + param student: a student + return: a course prompt """ carray = student.sclass.split(",") if len(carray) == 1 and carray[0] == "": @@ -142,13 +145,13 @@ def classOptionsStudent(student, course): """ Allows students to choose what they want to do related to a class The student can save, exit, or go back - @param student: a student - @param course: a course - :return: True if exiting, False if going back + param student: a student + param course: a course + return: True if exiting, False if going back """ student.viewClass(course) - student.getAssignments(course, 100) - choices = ["Save","Submit assignment","Back","Exit SkoolOS"] + student.getAssignments(course, 100) + choices = ["Save", "Submit assignment", "Back", "Exit SkoolOS"] options = [ { 'type': 'list', @@ -170,29 +173,30 @@ def classOptionsStudent(student, course): student.exitCLI() # exit cli return True - if(option == "Submit assignment"): + if (option == "Submit assignment"): assignments = os.listdir(student.username) tlist = [] b = True for a in assignments: - oname = a + "_" + course + oname = a + "_" + course a = student.username + "/" + a - if(os.path.isdir(a) and not "." in a and not oname in student.completed): + if (os.path.isdir(a) and not "." in a + and not oname in student.completed): tlist.append(a) assignments = tlist assignments.append("Back") print(assignments) - + options = [ - { - 'type': 'list', - 'name': 'submit', - 'choices':assignments, - 'message': 'Select: ', - }, + { + 'type': 'list', + 'name': 'submit', + 'choices': assignments, + 'message': 'Select: ', + }, ] ass = prompt(options)['submit'] - if(ass == "Back"): + if (ass == "Back"): return False else: student.submit(course, ass) @@ -203,8 +207,8 @@ def classOptionsStudent(student, course): def teacherCLI(user, password): """ The CLI for teachers to access - @param user: teachers username - @param password: teachers password + param user: teachers username + param password: teachers password """ from CLI import teacher data = getUser(user, password, 'teacher') @@ -278,7 +282,10 @@ def makeClassTeacher(teacher): cname = prompt(questions)['cname'] teacher.makeClass(cname) - soption = ["1) Add individual student", "2) Add list of students through path", "3) Exit"] + soption = [ + "1) Add individual student", "2) Add list of students through path", + "3) Exit" + ] questions = [ { 'type': 'list', @@ -307,10 +314,15 @@ def makeClassTeacher(teacher): def classOptionsTeacher(teacher, course): print("Class: " + course) - unconf = getDB(teacher.username, teacher.password, "http://localhost:8000/api/classes/" + course)['unconfirmed'] + unconf = getDB(teacher.username, teacher.password, + "http://localhost:8000/api/classes/" + + course)['unconfirmed'] for s in unconf: teacher.addStudent(s, course) - options = ['1) Request Student', "2) Add assignment", "3) View student information", "4) Exit"] + options = [ + '1) Request Student', "2) Add assignment", + "3) View student information", "4) Exit" + ] questions = [ { 'type': 'list', @@ -324,7 +336,10 @@ def classOptionsTeacher(teacher, course): def addStudentsTeacher(teacher, course): - soption = ["1) Add individual student", "2) Add list of students through path", "3) Exit"] + soption = [ + "1) Add individual student", "2) Add list of students through path", + "3) Exit" + ] questions = [ { 'type': 'list', @@ -369,7 +384,8 @@ def addStudentsTeacher(teacher, course): def addAssignmentTeacher(teacher, course): nlist = os.listdir(teacher.username + "/" + course) - alist = getDB(teacher.username, teacher.password, "http://localhost:8000/api/classes/" + course)['assignments'] + alist = getDB(teacher.username, teacher.password, + "http://localhost:8000/api/classes/" + course)['assignments'] print(nlist) tlist = [] b = True @@ -388,8 +404,8 @@ def addAssignmentTeacher(teacher, course): nlist = tlist if len(nlist) == 0: print("No new assignments found") - print( - "To make an assignment: make a subdirectory in the " + course + " folder. Add a file within the new folder") + print("To make an assignment: make a subdirectory in the " + course + + " folder. Add a file within the new folder") return False questions = [ { @@ -419,7 +435,8 @@ def addAssignmentTeacher(teacher, course): def viewStudentsTeacher(teacher, course): - data = getDB(teacher.username, teacher.password, "http://127.0.0.1:8000/api/classes/" + course) + data = getDB(teacher.username, teacher.password, + "http://127.0.0.1:8000/api/classes/" + course) students = data["confirmed"] unconf = data['unconfirmed'] print("Studented in class: ") @@ -429,23 +446,25 @@ def viewStudentsTeacher(teacher, course): for s in unconf: print(s) student = input("View student (Enter student's ion username): ") - while((not student in str(data['confirmed'])) and (not student in str(data['unconfirmed']))): + while ((not student in str(data['confirmed'])) + and (not student in str(data['unconfirmed']))): print("Student not affiliated with class") student = input("View student ('N' to exit): ") if student == 'N': return False - sinfo = getDB(teacher.username, teacher.password, "http://127.0.0.1:8000/api/students/" + student + "/") + sinfo = getDB(teacher.username, teacher.password, + "http://127.0.0.1:8000/api/students/" + student + "/") pprint.pprint(sinfo) print("Confirmed: " + str(student in str(data['confirmed']))) - if(student in str(data['confirmed'])): + if (student in str(data['confirmed'])): path = teacher.username + "/Students/" + course + "/" + student print(student + "'s work: " + path) fin = sinfo['completed'].split(",") alist = [] for f in fin: - if(course in f): + if (course in f): late = teacher.afterSubmit(course, f, student) - if(late): + if (late): s = f.split("_")[0] + " (LATE)" else: s = f.split("_")[0] @@ -454,16 +473,17 @@ def viewStudentsTeacher(teacher, course): #put log stuff + ############################################################################################################################################ def getUser(ion_user, password, utype): """ Returns user information - @param ion_user: user - @param password: user's password - @param utype: type of user (student or teacher - :return: api user information + param ion_user: user + param password: user's password + param utype: type of user (student or teacher + return: api user information """ if 'student' in utype: URL = "http://127.0.0.1:8000/api/students/" + ion_user + "/" @@ -490,11 +510,11 @@ def getUser(ion_user, password, utype): def patchDB(USER, PWD, url, data): """ Sends a PATCH request to url - @param USER: username - @param PWD: password - @param url: URL for request - @param data: data to request - :return: json request response + param USER: username + param PWD: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.patch(url=url, data=data, auth=(USER, PWD)) print("PATH:" + str(r.status_code)) @@ -504,10 +524,10 @@ def patchDB(USER, PWD, url, data): def getDB(USER, PWD, url): """ Sends a GET request to url - @param USER: username - @param PWD: password - @param url: URL for request - :return: json request response + param USER: username + param PWD: password + param url: URL for request + return: json request response """ r = requests.get(url=url, auth=(USER, PWD)) print("GET:" + str(r.status_code)) @@ -517,11 +537,11 @@ def getDB(USER, PWD, url): def postDB(USER, PWD, url, data): """ Sends a POST request to url - @param USER: username - @param PWD: password - @param url: URL for request - @param data: data to request - :return: json request response + param USER: username + param PWD: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.post(url=url, data=data, auth=(USER, PWD)) print("POST:" + str(r.status_code)) @@ -531,11 +551,11 @@ def postDB(USER, PWD, url, data): def putDB(USER, PWD, url, data): """ Sends a PUT request to url - @param USER: username - @param PWD: password - @param url: URL for request - @param data: data to request - :return: json request response + param USER: username + param PWD: password + param url: URL for request + param data: data to request + return: json request response """ r = requests.put(url=url, data=data, auth=(USER, PWD)) print("PUT:" + str(r.status_code)) @@ -545,10 +565,10 @@ def putDB(USER, PWD, url, data): def delDB(USER, PWD, url): """ Sends a DELETE request to url - @param USER: username - @param PWD: password - @param url: URL for request - :return: json request response + param USER: username + param PWD: password + param url: URL for request + return: json request response """ r = requests.delete(url=url, auth=(USER, PWD)) print("DELETE:" + str(r.status_code)) @@ -558,7 +578,7 @@ def delDB(USER, PWD, url): def makePass(): """ Prompts the user to create a password - :return: the password + return: the password """ questions = [ { @@ -591,8 +611,11 @@ def authenticate(): """ Authenticates the user via Ion OAuth """ - oauth = OAuth2Session(client_id=client_id, redirect_uri=redirect_uri, scope=scope) - authorization_url, state = oauth.authorization_url("https://ion.tjhsst.edu/oauth/authorize/") + oauth = OAuth2Session(client_id=client_id, + redirect_uri=redirect_uri, + scope=scope) + authorization_url, state = oauth.authorization_url( + "https://ion.tjhsst.edu/oauth/authorize/") import os cdir = os.getcwd() # Linux: chromdriver-linux @@ -603,14 +626,14 @@ def authenticate(): print("Linux") system = input("Enter OS: ") - while(system.lower() != "linux" and system.lower() != "macos"): + while (system.lower() != "linux" and system.lower() != "macos"): print("Not valid OS") system = input("Enter OS: ") - if(system.lower() == 'macos'): + if (system.lower() == 'macos'): path = os.path.join(os.getcwd(), 'chromedriver', 'chromedriver-mac') - if(system.lower() == 'linux'): + if (system.lower() == 'linux'): path = os.path.join(os.getcwd(), 'chromedriver', 'chromedriver-linux') - + browser = webdriver.Chrome(path) browser.get("localhost:8000/login") @@ -621,11 +644,13 @@ def authenticate(): url = browser.current_url gets = url_decode(url.replace("http://localhost:8000/login/?", "")) while "http://localhost:8000/login/?username=" not in browser.current_url and ( - not browser.current_url == "http://localhost:8000/"): # http://localhost:8000/ + not browser.current_url + == "http://localhost:8000/"): # http://localhost:8000/ time.sleep(0.25) url = browser.current_url - gets = url_decode(url.replace("http://localhost:8000/login/?username=", "")) + gets = url_decode(url.replace("http://localhost:8000/login/?username=", + "")) # code = gets.get("code") # if state == gets.get("state"): # state = gets.get("state") @@ -654,12 +679,15 @@ def authenticate(): pwd = data['pwd'] user = data['username'] print(r.status_code) - r = requests.get(url="http://localhost:8000/api/students/" + user + "/", auth=(user, pwd)) + r = requests.get(url="http://localhost:8000/api/students/" + user + "/", + auth=(user, pwd)) is_student = False if r.status_code == 200: is_student = True print("Welcome, student " + user) - r = requests.get(url="http://localhost:8000/api/students/" + user + "/", auth=(user, pwd)) + r = requests.get(url="http://localhost:8000/api/students/" + user + + "/", + auth=(user, pwd)) profile = r.json() username = profile['ion_user'] grade = profile['grade'] @@ -676,7 +704,9 @@ def authenticate(): else: print("Welcome, teacher " + user) - r = requests.get(url="http://localhost:8000/api/teachers/" + user + "/", auth=(user, pwd)) + r = requests.get(url="http://localhost:8000/api/teachers/" + user + + "/", + auth=(user, pwd)) profile = r.json() username = profile['ion_user'] profile = { From 030bbc0c1e6828d2c0e0cf61b088e888234560b3 Mon Sep 17 00:00:00 2001 From: Nathaniel Kenschaft Date: Tue, 16 Jun 2020 22:49:24 -0400 Subject: [PATCH 06/20] fixed code blocks --- docs/source/cli.rst | 139 +++++++++++++++++++++----------------------- 1 file changed, 65 insertions(+), 74 deletions(-) diff --git a/docs/source/cli.rst b/docs/source/cli.rst index db5c303..18b0990 100644 --- a/docs/source/cli.rst +++ b/docs/source/cli.rst @@ -17,23 +17,22 @@ Enter the valid SkoolOS username and password. Congratialations, you have succes 1. CLI as a teacher: ============ -Start the CLI and select your username. For instance, teacher 'eharris1' - -.. code-block:: python +Start the CLI and select your username. For instance, teacher 'eharris1':: + python skoolos.py ? Select User: (Use arrow keys) 1) 2022rkhondak ❯ 2) eharris1 3) Make new user -You will then be given the choice to select an existing class, Make a new class, or exit the CLI: +You will then be given the choice to select an existing class, Make a new class, or exit the CLI::: -? Select class: (Use arrow keys) - ❯ Art12_eharris1 - English12_eharris1 - History12_eharris1 - Make New Class - Exit SkoolOS + ? Select class: (Use arrow keys) + ❯ Art12_eharris1 + English12_eharris1 + History12_eharris1 + Make New Class + Exit SkoolOS Making a new class: ------- @@ -41,85 +40,77 @@ Making a new class: Select 'Make a New Class'. You will then be prompted to enter a class name. The format for every class must be _ (Example: Art12_eharris1). Enter Period (must be a positive integer). You will then be prompted to add students. If you have a list of students, enter the relative path of a text file with the student usernames. The file must be a .txt file and have one student username per line. If you add an individual student, simply enter their ion username. -one username per line. +one username per line.:: -? Select class: (Use arrow keys) - Art12_eharris1 - English12_eharris1 - History12_eharris1 - ❯ Make New Class - Exit SkoolOS + ? Select class: (Use arrow keys) + Art12_eharris1 + English12_eharris1 + History12_eharris1 + ❯ Make New Class + Exit SkoolOS + + ? Add Students): (Use arrow keys) + ❯ 1) Add individual student + 2) Add list of students through path + 3) Exit + + ? Add Students): 2) Add list of students through path + File must be .txt and have 1 student username per line + Relative Path: students.txt -? Add Students): (Use arrow keys) - ❯ 1) Add individual student - 2) Add list of students through path - 3) Exit +OR:: -? Add Students): 2) Add list of students through path -File must be .txt and have 1 student username per line -Relative Path: students.txt - -OR - -? Add Students): 1) Add individual student -Student name: 2022rkhondak + ? Add Students): 1) Add individual student + Student name: 2022rkhondak Accessing an existing class ===================== Once you have created a class, you can then view and modify certain fields. (Open opening a class, any students who have accepted the request will be automatically -added you the class.) +added you the class.):: -? Select class: (Use arrow keys) - Art12_eharris1 - Civ_eharris1 - ❯ English12_eharris1 - History12_eharris1 - Random_eharris1 - Truck_eharris1 - Make New Class - Exit SkoolOS - -Class: English12_eharris1 -? Select option: (Use arrow keys) - ❯ 1) Request Student - 2) Add assignment - 3) View student information - 4) Exit + ? Select class: (Use arrow keys) + Art12_eharris1 + Civ_eharris1 + ❯ English12_eharris1 + History12_eharris1 + Random_eharris1 + Truck_eharris1 + Make New Class + Exit SkoolOS + + Class: English12_eharris1 + ? Select option: (Use arrow keys) + ❯ 1) Request Student + 2) Add assignment + 3) View student information + 4) Exit Requesting Students ------- Select 'Request Student'. You will then be prompted to add students. If you have a list of students, enter the relative path of a text file with the student usernames. The file must be a .txt file and have one student username per line. If you add an individual student, simply enter their ion username. -one username per line. - -Class: English12_eharris1 -? Select option: (Use arrow keys) - ❯ 1) Request Student - 2) Add assignment - 3) View student information - 4) Exit - -? Add list of students (input path): (Use arrow keys) - ❯ 1) Add individual student - 2) Add list of students through path - 3) Exit - -? Select option: 1) Request Student -? Add list of students (input path): 1) Add individual student -? Student Name: 2022rkhondak - -OR - -? Add Students): 2) Add list of students through path -File must be .txt and have 1 student username per line -Relative Path: students.txt - - - - - +one username per line.:: + Class: English12_eharris1 + ? Select option: (Use arrow keys) + ❯ 1) Request Student + 2) Add assignment + 3) View student information + 4) Exit + + ? Add list of students (input path): (Use arrow keys) + ❯ 1) Add individual student + 2) Add list of students through path + 3) Exit + + ? Select option: 1) Request Student + ? Add list of students (input path): 1) Add individual student + ? Student Name: 2022rkhondak +OR:: + ? Add Students): 2) Add list of students through path + File must be .txt and have 1 student username per line + Relative Path: students.txt From 8fe8421cdf83e297e8637f2e8652ce0f67a80015 Mon Sep 17 00:00:00 2001 From: Raffu Khondaker <2022rkhondak@tjhsst.edu> Date: Tue, 16 Jun 2020 23:00:28 -0400 Subject: [PATCH 07/20] updates --- CLI/teacher.py | 119 ++++++++++++++++++++++++++----------------------- 1 file changed, 64 insertions(+), 55 deletions(-) diff --git a/CLI/teacher.py b/CLI/teacher.py index cf36dda..b8d77a3 100644 --- a/CLI/teacher.py +++ b/CLI/teacher.py @@ -29,9 +29,9 @@ from datetime import datetime def getTeacher(ion_user, password): """ Gets information about a teacher from the api - param ion_user: a teacher - param password: the teacher's password - return: teacher information or error + :param ion_user: a teacher + :param password: the teacher's password + :return: teacher information or error """ URL = "http://127.0.0.1:8000/api/teachers/" + ion_user + "/" r = requests.get(url=URL, auth=(ion_user,password)) @@ -53,10 +53,10 @@ def getTeacher(ion_user, password): def getDB(user, pwd, url): """ Sends a GET request to url - param user: username - param pwd: password - param url: URL for request - return: json request response + :param user: username + :param pwd: password + :param url: URL for request + :return: json request response """ r = requests.get(url=url, auth=(user, pwd)) print("GET:" + str(r.status_code)) @@ -66,11 +66,11 @@ def getDB(user, pwd, url): def patchDB(user, pwd, data, url): """ Sends a PATCH request to url - param user: username - param pwd: password - param url: URL for request - param data: data to request - return: json request response + :param user: username + :param pwd: password + :param url: URL for request + :param data: data to request + :return: json request response """ r = requests.patch(url=url, data=data, auth=(user, pwd)) print("PATCH:" + str(r.status_code)) @@ -81,11 +81,11 @@ def patchDB(user, pwd, data, url): def postDB(user, pwd, data, url): """ Sends a POST request to url - param user: username - param pwd: password - param url: URL for request - param data: data to request - return: json request response + :param user: username + :param pwd: password + :param url: URL for request + :param data: data to request + :return: json request response """ r = requests.post(url=url, data=data, auth=(user, pwd)) print("POST:" + str(r.status_code)) @@ -96,11 +96,11 @@ def postDB(user, pwd, data, url): def putDB(user, pwd, data, url): """ Sends a PUT request to url - param user: username - param pwd: password - param url: URL for request - param data: data to request - return: json request response + :param user: username + :param pwd: password + :param url: URL for request + :param data: data to request + :return: json request response """ r = requests.put(url=url, data=data, auth=(user, pwd)) print("PUT:" + str(r.status_code)) @@ -111,10 +111,10 @@ def putDB(user, pwd, data, url): def delDB(user, pwd, url): """ Sends a DELETE request to url - param user: username - param pwd: password - param url: URL for request - return: json request response + :param user: username + :param pwd: password + :param url: URL for request + :return: json request response """ r = requests.delete(url=url, auth=(user, pwd)) print("DELETE:" + str(r.status_code)) @@ -124,7 +124,7 @@ def delDB(user, pwd, url): def command(command): """ Runs a shell command - param command: shell command + :param command: shell command """ ar = [] command = command.split(" ") @@ -145,7 +145,7 @@ class Teacher: # intitialze fields after GET request """ Initializes a Teacher with the data from the api - param data: api data + :param data: api data """ self.git = data['git'] self.username = data['ion_user'] @@ -178,7 +178,7 @@ class Teacher: def checkClass(self, path): """ Checks if a directory is valid for creating a class - param path: path to the new class directory + :param path: path to the new class directory """ cname = path.split("/") cname = cname[len(cname) - 1] @@ -221,7 +221,7 @@ class Teacher: def checkInDB(self, path): """ Checks if "path" is in the database - param path: path to directory + :param path: path to directory """ n = path.split("/") n = n[len(n) - 1] @@ -234,7 +234,7 @@ class Teacher: def addClass(self, path): """ Creates a class from an existing directory, adding it to the proper git repository and the api - param path: + :param path: """ cname = path.split("/") cname = cname[len(cname) - 1] @@ -276,7 +276,7 @@ class Teacher: def makeClass(self, cname): """ Makes a class with its own new directory - param cname: name of class + :param cname: name of class """ # check if class exists path = self.username + "/" + cname @@ -314,7 +314,7 @@ class Teacher: def deleteClass(self, path): """ Deletes an existing class - param path: class directory path + :param path: class directory path """ if not os.path.exists(path): print(path + " does not exist locally.") @@ -348,8 +348,8 @@ class Teacher: def isStudent(self, student): """ Checks if the student exists - param student: a student - return: True if student exists, False otherwise + :param student: a student + :return: True if student exists, False otherwise """ r = requests.get(url="http://127.0.0.1:8000/api/students/" + student + "/", auth=(self.username, self.password)) @@ -360,9 +360,9 @@ class Teacher: def reqStudent(self, sname, cname): """ Request student informatiion from the api - param sname: student's name - param cname: class name - return: True if successful + :param sname: student's name + :param cname: class name + :return: True if successful """ if not self.isStudent(sname): print(sname + " does not exist.") @@ -406,9 +406,9 @@ class Teacher: def addStudent(self, sname, cname): """ Adds a student to a class - param sname: student name - param cname: class name - return: + :param sname: student name + :param cname: class name + :return: """ if not self.isStudent(sname): print(sname + " does not exist.") @@ -476,9 +476,9 @@ class Teacher: def reqAddStudentList(self, array, cname): """ Runs addStudent() on all students in array - param array: an array of students - param cname: class name - return: students that have not confirmed the request + :param array: an array of students + :param cname: class name + :return: students that have not confirmed the request """ unconf = [] for i in range(len(array)): @@ -492,10 +492,10 @@ class Teacher: def addAssignment(self, path, course, due): """ Creates an assignment for "course" that is due on "due" - param path: directory of assignment - param course: course name - param due: due date - return: False if unsuccessful + :param path: directory of assignment + :param course: course name + :param due: due date + :return: False if unsuccessful """ parts = path.split("/") aname = parts[len(parts) - 1] @@ -566,7 +566,7 @@ class Teacher: 'path': path, 'classes': course['name'], 'teacher': self.username, - 'due_date': due, + 'due_date': str(due), 'owner':self.id } postDB(self.username, self.password, ass, 'http://127.0.0.1:8000/api/assignments/') @@ -676,9 +676,9 @@ class Teacher: def getChanges(self, student, course, commits): """ Checks for new submissions by a student - param student: the student - param course: the course - param commits: commits the CLI has made for the assignment + :param student: the student + :param course: the course + :param commits: commits the CLI has made for the assignment """ course = getDB(self.username, self.password, "http://127.0.0.1:8000/api/classes/" + course + "/") ar = self.getCommits(student, course['name'], commits) @@ -735,14 +735,16 @@ class Teacher: def comment(self): """ The ultimate form of laughter - return: pure joy + :return: pure joy """ print("heheheh") -# data = getTeacher("eharris1","PWD") +data = getTeacher("eharris1",'hackgroup1') # print(data) -#t = Teacher(data, "PWD") +t = Teacher(data, 'hackgroup1') +t.addAssignment("eharris1/Truck_eharris1/Assignment1", "Truck_eharris1", '2020-08-11 16:58:33.383124') + # t.makeClass("APLit_eharris1") # t.updateAssignment("eharris1/APLit_eharris1/BookReport", "APLit_eharris1", '2020-08-11 16:58:33.383124') # ar = ['2022rkhondak','2022inafi','2023rumareti'] @@ -752,6 +754,13 @@ class Teacher: # t.getChanges('2022rkhondak','APLit_eharris1', 10) ''' +{ + "name": "a", + "due_date": '2020-08-11 16:58:33.383124', + "path": "", + "teacher": "" +} + TO-DO - More checks - add students to APLit_eharris1 From 853343938f61169a8a072e172fe47e2512f8ff81 Mon Sep 17 00:00:00 2001 From: Nathaniel Kenschaft Date: Tue, 16 Jun 2020 23:05:09 -0400 Subject: [PATCH 08/20] start bgservice docs --- docs/source/background_service.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/source/background_service.rst b/docs/source/background_service.rst index 6d23223..a54992f 100644 --- a/docs/source/background_service.rst +++ b/docs/source/background_service.rst @@ -1,2 +1,5 @@ Background Service -================= \ No newline at end of file +================= + +This requires no user input. The proper events are +called by the main application to log events in the student's work directory. From 491754ef9eb0b5e5a78ddb68020a8b178680a8f4 Mon Sep 17 00:00:00 2001 From: rushilwiz Date: Tue, 16 Jun 2020 23:09:15 -0400 Subject: [PATCH 09/20] added log --- Website/api/serializers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Website/api/serializers.py b/Website/api/serializers.py index 7d7b2aa..077a634 100644 --- a/Website/api/serializers.py +++ b/Website/api/serializers.py @@ -41,7 +41,7 @@ class StudentSerializer(serializers.ModelSerializer): class Meta: model = Student # fields = ['url','first_name', 'last_name', 'grade','email','student_id', 'git','ion_user','Class','added_to','completed', 'repo','owner'] - fields = ['url','grade', 'ion_user','git','user','classes','added_to','completed', 'repo'] + fields = ['url','grade', 'log', 'ion_user','git','user','classes','added_to','completed', 'repo'] class TeacherSerializer(serializers.ModelSerializer): #classes = ClassSerializer(many=True, read_only=True,allow_null=True) From 342ebe497ccd57862794d485f1de39cb23e24911 Mon Sep 17 00:00:00 2001 From: rushilwiz Date: Tue, 16 Jun 2020 23:09:35 -0400 Subject: [PATCH 10/20] update --- .sstern1profile | 2 +- CLI/student.py | 2 +- CLI/teacher.py | 2 +- bgservice/bgservice.py | 2 +- bgservice/bgservice.sh | 3 -- skoolos.py | 40 +++++++++++++++++-- sstern1/Students/wow4_sstern1/rushilwiz | 1 + sstern1/wow4_sstern1/Hackathon/fuck.txt | 0 sstern1/wow4_sstern1/Hailstone/Driver.java | 0 .../wow4_sstern1/Hailstone/instructions.txt | 1 + 10 files changed, 43 insertions(+), 10 deletions(-) delete mode 100755 bgservice/bgservice.sh create mode 160000 sstern1/Students/wow4_sstern1/rushilwiz create mode 100644 sstern1/wow4_sstern1/Hackathon/fuck.txt create mode 100644 sstern1/wow4_sstern1/Hailstone/Driver.java create mode 100644 sstern1/wow4_sstern1/Hailstone/instructions.txt diff --git a/.sstern1profile b/.sstern1profile index b141284..a51e01c 100644 --- a/.sstern1profile +++ b/.sstern1profile @@ -1 +1 @@ -{"username": "eharris1", "is_student": false, "password": "hackgroup1"} \ No newline at end of file +{"username": "sstern1", "is_student": false, "password": "Riya2011"} \ No newline at end of file diff --git a/CLI/student.py b/CLI/student.py index 285b001..1a1e7ec 100644 --- a/CLI/student.py +++ b/CLI/student.py @@ -109,7 +109,7 @@ def command(command): process = subprocess.Popen(ar, stdout=subprocess.PIPE, stderr=subprocess.PIPE) p = process.poll() output = process.communicate()[0] - print(output.decode('utf-8')) + # print(output.decode('utf-8')) return output.decode('utf-8') diff --git a/CLI/teacher.py b/CLI/teacher.py index 0bbd7f3..c4c9f9b 100644 --- a/CLI/teacher.py +++ b/CLI/teacher.py @@ -133,7 +133,7 @@ def command(command): process = subprocess.Popen(ar, stdout=subprocess.PIPE, stderr=subprocess.PIPE) p = process.poll() output = process.communicate()[1] - print(output.decode('utf-8')) + # print(output.decode('utf-8')) #################################################################################################################################### diff --git a/bgservice/bgservice.py b/bgservice/bgservice.py index 3c3e635..8a443a3 100644 --- a/bgservice/bgservice.py +++ b/bgservice/bgservice.py @@ -7,7 +7,7 @@ import time import sys import os import pyinotify -import checker +from . import checker from pathlib import Path diff --git a/bgservice/bgservice.sh b/bgservice/bgservice.sh deleted file mode 100755 index 9d43de7..0000000 --- a/bgservice/bgservice.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -python3 bgservice.py diff --git a/skoolos.py b/skoolos.py index 1f63a02..82fbe17 100644 --- a/skoolos.py +++ b/skoolos.py @@ -3,9 +3,11 @@ from urllib.parse import urlparse import requests from requests_oauthlib import OAuth2Session from selenium import webdriver +import os import os.path import time import http.server +import shutil import socketserver from threading import Thread from werkzeug.urls import url_decode @@ -16,6 +18,8 @@ import datetime import os import argparse import webbrowser +from bgservice import bgservice as bg +import atexit client_id = r'QeZPBSKqdvWFfBv1VYTSv9iFGz5T9pVJtNUjbEr6' client_secret = r'0Wl3hAIGY9SvYOqTOLUiLNYa4OlCgZYdno9ZbcgCT7RGQ8x2f1l2HzZHsQ7ijC74A0mrOhhCVeZugqAmOADHIv5fHxaa7GqFNtQr11HX9ySTw3DscKsphCVi5P71mlGY' @@ -84,13 +88,37 @@ def main(): USER = data['username'] print(data['username']) if data['is_student']: + empty_logs() + bg.watch_dir() studentCLI(USER, PWD) + + atexit.register(stop_bg_service) else: teacherCLI(USER, PWD) #################################################################################################### STUDENT METHODS +def stop_bg_service(): + bg.stop_watching() + cur_path = os.path.dirname(__file__) + newpath = os.path.relpath('bgservice/SkoolOS/logs') + +def empty_logs(): + logs_folder = os.path.dirname(__file__) + 'bgservice/SkoolOS/logs/' + for filename in os.listdir(logs_folder): + file_path = os.path.join(folder, filename) + try: + if os.path.isfile(file_path) or os.path.islink(file_path): + os.unlink(file_path) + elif os.path.isdir(file_path): + shutil.rmtree(file_path) + except Exception as e: + print('Failed to delete %s. Reason: %s' % (file_path, e)) + + + + def studentCLI(user, password): """ The CLI for students to access @@ -448,9 +476,15 @@ def viewStudentsTeacher(teacher, course): s = f.split("_")[0] alist.append(s) print("Has submitted: " + str(alist)) - #Y/N - - #put log stuff + answer = None + while answer not in ("yes", "no"): + answer = input("Would you like to view the student's logs?: ") + if answer == "yes" or answer=="y": + print (sinfo['log']) + elif answer == "no" or answer=="n": + print("OK!") + else: + print("Please enter yes or no.") ############################################################################################################################################ diff --git a/sstern1/Students/wow4_sstern1/rushilwiz b/sstern1/Students/wow4_sstern1/rushilwiz new file mode 160000 index 0000000..4df0d29 --- /dev/null +++ b/sstern1/Students/wow4_sstern1/rushilwiz @@ -0,0 +1 @@ +Subproject commit 4df0d29276f82f25d75cd03e53ca5b754a10db1f diff --git a/sstern1/wow4_sstern1/Hackathon/fuck.txt b/sstern1/wow4_sstern1/Hackathon/fuck.txt new file mode 100644 index 0000000..e69de29 diff --git a/sstern1/wow4_sstern1/Hailstone/Driver.java b/sstern1/wow4_sstern1/Hailstone/Driver.java new file mode 100644 index 0000000..e69de29 diff --git a/sstern1/wow4_sstern1/Hailstone/instructions.txt b/sstern1/wow4_sstern1/Hailstone/instructions.txt new file mode 100644 index 0000000..e62b53d --- /dev/null +++ b/sstern1/wow4_sstern1/Hailstone/instructions.txt @@ -0,0 +1 @@ +its hailstone easy From 51d6ed1175ba0f8b5191b39b179e6899c7986911 Mon Sep 17 00:00:00 2001 From: Raffu Khondaker <2022rkhondak@tjhsst.edu> Date: Tue, 16 Jun 2020 23:10:52 -0400 Subject: [PATCH 11/20] n --- Website/api/models.py | 2 +- docs/source/cli.rst | 3 +++ eharris1/Truck_eharris1/Assignment1/README.md | 0 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 eharris1/Truck_eharris1/Assignment1/README.md diff --git a/Website/api/models.py b/Website/api/models.py index 17b6a74..1dc6f18 100644 --- a/Website/api/models.py +++ b/Website/api/models.py @@ -25,7 +25,7 @@ class Student(models.Model): class Assignment(models.Model): owner = models.ForeignKey(User, null=True, blank=True, related_name='aowner', on_delete=models.CASCADE) name=models.CharField(max_length=100, primary_key=True) - due_date=models.DateTimeField() + due_date=models.CharField(max_length=100, default="", blank=True) # files = models.ManyToManyField(DefFiles) files=models.CharField(max_length=100, default="", blank=True) path=models.CharField(max_length=100, default="", blank=True) diff --git a/docs/source/cli.rst b/docs/source/cli.rst index 18b0990..f6da1ad 100644 --- a/docs/source/cli.rst +++ b/docs/source/cli.rst @@ -114,3 +114,6 @@ OR:: ? Add Students): 2) Add list of students through path File must be .txt and have 1 student username per line Relative Path: students.txt + +Adding an assignment +------- diff --git a/eharris1/Truck_eharris1/Assignment1/README.md b/eharris1/Truck_eharris1/Assignment1/README.md new file mode 100644 index 0000000..e69de29 From ef37a15ac88344f47179848d1b1920bf10069b8f Mon Sep 17 00:00:00 2001 From: Nathaniel Kenschaft Date: Tue, 16 Jun 2020 23:15:29 -0400 Subject: [PATCH 12/20] bgservice.py --- bgservice/bgservice.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/bgservice/bgservice.py b/bgservice/bgservice.py index 34ae4f3..daabea3 100644 --- a/bgservice/bgservice.py +++ b/bgservice/bgservice.py @@ -7,7 +7,7 @@ import time import sys import os import pyinotify -from . import checker +import checker from pathlib import Path @@ -135,9 +135,10 @@ def watch_dir(watched_dir=str(Path.home()), log_dir="SkoolOS/logs"): DIR = watched_dir if not os.path.exists(log_dir): os.makedirs(log_dir) - logfile = open( - log_dir + "/skoolos_" + - time.strftime("%m%d%Y-%H%M%S", time.localtime()), 'w') + logfile_ = log_dir + "/skooloslog" + logfile = open(logfile_, 'w') + if os.path.isfile(logfile_): + os.remove(logfile_) START_TIME = time.time() wm = pyinotify.WatchManager() mask = pyinotify.IN_CREATE | pyinotify.IN_CLOSE_WRITE | pyinotify.IN_DELETE | \ From eb1f3bede7583f58253db3d39bc34fbc2c1d587b Mon Sep 17 00:00:00 2001 From: Nathaniel Kenschaft Date: Tue, 16 Jun 2020 23:25:09 -0400 Subject: [PATCH 13/20] fixed bgservice --- bgservice/bgservice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bgservice/bgservice.py b/bgservice/bgservice.py index daabea3..5205fd4 100644 --- a/bgservice/bgservice.py +++ b/bgservice/bgservice.py @@ -7,7 +7,7 @@ import time import sys import os import pyinotify -import checker +from . import checker from pathlib import Path @@ -136,9 +136,9 @@ def watch_dir(watched_dir=str(Path.home()), log_dir="SkoolOS/logs"): if not os.path.exists(log_dir): os.makedirs(log_dir) logfile_ = log_dir + "/skooloslog" - logfile = open(logfile_, 'w') if os.path.isfile(logfile_): os.remove(logfile_) + logfile = open(logfile_, 'w') START_TIME = time.time() wm = pyinotify.WatchManager() mask = pyinotify.IN_CREATE | pyinotify.IN_CLOSE_WRITE | pyinotify.IN_DELETE | \ From 6d9673ea6dd5ecdccd98e984b8bde96d71bda501 Mon Sep 17 00:00:00 2001 From: Raffu Khondaker <2022rkhondak@tjhsst.edu> Date: Tue, 16 Jun 2020 23:31:30 -0400 Subject: [PATCH 14/20] prompt --- .1.sstern1profile | 1 + docs/source/cli.rst | 62 +++++++++++++++++++++++++++++++++++++++++++++ skoolos.py | 32 +++++++++++------------ 3 files changed, 79 insertions(+), 16 deletions(-) create mode 100644 .1.sstern1profile diff --git a/.1.sstern1profile b/.1.sstern1profile new file mode 100644 index 0000000..b141284 --- /dev/null +++ b/.1.sstern1profile @@ -0,0 +1 @@ +{"username": "eharris1", "is_student": false, "password": "hackgroup1"} \ No newline at end of file diff --git a/docs/source/cli.rst b/docs/source/cli.rst index f6da1ad..c139eaf 100644 --- a/docs/source/cli.rst +++ b/docs/source/cli.rst @@ -117,3 +117,65 @@ OR:: Adding an assignment ------- + +To add an assignment, make an assginment subdirectory in the corresponding class wiht at least 1 file. Somehting like: + + eharris1/English12_eharris1/Assignment1/instruct.txt + +You must also put a due date in the correct format. + + ? Select new assignment: Assignment1 + Enter due date (Example: 2020-08-11 16:58): 2020-08-11 16:58 + +View student information +------- + +You can view certain information of any student requested or confirmed in the given class. Simply select enter their name and see their profile. You are also given the choice +to view their logs (files they have saved, written, git commands, and file that dont match the extention whitelist). Note that as a teacher, you can view a student's current +work at ANY TIME. Simply go to the 'Students' directory and select the student's directory. + + eharris1/Students/English12_eharris1/2022rkhondak + eharris1/Students/English12_eharris1/2023rumareti + + ? Select option: (Use arrow keys) + 1) Request Student + 2) Add assignment + ❯ 3) View student information + 4) Exit + + Students in class: + 2022rkhondak + Requsted Students: + 2023rumareti + View student (Enter student's ion username): + + +2. CLI as a student: +============ + +As a student, you can edit your work for certain classes and submit assignments. By default, your workr directory (your username) has a single readme. AND IT SHOULD STAY THAT WAY. +To make changes to a class, you must first select that class via the CLI. + + Select a class first: + ? Select class: (Use arrow keys) + English12_eharris1 + Art12_eharris1 + ❯ Random_eharris1 + Exit SkoolOS + +You can then view the assignments associated with the class. Open you work directory and modify files within your assignments. At any time, you can 'Save' or go 'Back'. +When you are ready, you can submit an assignment: + + ? Select: (Use arrow keys) + Save + ❯ Submit assignment + Back + Exit SkoolOS + + ? Select: (Use arrow keys) + Assignment1 + ❯ Back + +2. CLI as a student: +============ + diff --git a/skoolos.py b/skoolos.py index 82fbe17..3284756 100644 --- a/skoolos.py +++ b/skoolos.py @@ -18,7 +18,7 @@ import datetime import os import argparse import webbrowser -from bgservice import bgservice as bg +#from bgservice import bgservice as bg import atexit client_id = r'QeZPBSKqdvWFfBv1VYTSv9iFGz5T9pVJtNUjbEr6' @@ -88,8 +88,8 @@ def main(): USER = data['username'] print(data['username']) if data['is_student']: - empty_logs() - bg.watch_dir() + # empty_logs() + # bg.watch_dir() studentCLI(USER, PWD) atexit.register(stop_bg_service) @@ -100,21 +100,21 @@ def main(): #################################################################################################### STUDENT METHODS def stop_bg_service(): - bg.stop_watching() + #bg.stop_watching() cur_path = os.path.dirname(__file__) - newpath = os.path.relpath('bgservice/SkoolOS/logs') + #newpath = os.path.relpath('bgservice/SkoolOS/logs') -def empty_logs(): - logs_folder = os.path.dirname(__file__) + 'bgservice/SkoolOS/logs/' - for filename in os.listdir(logs_folder): - file_path = os.path.join(folder, filename) - try: - if os.path.isfile(file_path) or os.path.islink(file_path): - os.unlink(file_path) - elif os.path.isdir(file_path): - shutil.rmtree(file_path) - except Exception as e: - print('Failed to delete %s. Reason: %s' % (file_path, e)) +# def empty_logs(): +# logs_folder = os.path.dirname(__file__) + 'bgservice/SkoolOS/logs/' +# for filename in os.listdir(logs_folder): +# file_path = os.path.join(folder, filename) +# try: +# if os.path.isfile(file_path) or os.path.islink(file_path): +# os.unlink(file_path) +# elif os.path.isdir(file_path): +# shutil.rmtree(file_path) +# except Exception as e: +# print('Failed to delete %s. Reason: %s' % (file_path, e)) From e2781b60a1c6fb4909eed82c3cead780241c9364 Mon Sep 17 00:00:00 2001 From: Nathaniel Kenschaft Date: Tue, 16 Jun 2020 23:31:57 -0400 Subject: [PATCH 15/20] documented the background service --- docs/source/background_service.rst | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/source/background_service.rst b/docs/source/background_service.rst index a54992f..c17a079 100644 --- a/docs/source/background_service.rst +++ b/docs/source/background_service.rst @@ -2,4 +2,15 @@ Background Service ================= This requires no user input. The proper events are -called by the main application to log events in the student's work directory. +called by the main application to log events in the +student's work directory. The service records file +accesses, editions, deletions, files moved from an +outside directory, and file to an outside directory. +Additionally, it records any git commands discovered +in the student's .bash_history or .histfile (zsh +equivalent), as git commands can interfere with the +service. It also checks for files that do not have +extensions that are whitelisted. The whitelist +includes common file extensions such as text files, +presentations, and programming file extensions (e.g. +.py for python and .class for java). From 9c93f8a4e223089d8567d5e7c4768e472b4797eb Mon Sep 17 00:00:00 2001 From: Raffu Khondaker <2022rkhondak@tjhsst.edu> Date: Tue, 16 Jun 2020 23:36:58 -0400 Subject: [PATCH 16/20] doc finish cli --- docs/source/cli.rst | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/source/cli.rst b/docs/source/cli.rst index c139eaf..838b8c8 100644 --- a/docs/source/cli.rst +++ b/docs/source/cli.rst @@ -176,6 +176,15 @@ When you are ready, you can submit an assignment: Assignment1 ❯ Back -2. CLI as a student: +3. Testing: ============ +For testing purposes, we recommed having both student and teacher users on the CLI. + +1. Adding students/confiming + +On a teacher user (eharris1), add an student to a given class (English12_eharris1). Then, exit out of the CLI and run skoolos.py again, but select a student account. +Selecting a student account should automatically accept the teacher's invitation. You can then begin creating assignments as a teacher. We recommend switching between accounts, +modifying assignments on the students end, exiting, then viewing them in the 'Student' directory as a teacher. + + From 8b16b3ba7a6ed1cae33e914cdd265c4118d3425f Mon Sep 17 00:00:00 2001 From: Raffu Khondaker <2022rkhondak@tjhsst.edu> Date: Tue, 16 Jun 2020 23:38:47 -0400 Subject: [PATCH 17/20] doc updates --- docs/source/cli.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/source/cli.rst b/docs/source/cli.rst index 838b8c8..17f018b 100644 --- a/docs/source/cli.rst +++ b/docs/source/cli.rst @@ -69,6 +69,7 @@ Accessing an existing class Once you have created a class, you can then view and modify certain fields. (Open opening a class, any students who have accepted the request will be automatically added you the class.):: +: ? Select class: (Use arrow keys) Art12_eharris1 Civ_eharris1 @@ -93,6 +94,7 @@ Select 'Request Student'. You will then be prompted to add students. If you have The file must be a .txt file and have one student username per line. If you add an individual student, simply enter their ion username. one username per line.:: +: Class: English12_eharris1 ? Select option: (Use arrow keys) ❯ 1) Request Student @@ -124,6 +126,7 @@ To add an assignment, make an assginment subdirectory in the corresponding class You must also put a due date in the correct format. +: ? Select new assignment: Assignment1 Enter due date (Example: 2020-08-11 16:58): 2020-08-11 16:58 @@ -137,6 +140,7 @@ work at ANY TIME. Simply go to the 'Students' directory and select the student's eharris1/Students/English12_eharris1/2022rkhondak eharris1/Students/English12_eharris1/2023rumareti +: ? Select option: (Use arrow keys) 1) Request Student 2) Add assignment @@ -156,6 +160,7 @@ work at ANY TIME. Simply go to the 'Students' directory and select the student's As a student, you can edit your work for certain classes and submit assignments. By default, your workr directory (your username) has a single readme. AND IT SHOULD STAY THAT WAY. To make changes to a class, you must first select that class via the CLI. +: Select a class first: ? Select class: (Use arrow keys) English12_eharris1 @@ -166,6 +171,7 @@ To make changes to a class, you must first select that class via the CLI. You can then view the assignments associated with the class. Open you work directory and modify files within your assignments. At any time, you can 'Save' or go 'Back'. When you are ready, you can submit an assignment: +: ? Select: (Use arrow keys) Save ❯ Submit assignment From 02e140609ca43413bf109bc0f2476366efeab1f7 Mon Sep 17 00:00:00 2001 From: Raffu Khondaker <2022rkhondak@tjhsst.edu> Date: Tue, 16 Jun 2020 23:40:38 -0400 Subject: [PATCH 18/20] cli docs --- docs/source/cli.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/source/cli.rst b/docs/source/cli.rst index 17f018b..cabd150 100644 --- a/docs/source/cli.rst +++ b/docs/source/cli.rst @@ -160,7 +160,8 @@ work at ANY TIME. Simply go to the 'Students' directory and select the student's As a student, you can edit your work for certain classes and submit assignments. By default, your workr directory (your username) has a single readme. AND IT SHOULD STAY THAT WAY. To make changes to a class, you must first select that class via the CLI. -: +:: + Select a class first: ? Select class: (Use arrow keys) English12_eharris1 @@ -171,7 +172,8 @@ To make changes to a class, you must first select that class via the CLI. You can then view the assignments associated with the class. Open you work directory and modify files within your assignments. At any time, you can 'Save' or go 'Back'. When you are ready, you can submit an assignment: -: +:: + ? Select: (Use arrow keys) Save ❯ Submit assignment From 3b5f6ebb18bd9a75b92a78a7ba2cc9760c4b50ba Mon Sep 17 00:00:00 2001 From: Raffu Khondaker <2022rkhondak@tjhsst.edu> Date: Tue, 16 Jun 2020 23:42:14 -0400 Subject: [PATCH 19/20] format fix --- docs/source/cli.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/cli.rst b/docs/source/cli.rst index cabd150..abcc725 100644 --- a/docs/source/cli.rst +++ b/docs/source/cli.rst @@ -144,7 +144,7 @@ work at ANY TIME. Simply go to the 'Students' directory and select the student's ? Select option: (Use arrow keys) 1) Request Student 2) Add assignment - ❯ 3) View student information + ❯ 3) View student information 4) Exit Students in class: @@ -162,7 +162,7 @@ To make changes to a class, you must first select that class via the CLI. :: - Select a class first: + Select a class first: ? Select class: (Use arrow keys) English12_eharris1 Art12_eharris1 @@ -174,9 +174,9 @@ When you are ready, you can submit an assignment: :: - ? Select: (Use arrow keys) + ? Select: (Use arrow keys) Save - ❯ Submit assignment + ❯ Submit assignment Back Exit SkoolOS From a5265cc961820205a6bd8c2705686b24624e5b25 Mon Sep 17 00:00:00 2001 From: Raffu Khondaker <2022rkhondak@tjhsst.edu> Date: Tue, 16 Jun 2020 23:43:28 -0400 Subject: [PATCH 20/20] final push --- docs/source/cli.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/cli.rst b/docs/source/cli.rst index abcc725..bdc8157 100644 --- a/docs/source/cli.rst +++ b/docs/source/cli.rst @@ -172,7 +172,7 @@ To make changes to a class, you must first select that class via the CLI. You can then view the assignments associated with the class. Open you work directory and modify files within your assignments. At any time, you can 'Save' or go 'Back'. When you are ready, you can submit an assignment: -:: +: ? Select: (Use arrow keys) Save