Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anthonyjdella/airbnb-cleaning-calendar
📅 Automatically adds time on my calendar when a guest checks out, so I block time for cleaning.
https://github.com/anthonyjdella/airbnb-cleaning-calendar
Last synced: 1 day ago
JSON representation
📅 Automatically adds time on my calendar when a guest checks out, so I block time for cleaning.
- Host: GitHub
- URL: https://github.com/anthonyjdella/airbnb-cleaning-calendar
- Owner: anthonyjdella
- Created: 2024-09-06T06:54:52.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-06T19:42:14.000Z (5 months ago)
- Last Synced: 2025-01-27T04:27:17.285Z (9 days ago)
- Language: Python
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Airbnb Cleaning Calendar
This cron job automatically blocks cleaning time on your calendar every 14 days when a guest checks out. This ensures your calendar remains clear and you stay on top of cleaning schedules.
## Usage
This makes use of the Google Calendar API and the exported Airbnb calendar bookings.
The cron job runs every 14 days at 12:16 PM local time. If it has run within the last 14 days, it won't execute again. After 14 days, it will update the next 14 Airbnb events and block time on your calendar.
### Editing the Cron Job
To edit the cron job, use the following command:
```bash
crontab -e
``````bash
16 12 * * * /Users/anthonyjdella/.pyenv/shims/python3 /Users/anthonyjdella/Desktop/Git-Projects/airbnb-cleaning-calendar/check_and_run.py >> /Users/anthonyjdella/Desktop/Git-Projects/airbnb-cleaning-calendar/test_cron.log 2>&1
```To view the cron job, use the following command:
```bash
crontab -l
```