Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/adhikary97/girlfriend_text

Send text to girlfriend in the morning
https://github.com/adhikary97/girlfriend_text

applescript bash python

Last synced: about 1 month ago
JSON representation

Send text to girlfriend in the morning

Awesome Lists containing this project

README

        

# 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`.
```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
```bash
python3 -m pip install -r requirements.txt
```

## 3. Run the script
```bash
python3 main.py
```
Note: If you want run in background

```bash
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.*