Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update README.md
  • Loading branch information
KayvanMazaheri committed Sep 29, 2017
commit a9812ce46c921a71733d19bd09075f7d6e6d068c
87 changes: 68 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,90 @@
# Python Script's
> This Repo is a collection of Various python script's.
# Python Scripts

In this repo there are different kinds of python scripts for their respective uses.These all are open sourced and you can use them in any form for free.
> This Repo is a collection of Various python scripts.

In this repo there are different kinds of python scripts for their respective uses. These all are open sourced and you can use them in any form for free.


## Installation

Make sure you've already git installed and then for
Make sure you've already git installed. Then you can run the following commands to get the scripts on your computer:

OS X & Linux:
OS X, Linux and Windows:

```sh
```bash
git clone https://github.com/Logan1x/Python-Scripts.git
cd Python-Scripts
```
and then
```sh
python filename.py

## Usage
### Facebook Auto Post
This is python script that log in into facebook and post the status.

You can see live execution of this script [here](https://www.youtube.com/watch?v=YES16mVB0lQ).


```bash
pip install -r facebook-auto-post.requirements.txt
python facebook-auto-post.py
```

Windows:
### Locate Me
Run this script and it will locate you.

```sh
git clone https://github.com/Logan1x/Python-Scripts.git
This will tell you your

1. City
2. Region
3. Country
4. Latitude & Longitude.
5. Your Internet Service Provider


This uses [Checkip](http://checkip.dyndns.com/) and [ipinfo.io](http://ipinfo.io/developers).

```bash
python locate-me.py
```
and then go to directory in which your file have and then
```sh
python filename.py

### Mi Community Bot
This python script uses selenium module in python to automate the thread posting.

You can see live execution of this script [here.](https://www.youtube.com/watch?v=gWRF7-_xhx0)

If you want to understand this code you can visit [here.](https://l0gan1x.quora.com/1-Python-Thread-Posting-Bot-Using-selenium-module?srid=Ic2Y)

```bash
pip install -r mi-community-bot.requirements.txt
python mi-community-bot.py
```

## Development setup
### Password Strength Checker
This code checks for your password strength. For the right password, password must contain mixture of an upper case letters, an digit (including 0-9), and a special characters with lower case letters.

For development setup go to script directory and run

```sh
pip install -r requirements.txt
```bash
python password-strength-checker.py
```

### YouTube Bot
This is a simple python script that increases your video count/ views.
Log out from all google accounts and run this.

```bash
# For Linux Users
python youtube-bot-linux.py

# For Windows Users
python youtube-bot-windows.py
```

#### NOTE:
In case your browser stoped working delete/comment the following line in the script.
#### _Linux_
`os.system(" killall -9 " + brow)`
#### _Windows_
`os.system("TASKKILL /F /IM " + brow + ".exe")`

## Release History

* 0.0.1
Expand Down