Initial commit

This commit is contained in:
2026-02-23 22:48:25 +00:00
commit b8182ead88
46 changed files with 1845 additions and 0 deletions

28
Bot/__main__.py Normal file
View File

@@ -0,0 +1,28 @@
__author__ = 'hor00s'
__email__ = 'hor00s199@gmail.com'
__version__ = '1.0.0 beta'
__description__ = 'This bot will go through a sub and\
alert mods through modmail if a post has been deleted'
__license__ = 'MIT'
__dependencies__ = ('praw',)
__disclaimer__ = """Disclaimer:
This Python bot is a personal hobby project created for fun and learning purposes.
It is not intended for any commercial use or critical tasks.
While efforts have been made to ensure its functionality, there may be bugs and/or errors.
The bot is provided as-is, without any warranty or guarantee of its performance.
Use it at your own risk.
The author and maintainers of this bot are not responsible for any damages, data loss,
or any adverse consequences that may arise from its use.
We do not collect or store any personal data or information from users."""
import sys
from main import main
if __name__ == '__main__':
sys.exit(
main()
)