├── Automate Whatsapp.py ├── Chrome Logo.py └── LICENSE /Automate Whatsapp.py: -------------------------------------------------------------------------------- 1 | #Before running this script you have to download pywhatkit by running below command in terminal 2 | #pip install pywhatkit 3 | 4 | import pywhatkit 5 | num = input("Enter the number of the reciever with +91") 6 | msg = input("Enter the message that you want to send....") 7 | hour = int(input("Enter time in hour in 24 hour format.....")) 8 | min = int(input("Enter minute...")) 9 | print("Starting.....") 10 | 11 | pywhatkit.sendwhatmsg(num,msg,hour,min) 12 | -------------------------------------------------------------------------------- /Chrome Logo.py: -------------------------------------------------------------------------------- 1 | from turtle import * 2 | 3 | radius=120 4 | #heading position -150 is opposite of 150 degree angle 5 | setheading(-150) 6 | penup() 7 | #-Red shape of the Chrome Logo 8 | color("red") 9 | begin_fill() 10 | forward(radius) 11 | pendown() 12 | right(90) #set the angle to 90 13 | circle(-radius, 120) 14 | #forward distance is equal to 180 15 | forward(radius*3**.5) 16 | left(120) 17 | #draw the circle angle 120 and radius of 240 18 | circle(2*radius, 120) 19 | left(60) 20 | forward(radius*3**.5) 21 | end_fill() 22 | 23 | #-------------Green ------------- 24 | 25 | left(180) 26 | color("green") 27 | begin_fill() 28 | forward(radius*3**.5) 29 | left(120) 30 | circle(2*radius, 120) 31 | left(60) 32 | forward(radius*3**.5) 33 | left(180) 34 | circle(-radius, 120) 35 | end_fill() 36 | 37 | #-------------Yellow ------------- 38 | 39 | left(180) 40 | circle(radius,120) 41 | color("yellow") 42 | begin_fill() 43 | circle(radius, 120) 44 | right(180) 45 | forward(radius*3**.5) 46 | right(60) 47 | circle(-2*radius, 120) 48 | right(120) 49 | forward(radius*3**.5) 50 | end_fill() 51 | 52 | #-------------Blue Circle------------- 53 | 54 | penup() 55 | left(98) 56 | forward(radius/20) 57 | setheading(60) 58 | color("blue") 59 | pendown() 60 | begin_fill() 61 | circle(distance(0,0)) 62 | end_fill() 63 | hideturtle() 64 | 65 | done() 66 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Mr Aman yadav 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------