avatars-io-python
Python avatar picker and uploader for Avatars.io.
Current version of avatarsio is 0.1; it's stable.
Requirements, dependencies
avatarsio
supports both Python 2 and Python 3 and is on
PyPi.
As described in requirements.txt
, the only dependency is
requests
(HTTP for humans, because, well,
it is awesome and should be built-in).
You can install it from source or using pip
(eg. in a virtualenv):
pip install avatarsio
Usage
You don't really need the lib if you just want to get user avatars from
services such as Twitter of Facebook. Just use the corresponding URL as
explained on avatars.io.
The lib is useful for custom avatar upload. You need first to
register an app on Chute. Then, it's quite
straightforward:
>>> from avatarsio import AvatarsIO
>>> avtio = AvatarsIO('my-client-id', 'my-access-token')
>>> avtio.upload('kitten.png')
"http://avatars.io/4fb6de143d242d44da000001/hashashash"
>>> fobj = open('kitten.png', 'rb')
>>> avtio.upload(fobj)
"http://avatars.io/4fb6de143d242d44da000001/hashashash"
>>> avtio.upload('kitten.png', 'my-identifier')
"http://avatars.io/4fb6de143d242d44da000001/my-identifier"
>>> AvatarsIO.avatar_url('twitter', 'my-identifier')
"http://avatars.io/twitter/my-identifier"
Licence
MIT
Feel free to submit bug reports and improvements on the
bug tracker.