python-lucide 0.2.2__tar.gz → 0.2.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: python-lucide
3
- Version: 0.2.2
3
+ Version: 0.2.4
4
4
  Summary: A Python package for working with Lucide icons
5
5
  Keywords: lucide,icons,svg,sqlite
6
6
  Author: Mike Macpherson
@@ -22,12 +22,20 @@ Description-Content-Type: text/markdown
22
22
 
23
23
  # python-lucide
24
24
 
25
+ [![PyPI version](https://badge.fury.io/py/python-lucide.svg)](https://badge.fury.io/py/python-lucide)
26
+ [![Python versions](https://img.shields.io/pypi/pyversions/python-lucide.svg)](https://pypi.org/project/python-lucide/)
27
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
28
+ [![CI](https://github.com/mmacpherson/python-lucide/workflows/CI/badge.svg)](https://github.com/mmacpherson/python-lucide/actions/workflows/ci.yml)
29
+ [![Lucide Version](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fmmacpherson%2Fpython-lucide%2Fmain%2F.github%2Flucide-version.json)](https://github.com/lucide-icons/lucide/releases)
30
+ [![PyPI downloads](https://img.shields.io/pypi/dm/python-lucide.svg)](https://pypi.org/project/python-lucide/)
31
+ [![Built with uv](https://img.shields.io/badge/Built%20with-uv-purple.svg)](https://github.com/astral-sh/uv)
32
+
25
33
  A Python package that provides easy access to all [Lucide
26
34
  icons](https://lucide.dev/) as SVG strings. Just import and use any Lucide icon
27
35
  in your Python projects, with no javascript in sight.
28
36
 
29
37
  ## Features
30
- - 🎨 **Access 1000+ Lucide icons** directly from Python
38
+ - 🎨 **Access 1600+ Lucide icons** directly from Python
31
39
  - 🛠 **Customize icons** with classes, sizes, colors, and other SVG attributes
32
40
  - 🚀 **Framework-friendly** with examples for FastHTML, Flask, Django, and more
33
41
  - 📦 **Lightweight** with minimal dependencies
@@ -1,11 +1,19 @@
1
1
  # python-lucide
2
2
 
3
+ [![PyPI version](https://badge.fury.io/py/python-lucide.svg)](https://badge.fury.io/py/python-lucide)
4
+ [![Python versions](https://img.shields.io/pypi/pyversions/python-lucide.svg)](https://pypi.org/project/python-lucide/)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
+ [![CI](https://github.com/mmacpherson/python-lucide/workflows/CI/badge.svg)](https://github.com/mmacpherson/python-lucide/actions/workflows/ci.yml)
7
+ [![Lucide Version](https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fmmacpherson%2Fpython-lucide%2Fmain%2F.github%2Flucide-version.json)](https://github.com/lucide-icons/lucide/releases)
8
+ [![PyPI downloads](https://img.shields.io/pypi/dm/python-lucide.svg)](https://pypi.org/project/python-lucide/)
9
+ [![Built with uv](https://img.shields.io/badge/Built%20with-uv-purple.svg)](https://github.com/astral-sh/uv)
10
+
3
11
  A Python package that provides easy access to all [Lucide
4
12
  icons](https://lucide.dev/) as SVG strings. Just import and use any Lucide icon
5
13
  in your Python projects, with no javascript in sight.
6
14
 
7
15
  ## Features
8
- - 🎨 **Access 1000+ Lucide icons** directly from Python
16
+ - 🎨 **Access 1600+ Lucide icons** directly from Python
9
17
  - 🛠 **Customize icons** with classes, sizes, colors, and other SVG attributes
10
18
  - 🚀 **Framework-friendly** with examples for FastHTML, Flask, Django, and more
11
19
  - 📦 **Lightweight** with minimal dependencies
@@ -34,7 +34,7 @@ license = {text = "MIT"}
34
34
  name = "python-lucide"
35
35
  readme = "README.md"
36
36
  requires-python = ">=3.10"
37
- version = "0.2.2"
37
+ version = "0.2.4"
38
38
 
39
39
  [project.scripts]
40
40
  check-lucide-version = "lucide.dev_utils:print_version_status"
@@ -4,7 +4,7 @@ This module contains default configuration values used throughout the package.
4
4
  """
5
5
 
6
6
  # Default Lucide tag to use when building the icon database
7
- DEFAULT_LUCIDE_TAG = "0.532.0"
7
+ DEFAULT_LUCIDE_TAG = "0.539.0"
8
8
 
9
9
  # Default size for the LRU cache used by lucide_icon function
10
10
  DEFAULT_ICON_CACHE_SIZE = 128
index e795e06..15580fc 100644
Binary file