kivymd


Namekivymd JSON
Version 1.2.0 PyPI version JSON
download
home_pagehttps://github.com/kivymd/KivyMD
SummarySet of widgets for Kivy inspired by Google's Material Design
upload_time2024-01-21 10:49:26
maintainer
docs_urlNone
authorAndres Rodriguez, fork author - Ivanov Yuri
requires_python>=3.7
licenseMIT
keywords kivymd kivy material ui
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # KivyMD [1.2.0](https://kivymd.readthedocs.io/en/latest/changelog/index.html)

<img align="right" height="256" src="https://github.com/kivymd/internal/raw/main/logo/kivymd_logo_blue.png"/>

KivyMD is a collection of Material Design compliant widgets for use with
[Kivy](http://kivy.org), a framework for cross-platform, touch-enabled
graphical applications.

The project's goal is to approximate Google's
[Material Design spec](https://material.io/design/introduction/) as close as
possible without sacrificing ease of use. This library is a fork of the
[KivyMD project](https://gitlab.com/kivymd/KivyMD). We found the strength and
brought this project to a new level.

Join the project! Just fork the project, branch out and submit a pull request
when your patch is ready. If any changes are necessary, we'll guide you through
the steps that need to be done via PR comments or access to your for may be
requested to outright submit them.

If you wish to become a project developer (permission to create branches on the
project without forking for easier collaboration), have at least one PR
approved and ask for it. If you contribute regularly to the project the role
may be offered to you without asking too.

[![PyPI version](https://img.shields.io/pypi/v/kivymd.svg)](https://pypi.org/project/kivymd)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/kivymd.svg)](#Installation)
[![Downloads](https://pepy.tech/badge/kivymd)](https://pepy.tech/project/kivymd)
[![Code style: Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

[![Discord](https://img.shields.io/discord/566880874789076992?logo=discord)](https://discord.gg/wu3qBST)
[![Twitter](https://img.shields.io/twitter/follow/KivyMD?label=follow&logo=twitter&style=flat&color=brightgreen)](https://twitter.com/KivyMD)
[![YouTube](https://img.shields.io/static/v1?label=subscribe&logo=youtube&logoColor=ff0000&color=brightgreen&message=5k)](https://www.youtube.com/c/KivyMD)
[![Habr](https://img.shields.io/static/v1?label=habr&message=ru&logo=habr&color=brightgreen)](https://habr.com/ru/users/kivymd/posts)
[![StackOverflow](https://img.shields.io/static/v1?label=stackoverflow%20tag&logo=stackoverflow&logoColor=fe7a16&color=brightgreen&message=kivymd)](https://stackoverflow.com/tags/kivymd)
[![Open Collective](https://img.shields.io/opencollective/all/kivymd?label=financial%20contributors&logo=open-collective)](https://opencollective.com/kivymd)

[![Coverage status](https://coveralls.io/repos/github/kivymd/KivyMD/badge.svg)](https://coveralls.io/github/kivymd/KivyMD)
[![Build workflow](https://github.com/kivymd/KivyMD/workflows/Build/badge.svg?branch=master)](https://github.com/kivymd/KivyMD/actions?query=workflow%3ABuild)
[![Test workflow](https://github.com/kivymd/KivyMD/workflows/Test/badge.svg?branch=master)](https://github.com/kivymd/KivyMD/actions?query=workflow%3ATest)
[![Documentation status](https://readthedocs.org/projects/kivymd/badge/?version=latest)](https://kivymd.readthedocs.io)
[![Repository size](https://img.shields.io/github/repo-size/kivymd/kivymd.svg)](https://github.com/kivymd/KivyMD)

## Installation

```bash
pip install kivymd==1.2.0
```

### Dependencies:

- [Kivy](https://github.com/kivy/kivy) >= 2.2.0 ([Installation](https://kivy.org/doc/stable/gettingstarted/installation.html))
- [Python 3.7+](https://www.python.org/)
- [Pillow](https://github.com/python-pillow/Pillow/)
- [MaterialColor](https://github.com/T-Dynamos/materialyoucolor-pyhton)

### How to install

Command [above](#installation) will install latest release version of KivyMD from 
[PyPI](https://pypi.org/project/kivymd).

If you want to install development version from 
[master](https://github.com/kivymd/KivyMD/tree/master/)
branch, you should specify link to zip archive:

```bash
pip install https://github.com/kivymd/KivyMD/archive/master.zip
```

**_Tip_**: Replace `master.zip` with `<commit hash>.zip` (eg `51b8ef0.zip`) to
download KivyMD from specific commit.

Also you can install manually from sources. Just clone the project and run pip:

```bash
git clone https://github.com/kivymd/KivyMD.git --depth 1
cd KivyMD
pip install .
```

**_Speed Tip_**: If you don't need full commit history (about 1.14 GiB), you can
use a shallow clone (`git clone https://github.com/kivymd/KivyMD.git --depth 1`)
to save time. If you need full commit history, then remove `--depth 1`.

### How to fix a shader bug on an android device

Use `Kivy` from master branch or `Kivy` >= `2.2.0` and `KivyMD` (from master branch):

```bash
pip install https://github.com/kivy/kivy/archive/master.zip
pip install https://github.com/kivymd/KivyMD/archive/master.zip
```

And use with `Buildozer`:

```ini
requirements = kivy==master, https://github.com/kivymd/KivyMD/archive/master.zip
```

### How to use with [Buildozer](https://github.com/kivy/buildozer)

```ini
requirements = kivy==2.2.0, kivymd==1.2.0
```

This will download latest release version of KivyMD from [PyPI](https://pypi.org/project/kivymd).

If you want to use development version from [master](https://github.com/kivymd/KivyMD/tree/master/)
branch, you should specify link to zip archive:

```ini
requirements = kivy==2.1.0, https://github.com/kivymd/KivyMD/archive/master.zip
```

Do not forget to run `buildozer android clean` or remove `.buildozer` directory
before building if version was updated (Buildozer doesn't update already
downloaded packages).

#### On Linux

- Use Buildozer [directly](https://github.com/kivy/buildozer#installing-buildozer-with-target-python-3-default) 
  or via [Docker](https://github.com/kivy/buildozer/blob/master/Dockerfile).

#### On Windows 10

- Install [Ubuntu WSL](https://ubuntu.com/wsl) and follow [Linux steps](#On-Linux).

#### Build automatically via GitHub Actions

- Use [ArtemSBulgakov/buildozer-action@v1](https://github.com/ArtemSBulgakov/buildozer-action)
  to build your packages automatically on push or pull request.
- See [full workflow example](https://github.com/ArtemSBulgakov/buildozer-action#full-workflow).

### How to use with [kivy-ios](https://github.com/kivy/kivy-ios)

```bash
toolchain build python3 kivy pillow
toolchain pip install --no-deps kivymd
```

## Documentation

- See documentation at https://kivymd.readthedocs.io
- Wiki with examples of using KivyMD widgets: https://github.com/kivymd/KivyMD/wiki

### Demos

<p align="center">
  <a href="https://www.youtube.com/watch?v=4er9b6TH_TA">
    <img 
        width="600" 
        src="https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/preview-kitchen-sink.png" 
        title="Click to watch demo application of the KivyMD library widgets"
    >
  </a>
</p>

[Kitchen sink](https://github.com/kivymd/KitchenSink) app demonstrates every KivyMD widget.
You can see how to use widget in code of app.

### Comparison of Flutter & KivyMD

| Sky View Concept | Healthy Food Delivery |
:-------------------------:|:-------------------------:
<a href="https://www.youtube.com/watch?v=xvi2D1c4mfQ"><img src="https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/preview-youtube-1.png" title="Click to watch it on YouTube"></a>  |  <a href="https://www.youtube.com/watch?v=P-ylDDm4TJM"><img src="https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/preview-youtube-2.png" title="Click to watch it on YouTube"></a>
| Asics Shoes Concept | Facebook Desktop Redesign |
<a href="https://www.youtube.com/watch?v=ehuXPgun0k0"><img src="https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/preview-youtue.png" title="Click to watch it on YouTube"></a>  |  <a href="https://www.youtube.com/watch?v=ZNBQib6Hk4s"><img src="https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/preview-youtue-3.png" title="Click to watch it on YouTube"></a>

## Use MVC and Hot Reload

<p align="center">
  <a href="https://www.youtube.com/watch?v=JLBrgoSSeTU&t">
    <img 
        img width="600" 
        src="https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/hot-reload-preview-youtube.png" 
        title='Click to watch video on YouTube'
    >
  </a>
</p>

## Support

If you need assistance or you have a question, you can ask for help on our mailing list:

- **Discord server:** https://discord.gg/wu3qBST (English #support, Russian #ru-support)
- **StackOverflow tag:** [kivymd](https://stackoverflow.com/tags/kivymd)
- **Email:** KivyMD-library@yandex.com

## Settings

#### [Syntax highlighting and auto-completion for Kivy/KivyMD .kv files in PyCharm/Intellij IDEA](https://github.com/noembryo/KV4Jetbrains)

## Promo Video

<p align="center">
  <a href="https://www.youtube.com/watch?v=crt8wA4Q5eU">
    <img 
        img width="600" 
        src="https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/prevideo.png" 
        title='Click to watch video on YouTube'
    >
  </a>
</p>

## Contributing

We always welcome your [Bug reports](https://github.com/kivymd/KivyMD/issues/new?template=bug_report.md),
[Feature requests](https://github.com/kivymd/KivyMD/issues/new?template=feature_request.md)
and [Pull requests](https://github.com/kivymd/KivyMD/pulls)!
Check out [CONTRIBUTING.md](https://github.com/kivymd/.github/blob/master/.github/CONTRIBUTING.md)
and feel free to improve KivyMD.

### Setup environment

We recommend you to use PyCharm to work with KivyMD code. Install
[Kivy](https://kivy.org/doc/stable/gettingstarted/installation.html) and
development dependencies to your virtual environment:

```bash
pip install -e .[dev,docs]
pre-commit install
```

Format all files and run tests:

```bash
pre-commit run --all-files
pytest kivymd/tests --timeout=600 --cov=kivymd --cov-report=term
```

pre-commit will format modified files with Black and sort imports with isort.

## Sister projects

<img align="left" width="128" src="https://github.com/kivymd/internal/raw/main/logo/kivymd_extensions.png"/>

## KivyMD Extensions

Additional extensions for the KivyMD library.

https://github.com/kivymd-extensions

<img align="left" width="128" src="https://github.com/kivymd/internal/raw/main/logo/kivymdbuilder.png"/>

## KivyMDBuilder

Build apps visually.

https://github.com/kivymd/KivyMDBuilder


## License

- KivyMD is released under the terms of the 
  [MIT License](https://github.com/kivymd/KivyMD/blob/master/LICENSE), 
  same as [Kivy](https://github.com/kivy/kivy/blob/master/LICENSE).
- [Roboto font](https://fonts.google.com/specimen/Roboto) 
  is licensed and distributed under the terms of the 
  [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0).
- [Iconic font](https://github.com/Templarian/MaterialDesign-Webfont) by the 
  [Material Design Icons](https://materialdesignicons.com/) community covered by 
  [SIL Open Font License 1.1](http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web)

## Contributors

### KivyMD Team

They spent a lot of time to improve KivyMD.

- Yuri Ivanov [@HeaTTheatR](https://github.com/HeaTTheatR) - Core developer
- Artem Bulgakov [@ArtemSBulgakov](https://github.com/ArtemSBulgakov) - Technical administrator, contributor
- Andrés Rodríguez [@mixedCase](https://github.com/mixedCase) - First author of KivyMD project, contributor

### Code Contributors

This project exists thanks to all the people who contribute.
*[How to contribute](#Contributing)*

<a href="https://github.com/kivymd/KivyMD/graphs/contributors">
    <img src="https://opencollective.com/kivymd/contributors.svg?width=890&button=false"/>
</a>

### Financial Contributors

[Become a financial contributor](https://opencollective.com/kivymd#section-contribute) 
on OpenCollective and help us sustain our community.

#### Gold Sponsors

[Become a Gold Sponsor](https://opencollective.com/kivymd/contribute/gold-sponsor-16160)
and get your logo on our Readme with a link to your website.

<!-- FIXME: sponsors are not displayed -->

<a href="https://opencollective.com/peter-surda?requireActive=false" target="_blank"><img src="https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/gold-sponsor-1.png?requireActive=false"></a>

#### Backers

[Become a Backer](https://opencollective.com/kivymd/contribute/backer-16159) if you want to help develop this project.

<a href="https://opencollective.com/kivymd#backers" target="_blank">
    <img src="https://opencollective.com/kivymd/backers.svg?width=890">
</a>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/kivymd/KivyMD",
    "name": "kivymd",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "kivymd,kivy,material,ui",
    "author": "Andres Rodriguez, fork author - Ivanov Yuri",
    "author_email": "kivydevelopment@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/20/81/0b1154f5e581d5910702d9fadb3217f56cb186f72c8b36de0271e7ff9b5c/kivymd-1.2.0.tar.gz",
    "platform": "any",
    "description": "# KivyMD [1.2.0](https://kivymd.readthedocs.io/en/latest/changelog/index.html)\n\n<img align=\"right\" height=\"256\" src=\"https://github.com/kivymd/internal/raw/main/logo/kivymd_logo_blue.png\"/>\n\nKivyMD is a collection of Material Design compliant widgets for use with\n[Kivy](http://kivy.org), a framework for cross-platform, touch-enabled\ngraphical applications.\n\nThe project's goal is to approximate Google's\n[Material Design spec](https://material.io/design/introduction/) as close as\npossible without sacrificing ease of use. This library is a fork of the\n[KivyMD project](https://gitlab.com/kivymd/KivyMD). We found the strength and\nbrought this project to a new level.\n\nJoin the project! Just fork the project, branch out and submit a pull request\nwhen your patch is ready. If any changes are necessary, we'll guide you through\nthe steps that need to be done via PR comments or access to your for may be\nrequested to outright submit them.\n\nIf you wish to become a project developer (permission to create branches on the\nproject without forking for easier collaboration), have at least one PR\napproved and ask for it. If you contribute regularly to the project the role\nmay be offered to you without asking too.\n\n[![PyPI version](https://img.shields.io/pypi/v/kivymd.svg)](https://pypi.org/project/kivymd)\n[![Supported Python versions](https://img.shields.io/pypi/pyversions/kivymd.svg)](#Installation)\n[![Downloads](https://pepy.tech/badge/kivymd)](https://pepy.tech/project/kivymd)\n[![Code style: Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n[![Discord](https://img.shields.io/discord/566880874789076992?logo=discord)](https://discord.gg/wu3qBST)\n[![Twitter](https://img.shields.io/twitter/follow/KivyMD?label=follow&logo=twitter&style=flat&color=brightgreen)](https://twitter.com/KivyMD)\n[![YouTube](https://img.shields.io/static/v1?label=subscribe&logo=youtube&logoColor=ff0000&color=brightgreen&message=5k)](https://www.youtube.com/c/KivyMD)\n[![Habr](https://img.shields.io/static/v1?label=habr&message=ru&logo=habr&color=brightgreen)](https://habr.com/ru/users/kivymd/posts)\n[![StackOverflow](https://img.shields.io/static/v1?label=stackoverflow%20tag&logo=stackoverflow&logoColor=fe7a16&color=brightgreen&message=kivymd)](https://stackoverflow.com/tags/kivymd)\n[![Open Collective](https://img.shields.io/opencollective/all/kivymd?label=financial%20contributors&logo=open-collective)](https://opencollective.com/kivymd)\n\n[![Coverage status](https://coveralls.io/repos/github/kivymd/KivyMD/badge.svg)](https://coveralls.io/github/kivymd/KivyMD)\n[![Build workflow](https://github.com/kivymd/KivyMD/workflows/Build/badge.svg?branch=master)](https://github.com/kivymd/KivyMD/actions?query=workflow%3ABuild)\n[![Test workflow](https://github.com/kivymd/KivyMD/workflows/Test/badge.svg?branch=master)](https://github.com/kivymd/KivyMD/actions?query=workflow%3ATest)\n[![Documentation status](https://readthedocs.org/projects/kivymd/badge/?version=latest)](https://kivymd.readthedocs.io)\n[![Repository size](https://img.shields.io/github/repo-size/kivymd/kivymd.svg)](https://github.com/kivymd/KivyMD)\n\n## Installation\n\n```bash\npip install kivymd==1.2.0\n```\n\n### Dependencies:\n\n- [Kivy](https://github.com/kivy/kivy) >= 2.2.0 ([Installation](https://kivy.org/doc/stable/gettingstarted/installation.html))\n- [Python 3.7+](https://www.python.org/)\n- [Pillow](https://github.com/python-pillow/Pillow/)\n- [MaterialColor](https://github.com/T-Dynamos/materialyoucolor-pyhton)\n\n### How to install\n\nCommand [above](#installation) will install latest release version of KivyMD from \n[PyPI](https://pypi.org/project/kivymd).\n\nIf you want to install development version from \n[master](https://github.com/kivymd/KivyMD/tree/master/)\nbranch, you should specify link to zip archive:\n\n```bash\npip install https://github.com/kivymd/KivyMD/archive/master.zip\n```\n\n**_Tip_**: Replace `master.zip` with `<commit hash>.zip` (eg `51b8ef0.zip`) to\ndownload KivyMD from specific commit.\n\nAlso you can install manually from sources. Just clone the project and run pip:\n\n```bash\ngit clone https://github.com/kivymd/KivyMD.git --depth 1\ncd KivyMD\npip install .\n```\n\n**_Speed Tip_**: If you don't need full commit history (about 1.14 GiB), you can\nuse a shallow clone (`git clone https://github.com/kivymd/KivyMD.git --depth 1`)\nto save time. If you need full commit history, then remove `--depth 1`.\n\n### How to fix a shader bug on an android device\n\nUse `Kivy` from master branch or `Kivy` >= `2.2.0` and `KivyMD` (from master branch):\n\n```bash\npip install https://github.com/kivy/kivy/archive/master.zip\npip install https://github.com/kivymd/KivyMD/archive/master.zip\n```\n\nAnd use with `Buildozer`:\n\n```ini\nrequirements = kivy==master, https://github.com/kivymd/KivyMD/archive/master.zip\n```\n\n### How to use with [Buildozer](https://github.com/kivy/buildozer)\n\n```ini\nrequirements = kivy==2.2.0, kivymd==1.2.0\n```\n\nThis will download latest release version of KivyMD from [PyPI](https://pypi.org/project/kivymd).\n\nIf you want to use development version from [master](https://github.com/kivymd/KivyMD/tree/master/)\nbranch, you should specify link to zip archive:\n\n```ini\nrequirements = kivy==2.1.0, https://github.com/kivymd/KivyMD/archive/master.zip\n```\n\nDo not forget to run `buildozer android clean` or remove `.buildozer` directory\nbefore building if version was updated (Buildozer doesn't update already\ndownloaded packages).\n\n#### On Linux\n\n- Use Buildozer [directly](https://github.com/kivy/buildozer#installing-buildozer-with-target-python-3-default) \n  or via [Docker](https://github.com/kivy/buildozer/blob/master/Dockerfile).\n\n#### On Windows 10\n\n- Install [Ubuntu WSL](https://ubuntu.com/wsl) and follow [Linux steps](#On-Linux).\n\n#### Build automatically via GitHub Actions\n\n- Use [ArtemSBulgakov/buildozer-action@v1](https://github.com/ArtemSBulgakov/buildozer-action)\n  to build your packages automatically on push or pull request.\n- See [full workflow example](https://github.com/ArtemSBulgakov/buildozer-action#full-workflow).\n\n### How to use with [kivy-ios](https://github.com/kivy/kivy-ios)\n\n```bash\ntoolchain build python3 kivy pillow\ntoolchain pip install --no-deps kivymd\n```\n\n## Documentation\n\n- See documentation at https://kivymd.readthedocs.io\n- Wiki with examples of using KivyMD widgets: https://github.com/kivymd/KivyMD/wiki\n\n### Demos\n\n<p align=\"center\">\n  <a href=\"https://www.youtube.com/watch?v=4er9b6TH_TA\">\n    <img \n        width=\"600\" \n        src=\"https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/preview-kitchen-sink.png\" \n        title=\"Click to watch demo application of the KivyMD library widgets\"\n    >\n  </a>\n</p>\n\n[Kitchen sink](https://github.com/kivymd/KitchenSink) app demonstrates every KivyMD widget.\nYou can see how to use widget in code of app.\n\n### Comparison of Flutter & KivyMD\n\n| Sky View Concept | Healthy Food Delivery |\n:-------------------------:|:-------------------------:\n<a href=\"https://www.youtube.com/watch?v=xvi2D1c4mfQ\"><img src=\"https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/preview-youtube-1.png\" title=\"Click to watch it on YouTube\"></a>  |  <a href=\"https://www.youtube.com/watch?v=P-ylDDm4TJM\"><img src=\"https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/preview-youtube-2.png\" title=\"Click to watch it on YouTube\"></a>\n| Asics Shoes Concept | Facebook Desktop Redesign |\n<a href=\"https://www.youtube.com/watch?v=ehuXPgun0k0\"><img src=\"https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/preview-youtue.png\" title=\"Click to watch it on YouTube\"></a>  |  <a href=\"https://www.youtube.com/watch?v=ZNBQib6Hk4s\"><img src=\"https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/preview-youtue-3.png\" title=\"Click to watch it on YouTube\"></a>\n\n## Use MVC and Hot Reload\n\n<p align=\"center\">\n  <a href=\"https://www.youtube.com/watch?v=JLBrgoSSeTU&t\">\n    <img \n        img width=\"600\" \n        src=\"https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/hot-reload-preview-youtube.png\" \n        title='Click to watch video on YouTube'\n    >\n  </a>\n</p>\n\n## Support\n\nIf you need assistance or you have a question, you can ask for help on our mailing list:\n\n- **Discord server:** https://discord.gg/wu3qBST (English #support, Russian #ru-support)\n- **StackOverflow tag:** [kivymd](https://stackoverflow.com/tags/kivymd)\n- **Email:** KivyMD-library@yandex.com\n\n## Settings\n\n#### [Syntax highlighting and auto-completion for Kivy/KivyMD .kv files in PyCharm/Intellij IDEA](https://github.com/noembryo/KV4Jetbrains)\n\n## Promo Video\n\n<p align=\"center\">\n  <a href=\"https://www.youtube.com/watch?v=crt8wA4Q5eU\">\n    <img \n        img width=\"600\" \n        src=\"https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/prevideo.png\" \n        title='Click to watch video on YouTube'\n    >\n  </a>\n</p>\n\n## Contributing\n\nWe always welcome your [Bug reports](https://github.com/kivymd/KivyMD/issues/new?template=bug_report.md),\n[Feature requests](https://github.com/kivymd/KivyMD/issues/new?template=feature_request.md)\nand [Pull requests](https://github.com/kivymd/KivyMD/pulls)!\nCheck out [CONTRIBUTING.md](https://github.com/kivymd/.github/blob/master/.github/CONTRIBUTING.md)\nand feel free to improve KivyMD.\n\n### Setup environment\n\nWe recommend you to use PyCharm to work with KivyMD code. Install\n[Kivy](https://kivy.org/doc/stable/gettingstarted/installation.html) and\ndevelopment dependencies to your virtual environment:\n\n```bash\npip install -e .[dev,docs]\npre-commit install\n```\n\nFormat all files and run tests:\n\n```bash\npre-commit run --all-files\npytest kivymd/tests --timeout=600 --cov=kivymd --cov-report=term\n```\n\npre-commit will format modified files with Black and sort imports with isort.\n\n## Sister projects\n\n<img align=\"left\" width=\"128\" src=\"https://github.com/kivymd/internal/raw/main/logo/kivymd_extensions.png\"/>\n\n## KivyMD Extensions\n\nAdditional extensions for the KivyMD library.\n\nhttps://github.com/kivymd-extensions\n\n<img align=\"left\" width=\"128\" src=\"https://github.com/kivymd/internal/raw/main/logo/kivymdbuilder.png\"/>\n\n## KivyMDBuilder\n\nBuild apps visually.\n\nhttps://github.com/kivymd/KivyMDBuilder\n\n\n## License\n\n- KivyMD is released under the terms of the \n  [MIT License](https://github.com/kivymd/KivyMD/blob/master/LICENSE), \n  same as [Kivy](https://github.com/kivy/kivy/blob/master/LICENSE).\n- [Roboto font](https://fonts.google.com/specimen/Roboto) \n  is licensed and distributed under the terms of the \n  [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0).\n- [Iconic font](https://github.com/Templarian/MaterialDesign-Webfont) by the \n  [Material Design Icons](https://materialdesignicons.com/) community covered by \n  [SIL Open Font License 1.1](http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web)\n\n## Contributors\n\n### KivyMD Team\n\nThey spent a lot of time to improve KivyMD.\n\n- Yuri Ivanov [@HeaTTheatR](https://github.com/HeaTTheatR) - Core developer\n- Artem Bulgakov [@ArtemSBulgakov](https://github.com/ArtemSBulgakov) - Technical administrator, contributor\n- Andr\u00e9s Rodr\u00edguez [@mixedCase](https://github.com/mixedCase) - First author of KivyMD project, contributor\n\n### Code Contributors\n\nThis project exists thanks to all the people who contribute.\n*[How to contribute](#Contributing)*\n\n<a href=\"https://github.com/kivymd/KivyMD/graphs/contributors\">\n    <img src=\"https://opencollective.com/kivymd/contributors.svg?width=890&button=false\"/>\n</a>\n\n### Financial Contributors\n\n[Become a financial contributor](https://opencollective.com/kivymd#section-contribute) \non OpenCollective and help us sustain our community.\n\n#### Gold Sponsors\n\n[Become a Gold Sponsor](https://opencollective.com/kivymd/contribute/gold-sponsor-16160)\nand get your logo on our Readme with a link to your website.\n\n<!-- FIXME: sponsors are not displayed -->\n\n<a href=\"https://opencollective.com/peter-surda?requireActive=false\" target=\"_blank\"><img src=\"https://github.com/HeaTTheatR/KivyMD-data/raw/master/gallery/gold-sponsor-1.png?requireActive=false\"></a>\n\n#### Backers\n\n[Become a Backer](https://opencollective.com/kivymd/contribute/backer-16159) if you want to help develop this project.\n\n<a href=\"https://opencollective.com/kivymd#backers\" target=\"_blank\">\n    <img src=\"https://opencollective.com/kivymd/backers.svg?width=890\">\n</a>\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Set of widgets for Kivy inspired by Google's Material Design",
    "version": "1.2.0",
    "project_urls": {
        "Documentation": "https://kivymd.readthedocs.io",
        "Homepage": "https://github.com/kivymd/KivyMD",
        "Tracker": "https://github.com/kivymd/KivyMD/issues",
        "Wiki": "https://github.com/kivymd/KivyMD/wiki"
    },
    "split_keywords": [
        "kivymd",
        "kivy",
        "material",
        "ui"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20810b1154f5e581d5910702d9fadb3217f56cb186f72c8b36de0271e7ff9b5c",
                "md5": "1898379f722f5be9c2e5187cc9507853",
                "sha256": "2d33e2c59259998e93aee55acde647a4a20e5a0f962469db24ee4c9ec586962e"
            },
            "downloads": -1,
            "filename": "kivymd-1.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "1898379f722f5be9c2e5187cc9507853",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 2160842,
            "upload_time": "2024-01-21T10:49:26",
            "upload_time_iso_8601": "2024-01-21T10:49:26.401958Z",
            "url": "https://files.pythonhosted.org/packages/20/81/0b1154f5e581d5910702d9fadb3217f56cb186f72c8b36de0271e7ff9b5c/kivymd-1.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-21 10:49:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "kivymd",
    "github_project": "KivyMD",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "kivymd"
}
        
Elapsed time: 0.16551s