Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/adhikary97/girlfriend_text
- Owner: adhikary97
- Created: 2021-03-03T06:30:13.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-24T19:39:33.000Z (over 3 years ago)
- Last Synced: 2024-08-01T21:58:16.856Z (5 months ago)
- Topics: applescript, bash, python
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 210
- Watchers: 10
- Forks: 75
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- starred - adhikary97/girlfriend_text - Send text to girlfriend in the morning (Python)
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.*