Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
.idea/
venv/
spamer/
**/__pycache__/
users_json_files/
bot/bot_main/for_photo_creation/photo_size.txt
test.py
bot_db.sql
temp_data/
database_dump
.env
photo_size.txt
test.py
31 changes: 31 additions & 0 deletions bot/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
from .commands import (
start_command,
help_command,
keywords_command,
time_command,
date_calculator_command,
add_text_to_photo_command,
weather_command,
currency_converter_command,
task_scheduler_command,
password_generator_command,
)
from .keywords import (
keywords_for_interaction
)
from .bot_starter import MyBot

__all__ = (
"start_command",
"help_command",
"keywords_command",
"time_command",
"date_calculator_command",
"add_text_to_photo_command",
"weather_command",
"currency_converter_command",
"task_scheduler_command",
"password_generator_command",
"keywords_for_interaction",
"MyBot",
)
17 changes: 0 additions & 17 deletions bot/bot_main/bot_classes/ConnectionDB.py

This file was deleted.

7 changes: 0 additions & 7 deletions bot/bot_main/bot_classes/ConverterForm.py

This file was deleted.

5 changes: 0 additions & 5 deletions bot/bot_main/bot_classes/DaysToBirthday.py

This file was deleted.

3 changes: 0 additions & 3 deletions bot/bot_main/bot_classes/DuplicateDescriptionError.py

This file was deleted.

9 changes: 0 additions & 9 deletions bot/bot_main/bot_classes/PasswordGeneratorStates.py

This file was deleted.

5 changes: 0 additions & 5 deletions bot/bot_main/bot_classes/PhotoInscription.py

This file was deleted.

5 changes: 0 additions & 5 deletions bot/bot_main/bot_classes/SearchTerm.py

This file was deleted.

28 changes: 0 additions & 28 deletions bot/bot_main/bot_classes/StatisticsTable.py

This file was deleted.

43 changes: 0 additions & 43 deletions bot/bot_main/bot_classes/StickerTable.py

This file was deleted.

7 changes: 0 additions & 7 deletions bot/bot_main/bot_classes/TaskScheduler.py

This file was deleted.

5 changes: 0 additions & 5 deletions bot/bot_main/bot_classes/UserSticker.py

This file was deleted.

86 changes: 0 additions & 86 deletions bot/bot_main/bot_classes/UserToken.py

This file was deleted.

49 changes: 0 additions & 49 deletions bot/bot_main/bot_classes/UsersDataStore.py

This file was deleted.

53 changes: 0 additions & 53 deletions bot/bot_main/commands_and_keywords/add_text_to_photo_command.py

This file was deleted.

Loading