strawpoll.py is an async wrapper for strawpoll's API written in Python.
For more info, take a look at the documentation.
No, it is not dead, I am still around, there just isn't much to do until either Strawpoll update their api or someone stumbles upon this package and finds an issue with it.
$ pip install strawpoll.py
import asyncio
import strawpoll
async def main():
api = strawpoll.API()
p1 = await api.get_poll(10915632)
print(p1.results())
p2 = strawpoll.Poll('lol?', ['ha', 'haha', 'hahaha', 'hahahaha', 'hahahahaha'])
p2 = await api.submit_poll(p2)
print(p2.url)
asyncio.get_event_loop().run_until_complete(main())