File tree 17 files changed +132
-28
lines changed
17 files changed +132
-28
lines changed File renamed without changes.
Original file line number Diff line number Diff line change
1
+ This repository consists of a list of python scripts to automate few tasks.
2
+
3
+ You can contribute by adding more python scripts which can be used to automate things. Some of already done are listed below.
4
+ Incase you have anything to be followed while executing the python script mention it as well
5
+
6
+
7
+ # Python Script
8
+
9
+
10
+ ## Script - Chessboard
11
+
12
+ Create a chesboard using matplotlib
13
+ ChessBoard.py
14
+
15
+
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ This repository consists of a list of python scripts to automate few tasks.
2
+
3
+ You can contribute by adding more python scripts which can be used to automate things. Some of already done are listed below.
4
+ Incase you have anything to be followed while executing the python script mention it as well
5
+
6
+
7
+ # Python Script
8
+
9
+ ## Script - Digital Clock
10
+
11
+ DigitalClock.py
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ This repository consists of a list of python scripts to automate few tasks.
2
+
3
+ You can contribute by adding more python scripts which can be used to automate things. Some of already done are listed below.
4
+ Incase you have anything to be followed while executing the python script mention it as well
5
+
6
+
7
+ # Python Script
8
+
9
+
10
+ ## Script - Popup Window
11
+
12
+ Displaying a popup window
13
+ DisplayPopupWindow.py
14
+
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ This repository consists of a list of python scripts to automate few tasks.
2
+
3
+ You can contribute by adding more python scripts which can be used to automate things. Some of already done are listed below.
4
+ Incase you have anything to be followed while executing the python script mention it as well
5
+
6
+
7
+ # Python Scripts
8
+
9
+
10
+ ## Script - Fake Profiles
11
+
12
+ Get many fake profiles using python
13
+ FakeProfile.py
14
+
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ This repository consists of a list of python scripts to automate few tasks.
2
+
3
+ You can contribute by adding more python scripts which can be used to automate things. Some of already done are listed below.
4
+ Incase you have anything to be followed while executing the python script mention it as well
5
+
6
+
7
+ # Python Scripts
8
+
9
+ ## Script - Font Art
10
+
11
+ Display a font art using python
12
+ FontArt.py
Original file line number Diff line number Diff line change
1
+ This repository consists of a list of python scripts to automate few tasks.
2
+
3
+ You can contribute by adding more python scripts which can be used to automate things. Some of already done are listed below.
4
+ Incase you have anything to be followed while executing the python script mention it as well
5
+
6
+
7
+ # Python Script
8
+
9
+ ## Script - Take a break
10
+
11
+ Python code to take a break while working long hours
12
+ TakeABreak.py
13
+
Original file line number Diff line number Diff line change 1
- #This program will take a break in your computer.
2
- #For every two hours youtube.com will open in your browser for a period of 3 breaks
3
- import webbrowser
4
- import time
5
- total_breaks = 3
6
- break_count = 0
7
- print ("This program started on" + time .ctime ())
8
- while (break_count < total_breaks ):
9
- time .sleep (2 * 60 * 60 )
10
- webbrowser .open ("http://www.youtube.com" )
11
- break_count += 1 ;
1
+ #This program will take a break in your computer.
2
+ #For every two hours youtube.com will open in your browser for a period of 3 breaks
3
+ import webbrowser
4
+ import time
5
+ total_breaks = 3
6
+ break_count = 0
7
+ print ("This program started on" + time .ctime ())
8
+ while (break_count < total_breaks ):
9
+ time .sleep (2 * 60 * 60 )
10
+ webbrowser .open ("http://www.youtube.com" )
11
+ break_count += 1 ;
Original file line number Diff line number Diff line change
1
+ This repository consists of a list of python scripts to automate few tasks.
2
+
3
+ You can contribute by adding more python scripts which can be used to automate things. Some of already done are listed below.
4
+ Incase you have anything to be followed while executing the python script mention it as well
5
+
6
+
7
+ # Python Script
8
+
9
+ ## Script - Turtle Graphics
10
+
11
+ Code using turtle graphics
12
+ TurtleGraphics.py
13
+
Original file line number Diff line number Diff line change 1
- #Python Turtle Graphics
2
- import turtle
3
- window = turtle .Screen ()
4
-
5
- window .bgcolor ("pink" )
6
- dhanush = turtle .Turtle ()
7
- dhanush .shape ("turtle" )
8
- dhanush .color ("green" )
9
- dhanush .speed (5 )
10
- def draw_square (dhanush ):
11
- for i in range (1 ,5 ):
12
- dhanush .forward (100 )
13
- dhanush .left (90 )
14
- for i in range (1 ,38 ):
15
- draw_square (dhanush )
16
- dhanush .right (10 )
17
- dhanush .forward (300 )
1
+ #Python Turtle Graphics
2
+ import turtle
3
+ window = turtle .Screen ()
4
+
5
+ window .bgcolor ("pink" )
6
+ dhanush = turtle .Turtle ()
7
+ dhanush .shape ("turtle" )
8
+ dhanush .color ("green" )
9
+ dhanush .speed (5 )
10
+ def draw_square (dhanush ):
11
+ for i in range (1 ,5 ):
12
+ dhanush .forward (100 )
13
+ dhanush .left (90 )
14
+ for i in range (1 ,38 ):
15
+ draw_square (dhanush )
16
+ dhanush .right (10 )
17
+ dhanush .forward (300 )
Original file line number Diff line number Diff line change
1
+ This repository consists of a list of python scripts to automate few tasks.
2
+
3
+ You can contribute by adding more python scripts which can be used to automate things. Some of already done are listed below.
4
+ Incase you have anything to be followed while executing the python script mention it as well
5
+
6
+
7
+ # Python Script
8
+
9
+ ## Script - Video Downloader
10
+
11
+ VideoDownloader.py
12
+
File renamed without changes.
You can’t perform that action at this time.
0 commit comments