micheuslima / girlfriend_text

Send text to girlfriend in the morning

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Girlfriend/Boyfriend Text

Send text to girlfriend/boyfriend (or really anyone with a phone number) in the morning

1. Configure your settings in utils.py.

phone_number = "+15555555555"
# enter the target phone number inside quotation marks. use the format "+15555555555"
message = ["Good Morning Babe", "Good morning my love", "Good morning cutie 😊"]
# just make sure the message is inside quotation marks. An example is "Did you sleep well?"
scheduled_time = "08:00"
# make sure the hour has 2 digits (24-hour standard).

Note: If you want to send a message everyday at 8:45 AM, you will need to set scheduled_time = "08:45" in utils.py

2. Install requirements

python3 -m pip install -r requirements.txt

3. Run the script

python3 main.py

Note: If you want run in background

python3 main.py > pid.txt 2>&1 & 

Jobs can be accessed with the jobs command. jobs will show you the running jobs, and number them. You could then talk about the jobs using a % followed by the number like kill %1 or so.

About

Send text to girlfriend in the morning


Languages

Language:Python 66.1%Language:AppleScript 33.9%