Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MShawon authored Nov 25, 2021
1 parent 4c03191 commit ab9bf7d
Showing 1 changed file with 42 additions and 24 deletions.
66 changes: 42 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Simple program to increase YouTube views written in Python. Works with live stre
**Bitcoin :** `1Jh8KZ6khuHayNDeVV9tEzYSq9FPExKCAH`

# Requirements
* Python 3.6+
* **Python 3.7.x-3.9.x**
* High speed Internet Connection
* Good proxy list (http, https, socks4, socks5)
* Google Chrome installed on your OS (not Chromium)
Expand Down Expand Up @@ -119,22 +119,31 @@ Simple program to increase YouTube views written in Python. Works with live stre

For windows you can download binary releases from **[Binary releases](https://github.com/MShawon/YouTube-Viewer/releases)**. Download this file named `YouTube-Viewer_win_x.x.x.zip`, unzip it and run the `youtube_viewer.exe`. Or you can install it from source. To do so keep reading.

* ## Installation

Open command prompt and type
```bash
$ git clone https://github.com/MShawon/YouTube-Viewer.git
* ## Installation

$ cd YouTube-Viewer

$ pip install -r requirements.txt
First, make sure you have installed git and Python version between 3.7.x to 3.9.x

Open command prompt and type
```
git clone https://github.com/MShawon/YouTube-Viewer.git
```
```
cd YouTube-Viewer
```
```
python -m pip install --upgrade pip
```
```
pip install setuptools<59
```
```
pip install -r requirements.txt
```
If something goes wrong, try again after installing latest version pip.

* ## Important
* If you've got a large proxy collection, you should run this command to filter Good proxies. Then use **GoodProxy.txt** for proxy in **youtube_viewer.py**
```
$ python proxy_check.py
python proxy_check.py
```
* After closing program, if chromedrivers are still running. You may want to double click **killdrive.bat** to close all chrome instances.
Expand All @@ -144,39 +153,48 @@ Simple program to increase YouTube views written in Python. Works with live stre
* ## Usage
* Open command prompt in YouTube-Viewer folder and run
```
$ python youtube_viewer.py
python youtube_viewer.py
```
* Rest is self explanatory.
# Linux / Mac
* ## Installation
Open your favourite terminal and run
```bash
$ git clone https://github.com/MShawon/YouTube-Viewer.git
* ## Installation
$ cd YouTube-Viewer
$ pip3 install -r requirements.txt
First, make sure you have installed git and Python version between 3.7.x to 3.9.x
Open your favourite terminal and run
```
git clone https://github.com/MShawon/YouTube-Viewer.git
```
```
cd YouTube-Viewer
```
```
python3 -m pip install --upgrade pip
```
```
pip3 install setuptools<59
```
```
pip3 install -r requirements.txt
```
If something goes wrong, try again after installing latest version pip.
* ## Important
* If you've got a large proxy collection, you should run this command to filter Good proxies. Then use **GoodProxy.txt** for proxy in **youtube_viewer.py**
```
$ python3 proxy_check.py
python3 proxy_check.py
```
* After closing program, if chromedrivers are still running. Open your terminal and run
```
```bash
ps aux | awk '/chrome/ { print $2 } ' | xargs kill -9
```
* *urls.txt* or *search.txt* can't be empty. Otherwise you will see errors. Use both for better results.
* ## Usage
* Open command prompt in YouTube-Viewer folder and run
```
$ python3 youtube_viewer.py
python3 youtube_viewer.py
```
* Rest is self explanatory.
Expand Down

0 comments on commit ab9bf7d

Please sign in to comment.