├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── mattersend.py ├── setup.cfg ├── setup.py ├── tests └── payload_test.py └── update_emoji_map.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorromeo/mattersend/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorromeo/mattersend/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorromeo/mattersend/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorromeo/mattersend/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorromeo/mattersend/HEAD/README.rst -------------------------------------------------------------------------------- /mattersend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorromeo/mattersend/HEAD/mattersend.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorromeo/mattersend/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorromeo/mattersend/HEAD/setup.py -------------------------------------------------------------------------------- /tests/payload_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorromeo/mattersend/HEAD/tests/payload_test.py -------------------------------------------------------------------------------- /update_emoji_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtorromeo/mattersend/HEAD/update_emoji_map.py --------------------------------------------------------------------------------