Skip to content

Latest commit

 

History

History
60 lines (39 loc) · 1.16 KB

File metadata and controls

60 lines (39 loc) · 1.16 KB

LayPAC

A simple, easy to use GUI app that lets you parse Proxy Auto Configuration files (PAC).

Prerequisites

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

Installation

  1. Clone the repository.
git clone https://github.com/iiCodeRedemption/LayPAC.git
cd LayPAC
  1. 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
  1. Install dependencies.
pip install -r requirements.txt

Running the application

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).