https://github.com/04ar/webcon_python_subprocess
python child subprocess for getting instruction from stdin to simulate keyword, mouse and x-box controller
https://github.com/04ar/webcon_python_subprocess
automation keyboard keylogger linux mouse-tracking python python-script windows
Last synced: 11 months ago
JSON representation
python child subprocess for getting instruction from stdin to simulate keyword, mouse and x-box controller
- Host: GitHub
- URL: https://github.com/04ar/webcon_python_subprocess
- Owner: 04AR
- License: mit
- Created: 2025-02-11T17:10:26.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-11T17:37:50.000Z (about 1 year ago)
- Last Synced: 2025-02-11T18:38:56.260Z (about 1 year ago)
- Topics: automation, keyboard, keylogger, linux, mouse-tracking, python, python-script, windows
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.python.org/)
# Setup Instructions
## Setting Up Virtual Environment
1. Open your terminal or command prompt.
2. Navigate to your project directory:
3. Create a virtual environment:
```sh
python -m venv .
```
4. Activate the virtual environment:
- On Windows:
```sh
.\venv\Scripts\activate
```
- On macOS/Linux:
```sh
source venv/bin/activate
```
## Installing Requirements
1. Ensure your virtual environment is activated.
2. Install the required packages:
```sh
pip install -r requirements.txt
```
You are now ready to start working on the project!