
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
ionicons-python
Advanced tools
This package containing the icons taken from ionicons website for using those easily in Python. You will not only get the basic icons from this package, but also get the social icons too, for example Linkedin, GitHub, Twitter, etc.
To install ionicons_python, run this command in your terminal:
$ pip install ionicons_python
This is the preferred method to install ionicons_python, as it will always install the most recent stable release.
If you don't have pip installed, this Python installation guide can guide
you through the process.
pip: https://pip.pypa.io
Python installation guide: http://docs.python-guide.org/en/latest/starting/installation/
After the installation is complete, use it with any of your favourite framework like Flet, Streamlit etc. Here I am giving an example of using Flet.
from ionicons_python.ionicons_icons import *
import flet as ft
def main(page: ft.Page):
page.add(ft.Image(linkedin_icon, width=24, height=24))
ft.app(target=main)
Don't use this icons with Iconbutton or Icon of Flet. Those only take flet inbuilt icons.
for Streamlit, below is an example:
import streamlit as st
from ionicons_python.ionicons_icons import *
st.image(python_icon, width=30)
in the version 0.1.5, you can get some colored icons too. Those icons are available in the extra_icons module. The usage of it in Flet and Streamlit are shown below respectively.
from ionicons_python.colored_icons import *
import flet as ft
def main(page: ft.Page):
page.add(ft.Image(google_color_icon, width=24, height=24))
ft.app(target=main)
import streamlit as st
from ionicons_python.colored_icons import *
st.image(python_color_icon, width=30)
if you want to know which colored icons are available, see the Releases section. All the icons provided here is in .svg format. So, if you change the size of the icon, it will still looks sharp.
if you want to see all the ionicons icons available, visit this website.
This library is now Stable. You can also see some new colored icons which are taken from icons8, flaticons, etc. The icons are listed below.
chatgpt_icongmail_icongoogle_color_icongoogle_docs_icongoogle_sheets_icongoogle_drive_icongoogle_slides_iconstreamlit_iconpython_color_iconFAQs
Package containing icons taken from ionicons website.
We found that ionicons-python demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.