Skip to content

Commit

Permalink
feat: Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bbenouarets committed Nov 14, 2024
1 parent d20e7c4 commit ca15572
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
50 changes: 50 additions & 0 deletions README.md
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].
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
PySide6
pyautogui

0 comments on commit ca15572

Please sign in to comment.