|
1 | | -# Python Scripts |
2 | | - |
3 | | -> This Repo is a collection of Various python scripts. |
4 | | -
|
5 | | -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. |
6 | | - |
7 | | - |
8 | | -## Installation |
9 | | - |
10 | | -Make sure you've already git installed. Then you can run the following commands to get the scripts on your computer: |
11 | | - |
12 | | -OS X, Linux and Windows: |
13 | | - |
14 | | -```bash |
15 | | -git clone https://github.com/Logan1x/Python-Scripts.git |
16 | | -cd Python-Scripts |
17 | | -``` |
18 | | - |
19 | | -### Meme Density |
20 | | -This script tells you the amount of memes in your facebook feed |
21 | | - |
22 | | - |
23 | | -```bash |
24 | | -pip install memedensity |
25 | | - |
26 | | -memedensity |
27 | | -``` |
28 | | - |
29 | | - |
30 | | -## Usage |
31 | | -### Facebook Auto Post |
32 | | -This is python script that log in into facebook and post the status. |
33 | | - |
34 | | -You can see live execution of this script [here](https://www.youtube.com/watch?v=YES16mVB0lQ). |
35 | | - |
36 | | - |
37 | | -```bash |
38 | | -pip install -r facebook-auto-post.requirements.txt |
39 | | -python facebook-auto-post.py |
40 | | -``` |
41 | | - |
42 | | -### Locate Me |
43 | | -Run this script and it will locate you. |
44 | | - |
45 | | -This will tell you your |
46 | | - |
47 | | -1. City |
48 | | -2. Region |
49 | | -3. Country |
50 | | -4. Latitude & Longitude. |
51 | | -5. Your Internet Service Provider |
52 | | - |
53 | | - |
54 | | -This uses [Checkip](http://checkip.dyndns.com/) and [ipinfo.io](http://ipinfo.io/developers). |
55 | | - |
56 | | -```bash |
57 | | -python locate-me.py |
58 | | -``` |
59 | | - |
60 | | -### Mi Community Bot |
61 | | -This python script uses selenium module in python to automate the thread posting. |
62 | | - |
63 | | -You can see live execution of this script [here.](https://www.youtube.com/watch?v=gWRF7-_xhx0) |
64 | | - |
65 | | -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) |
66 | | - |
67 | | -```bash |
68 | | -pip install -r mi-community-bot.requirements.txt |
69 | | -python mi-community-bot.py |
70 | | -``` |
71 | | - |
72 | | -### Password Strength Checker |
73 | | -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. |
74 | | - |
75 | | - |
76 | | -```bash |
77 | | -python password-strength-checker.py |
78 | | -``` |
79 | | - |
80 | | -### YouTube Bot |
81 | | -This is a simple python script that increases your video count/ views. |
82 | | -Log out from all google accounts and run this. |
83 | | - |
84 | | -```bash |
85 | | -# For Linux Users |
86 | | -python youtube-bot-linux.py |
87 | | - |
88 | | -# For Windows Users |
89 | | -python youtube-bot-windows.py |
90 | | -``` |
91 | | - |
92 | | -#### NOTE: |
93 | | -In case your browser stoped working delete/comment the following line in the script. |
94 | | -#### _Linux_ |
95 | | - `os.system(" killall -9 " + brow)` |
96 | | -#### _Windows_ |
97 | | - `os.system("TASKKILL /F /IM " + brow + ".exe")` |
98 | | - |
99 | | - |
100 | | -### Blog Reader |
101 | | - |
102 | | -Blog Reader is the terminal reader that scrapes the article from [planet dgplug](http://planet.dgplug.org/) and displays it on the terminal. |
103 | | - |
104 | | -It seprates the content accrding to the screen size. |
105 | | - |
106 | | - |
107 | | -## Release History |
108 | | - |
109 | | -* 0.0.1 |
110 | | - * Work in progress |
111 | | - |
112 | | -## Meta |
113 | | - |
114 | | -Khushal Sharma – [@Khushal](https://twitter.com/herkuch) – [email protected] |
115 | | - |
116 | | -Distributed under the MIT LICENSE license. See ``LICENSE`` for more information. |
117 | | - |
118 | | -[Logan1x](https://github.com/Logan1x/) |
119 | | - |
120 | | -## Contributing |
121 | | - |
122 | | -1. Fork it (<https://github.com/Logan1x/Python-Scripts/fork>) |
123 | | -2. Create your feature branch (`git checkout -b feature/fooBar`) |
124 | | -3. Commit your changes (`git commit -am 'Add some fooBar'`) |
125 | | -4. Push to the branch (`git push origin feature/fooBar`) |
126 | | -5. Create a new Pull Request |
127 | | -6. Add your name with a link to your profile in the contributors list. |
128 | | - |
129 | | -## Contributors |
130 | | - |
131 | | -The following people helped in creating the above content. |
132 | | - |
133 | | -* <a href="https://github.com/Logan1x" target="_blank">Khushal Sharma</a> |
134 | | -* <a href="https://github.com/KayvanMazaheri" target="_blank">Kayvan Mazaheri</a> |
135 | | -* <a href="https://github.com/kalbhor" target="_blank">Lakshay Kalbhor</a> |
136 | | -* <a href="https://github.com/Pradhvan">Pradhvan Bisht</a> |
| 1 | +# Python Scripts |
| 2 | + |
| 3 | +> This Repo is a collection of Various python scripts. |
| 4 | +
|
| 5 | +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. |
| 6 | + |
| 7 | + |
| 8 | +## Installation |
| 9 | + |
| 10 | +Make sure you've already git installed. Then you can run the following commands to get the scripts on your computer: |
| 11 | + |
| 12 | +OS X, Linux and Windows: |
| 13 | + |
| 14 | +```bash |
| 15 | +git clone https://github.com/Logan1x/Python-Scripts.git |
| 16 | +cd Python-Scripts |
| 17 | +``` |
| 18 | + |
| 19 | +### Meme Density |
| 20 | +This script tells you the amount of memes in your facebook feed |
| 21 | + |
| 22 | + |
| 23 | +```bash |
| 24 | +pip install memedensity |
| 25 | + |
| 26 | +memedensity |
| 27 | +``` |
| 28 | + |
| 29 | + |
| 30 | +## Usage |
| 31 | +### Facebook Auto Post |
| 32 | +This is python script that log in into facebook and post the status. |
| 33 | + |
| 34 | +You can see live execution of this script [here](https://www.youtube.com/watch?v=YES16mVB0lQ). |
| 35 | + |
| 36 | + |
| 37 | +```bash |
| 38 | +pip install -r facebook-auto-post.requirements.txt |
| 39 | +python facebook-auto-post.py |
| 40 | +``` |
| 41 | + |
| 42 | +### Locate Me |
| 43 | +Run this script and it will locate you. |
| 44 | + |
| 45 | +This will tell you your |
| 46 | + |
| 47 | +1. City |
| 48 | +2. Region |
| 49 | +3. Country |
| 50 | +4. Latitude & Longitude. |
| 51 | +5. Your Internet Service Provider |
| 52 | + |
| 53 | + |
| 54 | +This uses [Checkip](http://checkip.dyndns.com/) and [ipinfo.io](http://ipinfo.io/developers). |
| 55 | + |
| 56 | +```bash |
| 57 | +python locate-me.py |
| 58 | +``` |
| 59 | + |
| 60 | +### Mi Community Bot |
| 61 | +This python script uses selenium module in python to automate the thread posting. |
| 62 | + |
| 63 | +You can see live execution of this script [here.](https://www.youtube.com/watch?v=gWRF7-_xhx0) |
| 64 | + |
| 65 | +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) |
| 66 | + |
| 67 | +```bash |
| 68 | +pip install -r mi-community-bot.requirements.txt |
| 69 | +python mi-community-bot.py |
| 70 | +``` |
| 71 | + |
| 72 | +### Password Strength Checker |
| 73 | +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. |
| 74 | + |
| 75 | + |
| 76 | +```bash |
| 77 | +python password-strength-checker.py |
| 78 | +``` |
| 79 | + |
| 80 | +### YouTube Bot |
| 81 | +This is a simple python script that increases your video count/ views. |
| 82 | +Log out from all google accounts and run this. |
| 83 | + |
| 84 | +```bash |
| 85 | +# For Linux Users |
| 86 | +python youtube-bot-linux.py |
| 87 | + |
| 88 | +# For Windows Users |
| 89 | +python youtube-bot-windows.py |
| 90 | +``` |
| 91 | + |
| 92 | +#### NOTE: |
| 93 | +In case your browser stoped working delete/comment the following line in the script. |
| 94 | +#### _Linux_ |
| 95 | + `os.system(" killall -9 " + brow)` |
| 96 | +#### _Windows_ |
| 97 | + `os.system("TASKKILL /F /IM " + brow + ".exe")` |
| 98 | + |
| 99 | + |
| 100 | +### Blog Reader |
| 101 | + |
| 102 | +Blog Reader is the terminal reader that scrapes the article from [planet dgplug](http://planet.dgplug.org/) and displays it on the terminal. |
| 103 | + |
| 104 | +It seprates the content accrding to the screen size. |
| 105 | + |
| 106 | +### Find Large Files |
| 107 | + |
| 108 | +Searches a file location and subdirectories for files larger than a given size. |
| 109 | +Useful for phones which might hide files in FileExplorer, but allow use as flash memory. |
| 110 | +Directly prints results if run directly. |
| 111 | +May also be imported, yielding results one by one. |
| 112 | + |
| 113 | + |
| 114 | +## Release History |
| 115 | + |
| 116 | +* 0.0.1 |
| 117 | + * Work in progress |
| 118 | + |
| 119 | +## Meta |
| 120 | + |
| 121 | +Khushal Sharma – [@Khushal](https://twitter.com/herkuch) – [email protected] |
| 122 | + |
| 123 | +Distributed under the MIT LICENSE license. See ``LICENSE`` for more information. |
| 124 | + |
| 125 | +[Logan1x](https://github.com/Logan1x/) |
| 126 | + |
| 127 | +## Contributing |
| 128 | + |
| 129 | +1. Fork it (<https://github.com/Logan1x/Python-Scripts/fork>) |
| 130 | +2. Create your feature branch (`git checkout -b feature/fooBar`) |
| 131 | +3. Commit your changes (`git commit -am 'Add some fooBar'`) |
| 132 | +4. Push to the branch (`git push origin feature/fooBar`) |
| 133 | +5. Create a new Pull Request |
| 134 | +6. Add your name with a link to your profile in the contributors list. |
| 135 | + |
| 136 | +## Contributors |
| 137 | + |
| 138 | +The following people helped in creating the above content. |
| 139 | + |
| 140 | +* <a href="https://github.com/Logan1x" target="_blank">Khushal Sharma</a> |
| 141 | +* <a href="https://github.com/KayvanMazaheri" target="_blank">Kayvan Mazaheri</a> |
| 142 | +* <a href="https://github.com/kalbhor" target="_blank">Lakshay Kalbhor</a> |
| 143 | +* <a href="https://github.com/Pradhvan">Pradhvan Bisht</a> |
| 144 | +* <a href="https://github.com/toonarmycaptain" target="_blank">David Antonini</a> |
0 commit comments