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.
- {python_lucide-0.2.2 → python_lucide-0.2.4}/PKG-INFO +10 -2
- {python_lucide-0.2.2 → python_lucide-0.2.4}/README.md +9 -1
- {python_lucide-0.2.2 → python_lucide-0.2.4}/pyproject.toml +1 -1
- {python_lucide-0.2.2 → python_lucide-0.2.4}/src/lucide/config.py +1 -1
- {python_lucide-0.2.2 → python_lucide-0.2.4}/src/lucide/data/lucide-icons.db +0 -0
- {python_lucide-0.2.2 → python_lucide-0.2.4}/src/lucide/__init__.py +0 -0
- {python_lucide-0.2.2 → python_lucide-0.2.4}/src/lucide/cli.py +0 -0
- {python_lucide-0.2.2 → python_lucide-0.2.4}/src/lucide/core.py +0 -0
- {python_lucide-0.2.2 → python_lucide-0.2.4}/src/lucide/data/__init__.py +0 -0
- {python_lucide-0.2.2 → python_lucide-0.2.4}/src/lucide/db.py +0 -0
- {python_lucide-0.2.2 → python_lucide-0.2.4}/src/lucide/dev_utils.py +0 -0
- {python_lucide-0.2.2 → python_lucide-0.2.4}/tests/__init__.py +0 -0
- {python_lucide-0.2.2 → python_lucide-0.2.4}/tests/cli_test.py +0 -0
- {python_lucide-0.2.2 → python_lucide-0.2.4}/tests/core_test.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: python-lucide
|
|
3
|
-
Version: 0.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
|
+
[](https://badge.fury.io/py/python-lucide)
|
|
26
|
+
[](https://pypi.org/project/python-lucide/)
|
|
27
|
+
[](https://opensource.org/licenses/MIT)
|
|
28
|
+
[](https://github.com/mmacpherson/python-lucide/actions/workflows/ci.yml)
|
|
29
|
+
[](https://github.com/lucide-icons/lucide/releases)
|
|
30
|
+
[](https://pypi.org/project/python-lucide/)
|
|
31
|
+
[](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
|
|
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
|
+
[](https://badge.fury.io/py/python-lucide)
|
|
4
|
+
[](https://pypi.org/project/python-lucide/)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
[](https://github.com/mmacpherson/python-lucide/actions/workflows/ci.yml)
|
|
7
|
+
[](https://github.com/lucide-icons/lucide/releases)
|
|
8
|
+
[](https://pypi.org/project/python-lucide/)
|
|
9
|
+
[](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
|
|
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
|
|
@@ -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.
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|