Skip to content

Releases: VaibhavRawat27/picta

Picta v0.2.0 – Added More Icons

03 Jan 16:27

Choose a tag to compare

Picta is a Python-first, dependency-free icon library inspired by Lucide Icons.

Release Highlights

  • 231 bundled SVG icons for Python projects
  • icon() function to get SVG strings for web apps, dashboards, or notebooks
  • list_icons() to dynamically list all available icons
  • Zero external dependencies — works on any OS with Python >=3.8
  • Demo Flask app (index.py) to explore icons in a beautiful web UI
127 0 0 1_5000_

Installation

pip install picta

Usage Examples

from picta import icon, list_icons

# Get a single icon
svg_str = icon("user", size=32, color="blue")

# List all icons
all_icons = list_icons()
print(all_icons)

Contributing

  • Open-source and contributions welcome!
  • Report issues or request features via GitHub Issues.
  • Fork and submit pull requests.

GitHub: https://github.com/VaibhavRawat27/picta

Picta v0.1.0 – First Official Release

30 Dec 07:43

Choose a tag to compare

Picta is a Python-first, dependency-free icon library inspired by Lucide Icons.

Release Highlights

  • 100+ bundled SVG icons for Python projects
  • icon() function to get SVG strings for web apps, dashboards, or notebooks
  • list_icons() to dynamically list all available icons
  • Zero external dependencies — works on any OS with Python >=3.8
  • Demo Flask app (index.py) to explore icons in a beautiful web UI
127 0 0 1_5000_

Installation

pip install picta

Usage Examples

from picta import icon, list_icons

# Get a single icon
svg_str = icon("user", size=32, color="blue")

# List all icons
all_icons = list_icons()
print(all_icons)

Contributing

  • Open-source and contributions welcome!
  • Report issues or request features via GitHub Issues.
  • Fork and submit pull requests.

GitHub: https://github.com/VaibhavRawat27/picta