Metadata-Version: 2.1
Name: proxifyapps
Version: 0.10
Summary:  wrapper for proxifyre
Home-page: https://github.com/hansalemaos/proxifyapps
Author: Johannes Fischer
Author-email: aulasparticularesdealemaosp@gmail.com
License: MIT
Keywords: proxy
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
License-File: LICENSE.rst


# wrapper for proxifyre

## Tested against Windows 10 / Python 3.10 / Anaconda and Ubuntu

## pip install proxifyapps

```python
app_infos = {
    "logLevel": "all",
    "proxies": [
        {
            "appNames": [r"C:\Program Files\Mozilla Firefox"],  # folder or name
            "socks5ProxyEndpoint": "127.0.0.1:1080",
            "username": None,
            "password": None,
            "supportedProtocols": ["UDP",'TCP'],
        },
        {
            "appNames": [r"Chrome"],  # folder or name
            "socks5ProxyEndpoint": "127.0.0.1:1081",
            "username": None,
            "password": None,
            "supportedProtocols": ["UDP",'TCP'],
        },
    ],
}
proxify_apps(app_infos, print_log=True)

# always use ctrl+c to kill the process
```
