Metadata-Version: 1.0
Name: PacGen
Version: 0.1.1
Summary: UNKNOWN
Home-page: https://github.com/mehdipourfar/pacgen
Author: UNKNOWN
Author-email: UNKNOWN
License: MIT License
Description: # PacGen: Pac file generator written in Python
        If you use multiple proxies and you want to define rules to set specific proxy per specific host, this package can help you.
        Simply create a yml config file and define your rules there. PacGen will generate a pac file from your rules and you can set your proxy to use this file.
        
        
        # Sample config yml file
        ```
        proxies:
          ssh_tunnel: socks5://127.0.0.1:1081
          shadowsocks: socks5://127.0.0.1:1080
          httpproxy: http://127.0.0.1:1082
        routes:
          172.19.20.10: ssh_tunnel
          youtube.com: shadowsocks
          viemo.com: shadowsocks
          news.com: httpproxy
        # default_proxy will be used for hosts which are not defined in routes.
        default_proxy: shadowsocks
        # here we define hosts that we don't want to use proxy for them.
        excludes:
          - bank.com
          - lastpass.com
        ```
        
Platform: UNKNOWN
