├── .idea ├── BotSinesp.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── .travis.yml ├── PlacaRequest.py ├── Procfile ├── README.md ├── requirements.txt └── setup.py /.idea/BotSinesp.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadagalberto/placa-info-bot/HEAD/.idea/BotSinesp.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadagalberto/placa-info-bot/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadagalberto/placa-info-bot/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadagalberto/placa-info-bot/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadagalberto/placa-info-bot/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadagalberto/placa-info-bot/HEAD/.travis.yml -------------------------------------------------------------------------------- /PlacaRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadagalberto/placa-info-bot/HEAD/PlacaRequest.py -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python PlacaRequest.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadagalberto/placa-info-bot/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | telepot==12.4 2 | requests==2.8.1 3 | sinesp_client==1.11 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadagalberto/placa-info-bot/HEAD/setup.py --------------------------------------------------------------------------------