├── .gitignore ├── LICENSE ├── README.md ├── example-config.yaml ├── example-registration.yaml ├── matrix_imposter_bot ├── __init__.py ├── __main__.py ├── apputils.py ├── config.py ├── main.py ├── messages.py ├── meta.py ├── sql │ └── db_prep.sql └── utils.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohnson22/matrix-imposter-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohnson22/matrix-imposter-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohnson22/matrix-imposter-bot/HEAD/README.md -------------------------------------------------------------------------------- /example-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohnson22/matrix-imposter-bot/HEAD/example-config.yaml -------------------------------------------------------------------------------- /example-registration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohnson22/matrix-imposter-bot/HEAD/example-registration.yaml -------------------------------------------------------------------------------- /matrix_imposter_bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohnson22/matrix-imposter-bot/HEAD/matrix_imposter_bot/__init__.py -------------------------------------------------------------------------------- /matrix_imposter_bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohnson22/matrix-imposter-bot/HEAD/matrix_imposter_bot/__main__.py -------------------------------------------------------------------------------- /matrix_imposter_bot/apputils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohnson22/matrix-imposter-bot/HEAD/matrix_imposter_bot/apputils.py -------------------------------------------------------------------------------- /matrix_imposter_bot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohnson22/matrix-imposter-bot/HEAD/matrix_imposter_bot/config.py -------------------------------------------------------------------------------- /matrix_imposter_bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohnson22/matrix-imposter-bot/HEAD/matrix_imposter_bot/main.py -------------------------------------------------------------------------------- /matrix_imposter_bot/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohnson22/matrix-imposter-bot/HEAD/matrix_imposter_bot/messages.py -------------------------------------------------------------------------------- /matrix_imposter_bot/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohnson22/matrix-imposter-bot/HEAD/matrix_imposter_bot/meta.py -------------------------------------------------------------------------------- /matrix_imposter_bot/sql/db_prep.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohnson22/matrix-imposter-bot/HEAD/matrix_imposter_bot/sql/db_prep.sql -------------------------------------------------------------------------------- /matrix_imposter_bot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrjohnson22/matrix-imposter-bot/HEAD/matrix_imposter_bot/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | waitress 3 | PyYAML 4 | requests 5 | --------------------------------------------------------------------------------