serverless-userpics

⚡ Instantly get user avatars via 1 API call. Ready to use. 100 artsy avatars included. Made open-source by DevClad. (by DevClad-Inc)

Serverless-userpics Alternatives

Similar projects and alternatives to serverless-userpics

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better serverless-userpics alternative or higher similarity.

serverless-userpics reviews and mentions

Posts with mentions or reviews of serverless-userpics. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-09-23.
  • User avatars for your next project in 1 API call
    2 projects | dev.to | 23 Sep 2022
    def random_avatar(): name = str(uuid.uuid4())[:8] with open(f"media/avatars/{name}.png", "wb+") as f: url = requests.get("https://userpics.devclad.com/api/getpic") response = requests.get(url.text, stream=True) if not response.ok: raise Exception("Could not get avatar") for block in response.iter_content(1024): if not block: break f.write(block) return f"avatars/{name}.png"
    2 projects | dev.to | 23 Sep 2022
    That's it. Feel free to open feature requests or whatever. The repo is here - github.com/arthtyagi/serverless-userpics

Stats

Basic serverless-userpics repo stats
4
11
10.0
over 1 year ago
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com