A simple, easy to use GUI app that lets you parse Proxy Auto Configuration files (PAC).
Before using LayPAC, ensure you have the following installed:
- Python 3.8+ (You can download it from python.org)
- Pip (usually comes with Python installation)
- Tkinter (Included in most Python distributions)
- TTKThemes
- Clone the repository.
git clone https://github.com/iiCodeRedemption/LayPAC.git
cd LayPAC
- Set up a virtual environment (VENV):
Create a virtual environment using the following command:
python -m venv venv
Depending on your OS, run either of the following commands:
- On Windows:
venv\Scripts\activate
- On macOS/Linux:
source venv/bin/activate
- Install dependencies.
pip install -r requirements.txt
After doing all of the above-mentioned, run the following command to launch LayPAC:
python src/main.py
Note
You can also download the latest release from the releases page and run the executable file (only available for Windows at the moment).