diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 9a0cbd2..0000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.mypy_cache/ -__pycache__ diff --git a/README.md b/README.md index c53b10d..fd4c7d6 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ script sends an email notification. 4. Set up a cron job to run the script periodically. For example, to run it every hour: ```bash - 0 * * * * /usr/bin/python3 /path/to/conference-check/check.py + 0 * * * * /usr/bin/python3 /path/to/conference-check/script.py ``` ## Script Description @@ -52,20 +52,12 @@ You can customize the script further by modifying the following: - `not_here_list`: Add or remove messages that indicate the website is not live. - `AGENT` and `headers`: Modify the user-agent and headers used for HTTP requests. -### How to Run - -To execute the script manually, run the following command: - -```bash -/usr/bin/python3 /path/to/conference-check/check.py -``` - ## Example -To add a conference to the `conferences` list, use the following format: +Here's an example of how to add a conference to the `conferences` list: ```python -("Example Conference", "https://example-conference.com/2024/") +("Example Conference", "https://example-conference.com/") ``` ## License diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index f229360..0000000 --- a/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -requests