├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Pipfile ├── Pipfile.lock ├── README.md ├── pytest.ini ├── scripts ├── compare.py ├── count_subreddits.py ├── database_sandbox.py ├── explain_parse.py ├── find_cakedays.py ├── find_remind_me.py ├── iterate_backups.py ├── iterate_backups_longest.py ├── migration_1.py ├── migration_2.py ├── migration_4.py ├── pushshift.py ├── pushshift_beta_integrity.py ├── pushshift_lag.py ├── send_messages.py └── update_wiki.py ├── src ├── __init__.py ├── classes │ ├── comment.py │ ├── key_value.py │ ├── reminder.py │ ├── stat.py │ ├── subreddit.py │ └── user.py ├── comments.py ├── counters.py ├── database │ ├── UtcDateTime.py │ ├── __init__.py │ ├── _comments.py │ ├── _keystore.py │ ├── _reminders.py │ ├── _stats.py │ ├── _subreddits.py │ └── _users.py ├── main.py ├── messages.py ├── notifications.py ├── static.py ├── stats.py └── utils.py ├── test ├── comment_test.py ├── conftest.py ├── dateparsing_test.py ├── message_test.py ├── reminder_test.py └── stat_test.py ├── timezones.txt └── todo.txt /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/README.md -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/pytest.ini -------------------------------------------------------------------------------- /scripts/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/scripts/compare.py -------------------------------------------------------------------------------- /scripts/count_subreddits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/scripts/count_subreddits.py -------------------------------------------------------------------------------- /scripts/database_sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/scripts/database_sandbox.py -------------------------------------------------------------------------------- /scripts/explain_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/scripts/explain_parse.py -------------------------------------------------------------------------------- /scripts/find_cakedays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/scripts/find_cakedays.py -------------------------------------------------------------------------------- /scripts/find_remind_me.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/scripts/find_remind_me.py -------------------------------------------------------------------------------- /scripts/iterate_backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/scripts/iterate_backups.py -------------------------------------------------------------------------------- /scripts/iterate_backups_longest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/scripts/iterate_backups_longest.py -------------------------------------------------------------------------------- /scripts/migration_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/scripts/migration_1.py -------------------------------------------------------------------------------- /scripts/migration_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/scripts/migration_2.py -------------------------------------------------------------------------------- /scripts/migration_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/scripts/migration_4.py -------------------------------------------------------------------------------- /scripts/pushshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/scripts/pushshift.py -------------------------------------------------------------------------------- /scripts/pushshift_beta_integrity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/scripts/pushshift_beta_integrity.py -------------------------------------------------------------------------------- /scripts/pushshift_lag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/scripts/pushshift_lag.py -------------------------------------------------------------------------------- /scripts/send_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/scripts/send_messages.py -------------------------------------------------------------------------------- /scripts/update_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/scripts/update_wiki.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/classes/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/classes/comment.py -------------------------------------------------------------------------------- /src/classes/key_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/classes/key_value.py -------------------------------------------------------------------------------- /src/classes/reminder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/classes/reminder.py -------------------------------------------------------------------------------- /src/classes/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/classes/stat.py -------------------------------------------------------------------------------- /src/classes/subreddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/classes/subreddit.py -------------------------------------------------------------------------------- /src/classes/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/classes/user.py -------------------------------------------------------------------------------- /src/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/comments.py -------------------------------------------------------------------------------- /src/counters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/counters.py -------------------------------------------------------------------------------- /src/database/UtcDateTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/database/UtcDateTime.py -------------------------------------------------------------------------------- /src/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/database/__init__.py -------------------------------------------------------------------------------- /src/database/_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/database/_comments.py -------------------------------------------------------------------------------- /src/database/_keystore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/database/_keystore.py -------------------------------------------------------------------------------- /src/database/_reminders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/database/_reminders.py -------------------------------------------------------------------------------- /src/database/_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/database/_stats.py -------------------------------------------------------------------------------- /src/database/_subreddits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/database/_subreddits.py -------------------------------------------------------------------------------- /src/database/_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/database/_users.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/main.py -------------------------------------------------------------------------------- /src/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/messages.py -------------------------------------------------------------------------------- /src/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/notifications.py -------------------------------------------------------------------------------- /src/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/static.py -------------------------------------------------------------------------------- /src/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/stats.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/src/utils.py -------------------------------------------------------------------------------- /test/comment_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/test/comment_test.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/dateparsing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/test/dateparsing_test.py -------------------------------------------------------------------------------- /test/message_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/test/message_test.py -------------------------------------------------------------------------------- /test/reminder_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/test/reminder_test.py -------------------------------------------------------------------------------- /test/stat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/test/stat_test.py -------------------------------------------------------------------------------- /timezones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/timezones.txt -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Watchful1/RemindMeBot/HEAD/todo.txt --------------------------------------------------------------------------------