Metadata-Version: 2.4
Name: tkinter-icons-devicon
Version: 1.1.0
Summary: Devicon (font-based) provider for tkinter-icons
Author: Israel Dryer
License-Expression: MIT
Project-URL: Homepage, https://github.com/israel-dryer/tkinter-icons
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Pillow>=9.1
Requires-Dist: tkinter-icons>=5.0.0
Dynamic: license-file

# tkinter-icons-devicon

An icon provider for the `tkinter-icons` library.  
Devicon provides brand and technology icons for programming languages and development tools.

[![PyPI](https://img.shields.io/pypi/v/tkinter-icons-devicon.svg)](https://pypi.org/project/tkinter-icons-devicon/)
[![License](https://img.shields.io/badge/license-MIT-green.svg)](#license-and-attribution)

**Devicon** — 1,229 icons, upstream v2.17.0. One of sixteen icon packs for [`tkinter-icons`](https://pypi.org/project/tkinter-icons/).

---

## Install

This pack is an extra of `tkinter-icons`, so you install and import one name:

```bash
pip install "tkinter-icons[devicon]"
```

Installing `tkinter-icons-devicon` directly also works and pulls in the base package, but the extra is the supported form — it is what the error messages, the documentation, and the other fifteen packs all use.

---

## Quick start

```python
import tkinter as tk
from tkinter_icons import DeviconIcon

root = tk.Tk()

icon = DeviconIcon("python", size=24, color="#333", style="plain")
tk.Button(root, image=icon.image, text="Python", compound="left").pack()

root.mainloop()
```

`DeviconIcon` is also exported as `DevIcon`; both spellings resolve to the same class.

---

## Styles

Devicon ships 4 styles:

- `plain` (default)
- `plain-wordmark`
- `original`
- `original-wordmark`

Pass one as `style=`, or put it in the name — `DeviconIcon("python", style="plain")` and `DeviconIcon("python-plain")` are the same icon.

---

## Browse the icons

Every glyph in this pack, rendered by the library itself:
<https://tkinter-icons.readthedocs.io/en/latest/packs/devicon.html>

Or run the browser that ships with the base package:

```bash
tkinter-icons
```

Use **Copy Name** there to copy an icon name straight into your code.

---

## License and attribution

- **Upstream:** Devicon — <https://devicon.dev/>
- **Upstream license:** <https://github.com/devicons/devicon/blob/master/LICENSE> — see `LICENSES/` in this package
- **Wrapper license:** MIT © Israel Dryer
