├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── main.yml │ └── pr.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── contributors.yaml ├── dev.Dockerfile ├── docker-compose.override.yml ├── docker-compose.prod.yml ├── docker-compose.yml ├── requirements.txt └── src ├── .sample.env ├── MANIFEST.in ├── babel.cfg ├── fbosbot ├── __init__.py ├── db.py ├── schema.sql ├── static │ └── img │ │ ├── contribute.gif │ │ └── github.jpg └── templates │ └── privacy.html ├── locales ├── ar │ └── LC_MESSAGES │ │ └── messages.po ├── es │ └── LC_MESSAGES │ │ └── messages.po ├── fr │ └── LC_MESSAGES │ │ └── messages.po ├── gu │ └── LC_MESSAGES │ │ └── messages.po ├── hi │ └── LC_MESSAGES │ │ └── messages.po ├── ru │ └── LC_MESSAGES │ │ └── messages.po ├── rw │ └── LC_MESSAGES │ │ └── messages.po └── si │ └── LC_MESSAGES │ └── messages.po ├── services ├── __init__.py ├── messenger.py └── profile.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── test_factory.py ├── test_services_messenger.py └── test_services_profile.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/README.md -------------------------------------------------------------------------------- /contributors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/contributors.yaml -------------------------------------------------------------------------------- /dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/dev.Dockerfile -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/.sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/.sample.env -------------------------------------------------------------------------------- /src/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/MANIFEST.in -------------------------------------------------------------------------------- /src/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/babel.cfg -------------------------------------------------------------------------------- /src/fbosbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/fbosbot/__init__.py -------------------------------------------------------------------------------- /src/fbosbot/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/fbosbot/db.py -------------------------------------------------------------------------------- /src/fbosbot/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/fbosbot/schema.sql -------------------------------------------------------------------------------- /src/fbosbot/static/img/contribute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/fbosbot/static/img/contribute.gif -------------------------------------------------------------------------------- /src/fbosbot/static/img/github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/fbosbot/static/img/github.jpg -------------------------------------------------------------------------------- /src/fbosbot/templates/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/fbosbot/templates/privacy.html -------------------------------------------------------------------------------- /src/locales/ar/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/locales/ar/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /src/locales/es/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/locales/es/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /src/locales/fr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/locales/fr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /src/locales/gu/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/locales/gu/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /src/locales/hi/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/locales/hi/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /src/locales/ru/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/locales/ru/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /src/locales/rw/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/locales/rw/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /src/locales/si/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/locales/si/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /src/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/services/__init__.py -------------------------------------------------------------------------------- /src/services/messenger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/services/messenger.py -------------------------------------------------------------------------------- /src/services/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/services/profile.py -------------------------------------------------------------------------------- /src/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/setup.cfg -------------------------------------------------------------------------------- /src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/setup.py -------------------------------------------------------------------------------- /src/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/tests/__init__.py -------------------------------------------------------------------------------- /src/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/tests/conftest.py -------------------------------------------------------------------------------- /src/tests/test_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/tests/test_factory.py -------------------------------------------------------------------------------- /src/tests/test_services_messenger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/tests/test_services_messenger.py -------------------------------------------------------------------------------- /src/tests/test_services_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbdevelopercircles/open-source-edu-bot/HEAD/src/tests/test_services_profile.py --------------------------------------------------------------------------------