Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Protracktor
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nimesh
Protracktor
Commits
e71f0b22
Commit
e71f0b22
authored
Nov 18, 2020
by
Nimesh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated Readme
parent
7b030546
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
36 additions
and
2 deletions
+36
-2
Protracktor/readme
Protracktor/readme
+5
-0
Protracktor/results/DataUsage/Demo_18-11-2020_09:26:02.json
Protracktor/results/DataUsage/Demo_18-11-2020_09:26:02.json
+17
-0
Protracktor/results/DataUsage/Demo_18-11-2020_09:26:02plt.png
...racktor/results/DataUsage/Demo_18-11-2020_09:26:02plt.png
+0
-0
Protracktor/results/WebcamRecordings/601_18-11-2020_09:05:15.avi
...ktor/results/WebcamRecordings/601_18-11-2020_09:05:15.avi
+0
-0
Protracktor/results/WebcamRecordings/_18-11-2020_09:03:17.avi
...racktor/results/WebcamRecordings/_18-11-2020_09:03:17.avi
+0
-0
Protracktor/source/config.json
Protracktor/source/config.json
+1
-1
Protracktor/source/main.py
Protracktor/source/main.py
+13
-1
No files found.
Protracktor/readme
View file @
e71f0b22
...
...
@@ -11,7 +11,12 @@ Mallela Niteesh Kumar (203050065 - niteesh)
Shubhranshu Maurya (203050096 - shubhranshu)
Git Repository
--------------
*Cloning the Repository
link of git repo: https://git.cse.iitb.ac.in/nimesh/Protracktor.git
use git clone <url> to clone the repo
How to operate Protracktor
--------------------------
*Getting dependencies ready:
...
...
Protracktor/results/DataUsage/Demo_18-11-2020_09:26:02.json
0 → 100644
View file @
e71f0b22
{
"firefox"
:
{
"Upload"
:
0.205067
,
"Download"
:
3.86859
,
"total"
:
4.073657
},
"zoom"
:
{
"Upload"
:
0.00278568
,
"Download"
:
0.0112019
,
"total"
:
0.013987580000000001
},
"teams"
:
{
"Upload"
:
0.330525
,
"Download"
:
0.775587
,
"total"
:
1.106112
}
}
\ No newline at end of file
Protracktor/results/DataUsage/Demo_18-11-2020_09:26:02plt.png
0 → 100644
View file @
e71f0b22
22.6 KB
Protracktor/results/WebcamRecordings/601_18-11-2020_09:05:15.avi
0 → 100644
View file @
e71f0b22
File added
Protracktor/results/WebcamRecordings/_18-11-2020_09:03:17.avi
0 → 100644
View file @
e71f0b22
File added
Protracktor/source/config.json
View file @
e71f0b22
{
"course_name"
:
""
}
\ No newline at end of file
{
"course_name"
:
"601"
}
\ No newline at end of file
Protracktor/source/main.py
View file @
e71f0b22
...
...
@@ -8,6 +8,7 @@ import threading
import
os
from
close
import
Ui_CloseWindow
import
sys
from
PIL
import
Image
from
read_config
import
write_config
class
Ui_MainWindow
(
object
):
def
setupUi
(
self
,
MainWindow
):
...
...
@@ -126,11 +127,22 @@ class Ui_MainWindow(object):
self
.
actionScreen_Recordings
.
triggered
.
connect
(
lambda
:
self
.
open
(
'../results/ScreenRecordings'
))
self
.
actionVIdeo_Recordings
.
triggered
.
connect
(
lambda
:
self
.
open
(
'../results/WebcamRecordings'
))
self
.
actionopen_readme_txt
.
triggered
.
connect
(
lambda
:
self
.
open_doc
())
self
.
actionLatest_activity_tracker
.
triggered
.
connect
(
lambda
:
self
.
open_graph
(
'../results/ActivityTracker/usage_graph'
))
self
.
actionLatest_Data_Usage
.
triggered
.
connect
(
lambda
:
self
.
open_graph
(
'../results/DataUsage'
))
def
open_doc
(
self
):
#print("hi")
os
.
system
(
"gedit ../readme"
)
#print("hi")
def
open_graph
(
self
,
path
):
import
glob
files
=
glob
.
glob
(
path
+
"/*.png"
)
files
.
sort
(
key
=
os
.
path
.
getmtime
,
reverse
=
True
)
if
files
!=
[]:
im
=
Image
.
open
(
files
[
0
])
im
.
show
()
def
open
(
self
,
path
):
os
.
system
(
'xdg-open "
%
s"'
%
path
)
def
start
(
self
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment