├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── dev-requirements.txt ├── setup.cfg ├── setup.py ├── t2m ├── __init__.py └── retweet.tmpl ├── tests ├── data │ ├── conf.yaml │ ├── media1.txt │ ├── media2.txt │ ├── t2m_a1@mamot.fr_creds.txt │ └── t2m_a2@mamot.fr_creds.txt └── test_t2m.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | .tox/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoloSwagTeam/t2m/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoloSwagTeam/t2m/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoloSwagTeam/t2m/HEAD/README.md -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | mock 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoloSwagTeam/t2m/HEAD/setup.py -------------------------------------------------------------------------------- /t2m/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoloSwagTeam/t2m/HEAD/t2m/__init__.py -------------------------------------------------------------------------------- /t2m/retweet.tmpl: -------------------------------------------------------------------------------- 1 | « %(text)s » 2 | 3 | — Retweet https://twitter.com/%(user)s/status/%(id)s -------------------------------------------------------------------------------- /tests/data/conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoloSwagTeam/t2m/HEAD/tests/data/conf.yaml -------------------------------------------------------------------------------- /tests/data/media1.txt: -------------------------------------------------------------------------------- 1 | media1 content 2 | -------------------------------------------------------------------------------- /tests/data/media2.txt: -------------------------------------------------------------------------------- 1 | media2 content 2 | -------------------------------------------------------------------------------- /tests/data/t2m_a1@mamot.fr_creds.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/t2m_a2@mamot.fr_creds.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_t2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoloSwagTeam/t2m/HEAD/tests/test_t2m.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoloSwagTeam/t2m/HEAD/tox.ini --------------------------------------------------------------------------------