Skip to content

Commit

Permalink
v1.0.4 - Python3.5 Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aashutoshrathi committed Jun 19, 2018
1 parent 03ed25a commit 031b500
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 16 deletions.
13 changes: 2 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,14 @@ OpenVPN supports unlimited **online gaming** and works for Port **53**, 8080 and

#### Selenium

First, install python package using,

```sh
$ pip install selenium
```

and then Download Chrome Drivers from [here](https://sites.google.com/a/chromium.org/chromedriver/downloads)
Download Chrome Drivers from [here](https://sites.google.com/a/chromium.org/chromedriver/downloads)

Now, extract the zip and save folder to Home Drive. Also add `C:\chromedriver_win32` to `PATH` variable.

#### pyperclip
```sh
$ pip install pyperclip
```

### UDP VPN config

These auth credentials are meant for UDP VPN.
Download UDP VPN config from tcpvpn.com, and choose port 53.


Expand Down
2 changes: 1 addition & 1 deletion openvpn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .makeIt import login
__version__ = '1.0.3'
__version__ = '1.0.4'
__author__ = 'Aashutosh Rathi <[email protected]>'
__all__ = []
4 changes: 1 addition & 3 deletions openvpn/makeIt.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
import random
import string
import pyperclip
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities



def update():
Expand Down Expand Up @@ -37,7 +35,7 @@ def login(un=None, arg=None):
options.add_argument('log-level=3')

if un == None:
un = ''.join(random.choices(string.ascii_letters + string.digits, k=5))
un = ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(5))

driver = webdriver.Chrome(chrome_options=options)
# driver = webdriver.PhantomJS('C:\\phantomjs-2.1.1-windows\\bin\\phantomjs.exe')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="auto-openvpn",
version="1.0.3",
version="1.0.4",
author="Aashutosh Rathi",
author_email="[email protected]",
description="One command OpenVPN free account",
Expand Down

0 comments on commit 031b500

Please sign in to comment.