AnyPC is a software application that enables users to gain full control of computers remotely. This repository contains the client version of AnyPC, implemented in Python.
Client created by Alon Horesh. Server created by Ilai Keinan.
Server is at K9Developer/AnyPC.
AnyPC allows users to remotely access and control computers from anywhere in the world. This client version connects to the AnyPC server, providing a seamless and secure remote control experience.
- Remote desktop control
- File transfer between client and server
- Secure communication with encryption
- Cross-platform support
- Python: The entire client application is developed using Python.
WRPC is the protocol we've designed and implemented to allow for a smooth experience of controlling remote computers over the network.
The protocol documentation can be found here.
To set up the project locally, follow these steps:
-
Clone the repository:
git clone https://github.com/AlonHor/AnyPC.git
-
Navigate to the project directory:
cd AnyPC
-
Create a virtual environment and activate it:
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install the required dependencies:
pip install -r requirements.txt
To start using the AnyPC client, run the main application script:
python main.py
Follow the on-screen instructions to connect to the AnyPC server and start controlling a remote computer.
We welcome contributions to the AnyPC project. To contribute, please follow these steps:
- Fork the repository.
- Create a new branch with a descriptive name:
git checkout -b my-feature-branch
- Make your changes.
- Commit your changes with a meaningful commit message:
git commit -m "Add new feature"
- Push your changes to your fork:
git push origin my-feature-branch
- Open a pull request to the
main
branch of the original repository.
This project is licensed under the MIT License. See the LICENSE file for more details.