Your personal performance analizer
Report bug
·
Request feature
- Quick start linux
- Quick start windows
- Status
- What's included
- Contributing
- Creator
- Thanks
- Copyright and license
- Google Chrome
- Python >= 3.10
If you don't have the Google Chrome installed it will freeze the application.
Setup on Linux🐧(Tested on Ubuntu 22.04.03 LTS)
-
Download the project from the GitHUB
-
Extract the file
-
Open the dir on your terminal (Bash,ZSH or others)
-
Create a Python .env on the root of the project
python3 -m venv .env
ORpython3.10 -m venv .env
-
Enter on you Python .env
source "your_env"/bin/activate
OR. "your_env"/bin/activate
-
Install the modules and libs
pip install -r requirements.txt
ORpip3 install -r requirements.txt
-
Run the application
python3 src/app.py
ORpython3.10 src/app.py
-
If it won't work right away you will need some extra system libs for it to work fine so...
-
This is the error you will probably get:
t.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found. This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.
-
Fix it with:
sudo apt-get install libxcb-xinerama0 libxcb-xinerama0-dev libxcb1 libxcb1-dev libx11-xcb1 libx11-xcb-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxcb-cursor0
-
Now your application may be working 😃
Work in progress
It's already finished (I think), but can have some bugs. Feel free notify me if you see any.
Project structure. If you wan't to know more about each module check-out his inside documentation.
master/
├── assets/
│ ├──Images/
│ │ └── (all kinds of images)
│ └── UI/
| └── (Project interfaces from qtdzn)
├── out/
| └── (Your reports)
└── src/
├── database/
│ ├── connection/
│ │ └── StudantController.py
│ ├── studants.db
│ └── studantModel.py
├── scraping/
│ ├── browserInstance/
│ │ ├── bin/
│ │ │ └── (YourChromeDriver)
│ │ └── makeChromeInstance.py
│ ├── dataMining.py
│ ├── scrapper.py
│ ├──utils.py
│ └──xlsxWriter.py
├─ screens/
│ ├──controllers/
│ │ ├── registerUserController.py
│ │ ├── selectUserController.py
│ │ └── workers.py
│ ├──registerScreen.py
│ ├──resourcePath.py
│ └──selectUserScreen.py
└── app.py
Gustavo Leandro Gorges
I want to thank you for your attention =)
Code and documentation copyright 2011-2018 the authors.
Enjoy