Socket
Socket
Sign inDemoInstall

identicons

Package Overview
Dependencies
2
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    identicons

A lightweight, easy-to-use Python package for generating unique identicons - graphical representations of hashed user information. It's perfect for adding a touch of personalization to user profiles in web applications, forums, or any platform requiring distinct visual user identification.


Maintainers
1

Readme

Identicons

identicons is a Python package that generates unique 5x5 identicons based on MD5 hashes of input strings. These identicons are symmetrical images commonly used for representing user avatars in applications.

Installation

pip install identicons

If you're downloading from a source, navigate to the root directory where setup.py is located and run:

git clone https://github.com/LVivona/identicons.git
python setup.py install

Usage

To generate an identicons, you can use the generate function:

from identicons import generate

# Generate an identicons with default colors
icon = generate('hello world')

# Generate an identicons with custom primary and secondary colors
icon_custom = generate('hello world', primary=0xFFD700, secondary=0x8B0000)
identicons --text "hello world" --file "output.png" -s 0xa0e7e5 -p 0xffffff

The generate function returns a NumPy array representing the identicons image. You can save this image using the save function:

from identicons import save

# Save the generated identicons that is 500x500
save(icon, 'identicons.png', 500, 500)

Features

  • Generate unique and symmetrical 5x5 identicons.
  • Customize identicons colors.
  • Save identicons in different sizes.

Contributing

Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".

Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Why build this?

I was curious on how github generates there icons, and thought I should build a simple cli/package to do it for me lol. :)

License

Distributed under the MIT License. See LICENSE for more information.

Contact

Your Name - your_email@example.com

Project Link: https://github.com/LVivona/identicons

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc