Metadata-Version: 2.1
Name: proxidize-wrapper
Version: 0.2.0
Summary: Wrapper for proxidize android app.
Home-page: https://github.com/AG4lyf/proxidize_wrapper
Author: Suraj Bhari
Author-email: surajbhari159@gmail.com
License: MIT license
Keywords: proxidize_wrapper
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
License-File: LICENSE

=================
proxidize_wrapper
=================


.. image:: https://img.shields.io/pypi/v/proxidize_wrapper.svg
        :target: https://pypi.python.org/pypi/proxidize_wrapper


Wrapper for proxidize android app.

* Free software: MIT license

Install a Proxy Server
======================
Read
`This <https://github.com/proxidize/proxidize-android>`__
to host the server.

We would need the http address which is in the format of "IP:PORT:USERNAME:PASSWORD" to use this wrapper.

Features
--------

* Use Proxidize Android app to proxy your internet connection on your PC. Wrapper for it.

How to Use
==========
1. Install the app on your android phone. mentioned above.
2. Install the package:
      pip install ec2_proxy


.. code-block:: python

      from proxidize_wrapper import Proxy

      p = Proxy("127.0.0.1:34517:USERNAME:PASSWORD", "23412") #Initialize the class object.

      print(p.get_ip()) # Print the current ip address.

      p.change_ip() # change the ip address.

      print(p.get_ip()) # Print the current ip address.






