├── LICENSE ├── README.md ├── config.py ├── db ├── __init__.py ├── column.py ├── count.py ├── db_config.py ├── del_row.py ├── insert.py ├── make.py ├── row.py └── update.py ├── img └── randomChatBBOT_image.jpg ├── main.py ├── make_db.py ├── markup ├── __init__.py ├── make_username.py ├── markup_config.py └── username.py ├── privacy_policy.txt ├── requirements.txt ├── sender ├── __init__.py ├── delete.py ├── edit_message.py ├── get_reply.py ├── reply_message.py ├── send_message.py └── send_to_partner.py ├── terms_and_conditions.txt └── user ├── __init__.py ├── add_to_waiting.py ├── add_user.py ├── check_reports.py ├── del_session_message.py ├── del_waiting.py ├── delete_sessions.py ├── found.py ├── get_session_messages.py ├── get_sessions.py ├── in_sessions.py ├── kill_session.py ├── make_report.py ├── make_session.py ├── partner.py ├── partner_msg_id.py ├── save_username.py ├── sessions_time.py ├── username.py └── waiting.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/config.py -------------------------------------------------------------------------------- /db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/db/__init__.py -------------------------------------------------------------------------------- /db/column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/db/column.py -------------------------------------------------------------------------------- /db/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/db/count.py -------------------------------------------------------------------------------- /db/db_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/db/db_config.py -------------------------------------------------------------------------------- /db/del_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/db/del_row.py -------------------------------------------------------------------------------- /db/insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/db/insert.py -------------------------------------------------------------------------------- /db/make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/db/make.py -------------------------------------------------------------------------------- /db/row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/db/row.py -------------------------------------------------------------------------------- /db/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/db/update.py -------------------------------------------------------------------------------- /img/randomChatBBOT_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/img/randomChatBBOT_image.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/main.py -------------------------------------------------------------------------------- /make_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/make_db.py -------------------------------------------------------------------------------- /markup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/markup/__init__.py -------------------------------------------------------------------------------- /markup/make_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/markup/make_username.py -------------------------------------------------------------------------------- /markup/markup_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/markup/markup_config.py -------------------------------------------------------------------------------- /markup/username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/markup/username.py -------------------------------------------------------------------------------- /privacy_policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/privacy_policy.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/requirements.txt -------------------------------------------------------------------------------- /sender/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/sender/__init__.py -------------------------------------------------------------------------------- /sender/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/sender/delete.py -------------------------------------------------------------------------------- /sender/edit_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/sender/edit_message.py -------------------------------------------------------------------------------- /sender/get_reply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/sender/get_reply.py -------------------------------------------------------------------------------- /sender/reply_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/sender/reply_message.py -------------------------------------------------------------------------------- /sender/send_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/sender/send_message.py -------------------------------------------------------------------------------- /sender/send_to_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/sender/send_to_partner.py -------------------------------------------------------------------------------- /terms_and_conditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/terms_and_conditions.txt -------------------------------------------------------------------------------- /user/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/__init__.py -------------------------------------------------------------------------------- /user/add_to_waiting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/add_to_waiting.py -------------------------------------------------------------------------------- /user/add_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/add_user.py -------------------------------------------------------------------------------- /user/check_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/check_reports.py -------------------------------------------------------------------------------- /user/del_session_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/del_session_message.py -------------------------------------------------------------------------------- /user/del_waiting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/del_waiting.py -------------------------------------------------------------------------------- /user/delete_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/delete_sessions.py -------------------------------------------------------------------------------- /user/found.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/found.py -------------------------------------------------------------------------------- /user/get_session_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/get_session_messages.py -------------------------------------------------------------------------------- /user/get_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/get_sessions.py -------------------------------------------------------------------------------- /user/in_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/in_sessions.py -------------------------------------------------------------------------------- /user/kill_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/kill_session.py -------------------------------------------------------------------------------- /user/make_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/make_report.py -------------------------------------------------------------------------------- /user/make_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/make_session.py -------------------------------------------------------------------------------- /user/partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/partner.py -------------------------------------------------------------------------------- /user/partner_msg_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/partner_msg_id.py -------------------------------------------------------------------------------- /user/save_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/save_username.py -------------------------------------------------------------------------------- /user/sessions_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/sessions_time.py -------------------------------------------------------------------------------- /user/username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/username.py -------------------------------------------------------------------------------- /user/waiting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAwiteb/randomChat/HEAD/user/waiting.py --------------------------------------------------------------------------------