├── .github └── FUNDING.yml ├── Automated_Messaging.py └── message.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: codeofthefuture 2 | -------------------------------------------------------------------------------- /Automated_Messaging.py: -------------------------------------------------------------------------------- 1 | # Automated text messaging 2 | 3 | # Import relevant modules 4 | import time 5 | import pyautogui 6 | 7 | 8 | # Let's do some coding! 9 | def SendMessage(): 10 | time.sleep(4) 11 | text = open('message.txt') 12 | for each_line in text: 13 | pyautogui.typewrite(each_line) 14 | pyautogui.press('enter') 15 | 16 | 17 | SendMessage() 18 | -------------------------------------------------------------------------------- /message.txt: -------------------------------------------------------------------------------- 1 | {Man} Once upon a time there was a lovely princess. 2 | 3 | But she had an enchantment upon her of a fearful sort which could only 4 | 5 | be broken by love's first kiss. 6 | 7 | She was locked away in a castle guarded by a terrible fire-breathing 8 | 9 | dragon. 10 | 11 | Many brave knigts had attempted to free her from this dreadful prison, 12 | 13 | but non prevailed. 14 | 15 | She waited in the dragon's keep in the highest room of the tallest 16 | 17 | tower for her true love and true love's first kiss. 18 | 19 | {Laughing} 20 | 21 | Like that's ever gonna happen. 22 | 23 | {Paper Rusting, Toilet Flushes} 24 | 25 | What a load of - 26 | 27 | 28 | 29 | Somebody once told me the world is gonna roll me 30 | 31 | I ain't the sharpest tool in the shed 32 | 33 | She was lookin' kind of dumb with her finger and her thumb 34 | 35 | In the shape of an "L" on her forehead 36 | 37 | The years start comin' and they don't stop comin' 38 | 39 | Fed to the rules and hit the ground runnin' 40 | 41 | Didn't make sense not to live for fun 42 | 43 | Your brain gets smart but your head gets dumb 44 | 45 | So much to do so much to see 46 | 47 | So what's wrong with takin' the backstreets 48 | 49 | You'll never know if you don't go 50 | 51 | You'll never shine if you don't glow 52 | 53 | Hey, now You're an all-star 54 | 55 | Get your game on, go play 56 | 57 | Hey, now You're a rock star 58 | 59 | Get the show on, get paid 60 | 61 | And all that glitters is gold 62 | 63 | Only shootin' stars break the mold 64 | 65 | It's a cool place and they say it gets colder 66 | 67 | You're bundled up now but wait till you get older 68 | 69 | But the meteor men beg to differ 70 | 71 | Judging by the hole in the satellite picture 72 | 73 | The ice we skate is gettin' pretty thin 74 | 75 | The water's getting warm so you might as well swim 76 | 77 | My world's on fire 78 | 79 | How 'bout yours 80 | 81 | That's the way I like it and I'll never get bored 82 | 83 | Hey, now, you're an all-star 84 | --------------------------------------------------------------------------------