-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d20e7c4
commit ca15572
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# ShifIQ Python Player | ||
|
||
**ShifIQ Python Player** is a Python application that allows you to surf a web page and interact with it. | ||
|
||
## Features | ||
|
||
- Guided access to a web page or the **ShifIQ Kisok Web Engine** | ||
- A button to go back to the main page | ||
- Global mouse tracking | ||
- Inactivity warning after 5 minutes | ||
- Automatic return to the main page after 10 minutes of inactivity | ||
|
||
## Installation | ||
|
||
1. Install Python 3.10+ | ||
2. Install the required dependencies: | ||
|
||
```bash | ||
pip install -r requirements.txt | ||
``` | ||
|
||
## Usage | ||
|
||
```bash | ||
python player.py | ||
``` | ||
|
||
## Configuration | ||
|
||
If you want to change the URL, you can do so by editing the `url` variable in the `player.py` file in line 200. | ||
|
||
```python | ||
if __name__ == "__main__": | ||
app = QApplication(sys.argv) | ||
url = "https://docs.secnex.io/" # Change this to the URL you want to surf | ||
window = ShifIQKioskBrowser(url) | ||
window.show() | ||
|
||
sys.exit(app.exec()) | ||
``` | ||
|
||
## License | ||
|
||
## Contributing | ||
|
||
We welcome contributions to improve the player. Please open an issue or submit a pull request. | ||
|
||
## Contact | ||
|
||
For questions or feedback, please contact us at [email protected]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
PySide6 | ||
pyautogui |