pyconify
Python wrapper for the Iconify API.
Iconify is a versatile icon framework that includes 100+ icon sets with more
than 100,000 icons from FontAwesome, Material Design Icons, DashIcons, Feather
Icons, EmojiOne, Noto Emoji and many other open source icon sets.
Search for icons at: https://icon-sets.iconify.design
Installation
pip install pyconify
conda install -c conda-forge pyconify
Usage
import pyconify
collections = pyconify.collections()
details = pyconify.collection("fa", "fa-brands")
hits = pyconify.search("python")
data = pyconify.icon_data("fa-brands", "python")
svg = pyconify.svg("fa-brands", "python")
file_name = pyconify.svg_path("fa-brands", "python")
css = pyconify.css("fa-brands", "python")
pyconify.keywords('home')
pyconify.iconify_version()
See details for each of these results in the Iconify API documentation.
cache
While the first fetch of any given SVG will require internet access,
pyconfiy caches svgs for faster retrieval and offline use. To
see or clear cache directory:
import pyconify
pyconify.get_cache_directory()
pyconify.clear_cache()
If you'd like to precache a number of svgs, the current recommendation
is to use the svg()
function:
import pyconify
import pyconify
ICONS_TO_STORE = {"mdi:bell", "mdi:bell-off", "mdi:bell-outline"}
for key in ICONS_TO_STORE:
pyconify.svg(key)
Later calls to svg()
will use the cached values.
To specify a custom cache directory, set the PYCONIFY_CACHE
environment
variable to your desired directory.
To disable caching altogether, set the PYCONIFY_CACHE
environment variable to
false
or 0
.
freedesktop themes
pyconify
includes a convenience function to generate a directory of SVG files
in the freedesktop icon theme specification
It takes a mapping of names from the icon naming spec
to iconify keys (e.g. "prefix:icon"
). Icons will be placed in the
appropriate freedesktop subdirectory based on the icon name. Unknown icons will be placed
in the other
subdirectory.
from pyconify import freedesktop_theme
from pyconify.api import svg
icons = {
"edit-copy": "ic:sharp-content-copy",
"edit-delete": {"key": "ic:sharp-delete", "color": "red"},
"weather-overcast": "ic:sharp-cloud",
"weather-clear": "ic:sharp-wb-sunny",
"bell": "bi:bell",
}
folder = freedesktop_theme(
"mytheme",
icons,
base_directory="~/Desktop/icons",
)
would create
~/Desktop/icons/
├── mytheme
│ ├── actions
│ │ ├── edit-copy.svg
│ │ └── edit-delete.svg
│ ├── status
│ │ ├── weather-clear.svg
│ │ └── weather-overcast.svg
│ └── other
│ └── bell.svg
└── index.theme