Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jorgebg/loro
Python twitter reply & fav bot
https://github.com/jorgebg/loro
python twitter
Last synced: about 2 months ago
JSON representation
Python twitter reply & fav bot
- Host: GitHub
- URL: https://github.com/jorgebg/loro
- Owner: jorgebg
- License: mit
- Created: 2015-12-26T02:56:23.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-27T12:42:36.000Z (about 9 years ago)
- Last Synced: 2024-04-14T03:59:25.077Z (9 months ago)
- Topics: python, twitter
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Loro
Python twitter bot:
- Configured by an external JSON document retrieved through HTTP.
- For each new mention since the last favorited tweet:
- Tries to reply
- Favorites the mention tweet## Handlers endpoint example response
```bash
$ curl http://example.com/index.json
[
{
"description": "asdfmovie song",
"keywords": [
"trains song",
"Tom Ska"
],
"title": "I like trains",
"url": "https://www.youtube.com/watch?v=hHkKJfcBXcw"
},
{
"description": "asdfmovie gag",
"keywords": [
"Tom Ska",
"internet",
"meme"
],
"title": "Im Going To Do A Internet",
"url": "http://knowyourmeme.com/memes/im-gonna-do-an-internet"
}
]
```