types-circuitpython


Nametypes-circuitpython JSON
Version 8.1.0 PyPI version JSON
download
home_pagehttps://github.com/hardfury-labs/types-circuitpython
SummaryType support (typings) for CircuitPython built-in binding packages.
upload_time2023-05-24 01:35:48
maintainer
docs_urlNone
authorHardFury
requires_python>=3.7.0
licenseGNU General Public License v3 (GPLv3)
keywords circuitpython micropython adafruit
VCS
bugtrack_url
requirements adafruit-blinka adafruit-circuitpython-busdevice adafruit-circuitpython-requests adafruit-circuitpython-typing adafruit-platformdetect adafruit-pureio black bleach build certifi cfgv charset-normalizer click commonmark distlib docutils filelock flake8 identify idna importlib-metadata isort jaraco-classes keyring loguru mccabe more-itertools mypy-extensions nodeenv packaging pathspec pep517 pip-tools pkginfo platformdirs pre-commit pycodestyle pyflakes pyftdi pygments pyparsing pyright pyserial pyusb pyyaml readme-renderer requests requests-toolbelt rfc3986 rich six toml tomli twine typing-extensions urllib3 virtualenv webencodings wheel zipp
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # types-circuitpython

![PyPI - Python Version](https://img.shields.io/pypi/pyversions/types-circuitpython?style=flat-square)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/types-circuitpython?style=flat-square)

Type Support (typings) for [CircuitPython](https://github.com/adafruit/circuitpython) built-in binding packages.

Coding with `adafruit-circuitpython-typing`:

![adafruit-circuitpython-typing](https://raw.githubusercontent.com/hardfury-labs/types-circuitpython/master/screen-records/adafruit-circuitpython-typing.gif)

Coding with `types-circuitpython`:

![types-circuitpython](https://raw.githubusercontent.com/hardfury-labs/types-circuitpython/master/screen-records/types-circuitpython.gif)

## Usage

```bash
# installing the last release
$ pip install types-circuitpython
# or installing a specific version
$ pip install types-circuitpython==8.1.0b2
```

## Long term support versions

Following [CircuitPython release versions](https://github.com/adafruit/circuitpython/releases), or [CircuitPython tags](https://github.com/adafruit/circuitpython/tags)

![PyPI - Python Version](https://img.shields.io/pypi/pyversions/types-circuitpython?style=flat-square) [Pypi versions](https://pypi.org/project/types-circuitpython/#history)

- 8.x
  - 8.1.x
    - 8.1.0b2 (Corresponds 8.1.0-beta.2 of CircuitPython's version)
    - 8.1.0b1 (Corresponds 8.1.0-beta.1 of CircuitPython's version)
    - 8.1.0b0 (Corresponds 8.1.0-beta.0 of CircuitPython's version)
    - 8.1.0a2 (Corresponds 8.1.0-alpha.2 of CircuitPython's version)
  - 8.0.x
    - 8.0.5
    - 8.0.4
    - 8.0.3
    - 8.0.2
    - 8.0.0
    - 8.0.0rc2 (Corresponds 8.0.0-rc.2 of CircuitPython's version)
    - 8.0.0rc1 (Corresponds 8.0.0-rc.1 of CircuitPython's version)
    - 8.0.0rc0 (Corresponds 8.0.0-rc.0 of CircuitPython's version)
    - 8.0.0b6 (Corresponds 8.0.0-beta.6 of CircuitPython's version)
    - 8.0.0b5 (Corresponds 8.0.0-beta.5 of CircuitPython's version)
    - 8.0.0b4 (Corresponds 8.0.0-beta.4 of CircuitPython's version)
    - 8.0.0b3 (Corresponds 8.0.0-beta.3 of CircuitPython's version)
    - 8.0.0b2 (Corresponds 8.0.0-beta.2 of CircuitPython's version)
    - 8.0.0b1 (Corresponds 8.0.0-beta.1 of CircuitPython's version)
    - 8.0.0b0 (Corresponds 8.0.0-beta.0 of CircuitPython's version)
    - 8.0.0a1 (Corresponds 8.0.0-alpha.1 of CircuitPython's version)
    - 8.0.0a0 (Corresponds 8.0.0-alpha.0 of CircuitPython's version)
- 7.x
  - 7.3.x
    - 7.3.3
    - 7.3.2
    - 7.3.1
    - 7.3.0

## Development

## Initialization

```bash
$ virtualenv .venv
$ . ./.venv/bin/activate
$ pip install -r requirements.txt
$ python setup.py develop
# or
$ pip install -e .
```

## Generate bindings

```bash
$ make generate version=<CIRCUITPYTHON VERSION>
```

## Code styles

```bash
$ make format
$ make lint
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/hardfury-labs/types-circuitpython",
    "name": "types-circuitpython",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7.0",
    "maintainer_email": "",
    "keywords": "circuitpython,micropython,adafruit",
    "author": "HardFury",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/b4/f3/199bf769f2b3c4f940d5e46cd810c6f37ec7b829a6ef3d00ac5a7b32d9bc/types-circuitpython-8.1.0.tar.gz",
    "platform": null,
    "description": "# types-circuitpython\n\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/types-circuitpython?style=flat-square)\n![PyPI - Wheel](https://img.shields.io/pypi/wheel/types-circuitpython?style=flat-square)\n\nType Support (typings) for [CircuitPython](https://github.com/adafruit/circuitpython) built-in binding packages.\n\nCoding with `adafruit-circuitpython-typing`:\n\n![adafruit-circuitpython-typing](https://raw.githubusercontent.com/hardfury-labs/types-circuitpython/master/screen-records/adafruit-circuitpython-typing.gif)\n\nCoding with `types-circuitpython`:\n\n![types-circuitpython](https://raw.githubusercontent.com/hardfury-labs/types-circuitpython/master/screen-records/types-circuitpython.gif)\n\n## Usage\n\n```bash\n# installing the last release\n$ pip install types-circuitpython\n# or installing a specific version\n$ pip install types-circuitpython==8.1.0b2\n```\n\n## Long term support versions\n\nFollowing [CircuitPython release versions](https://github.com/adafruit/circuitpython/releases), or [CircuitPython tags](https://github.com/adafruit/circuitpython/tags)\n\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/types-circuitpython?style=flat-square) [Pypi versions](https://pypi.org/project/types-circuitpython/#history)\n\n- 8.x\n  - 8.1.x\n    - 8.1.0b2 (Corresponds 8.1.0-beta.2 of CircuitPython's version)\n    - 8.1.0b1 (Corresponds 8.1.0-beta.1 of CircuitPython's version)\n    - 8.1.0b0 (Corresponds 8.1.0-beta.0 of CircuitPython's version)\n    - 8.1.0a2 (Corresponds 8.1.0-alpha.2 of CircuitPython's version)\n  - 8.0.x\n    - 8.0.5\n    - 8.0.4\n    - 8.0.3\n    - 8.0.2\n    - 8.0.0\n    - 8.0.0rc2 (Corresponds 8.0.0-rc.2 of CircuitPython's version)\n    - 8.0.0rc1 (Corresponds 8.0.0-rc.1 of CircuitPython's version)\n    - 8.0.0rc0 (Corresponds 8.0.0-rc.0 of CircuitPython's version)\n    - 8.0.0b6 (Corresponds 8.0.0-beta.6 of CircuitPython's version)\n    - 8.0.0b5 (Corresponds 8.0.0-beta.5 of CircuitPython's version)\n    - 8.0.0b4 (Corresponds 8.0.0-beta.4 of CircuitPython's version)\n    - 8.0.0b3 (Corresponds 8.0.0-beta.3 of CircuitPython's version)\n    - 8.0.0b2 (Corresponds 8.0.0-beta.2 of CircuitPython's version)\n    - 8.0.0b1 (Corresponds 8.0.0-beta.1 of CircuitPython's version)\n    - 8.0.0b0 (Corresponds 8.0.0-beta.0 of CircuitPython's version)\n    - 8.0.0a1 (Corresponds 8.0.0-alpha.1 of CircuitPython's version)\n    - 8.0.0a0 (Corresponds 8.0.0-alpha.0 of CircuitPython's version)\n- 7.x\n  - 7.3.x\n    - 7.3.3\n    - 7.3.2\n    - 7.3.1\n    - 7.3.0\n\n## Development\n\n## Initialization\n\n```bash\n$ virtualenv .venv\n$ . ./.venv/bin/activate\n$ pip install -r requirements.txt\n$ python setup.py develop\n# or\n$ pip install -e .\n```\n\n## Generate bindings\n\n```bash\n$ make generate version=<CIRCUITPYTHON VERSION>\n```\n\n## Code styles\n\n```bash\n$ make format\n$ make lint\n```\n",
    "bugtrack_url": null,
    "license": "GNU General Public License v3 (GPLv3)",
    "summary": "Type support (typings) for CircuitPython built-in binding packages.",
    "version": "8.1.0",
    "project_urls": {
        "Homepage": "https://github.com/hardfury-labs/types-circuitpython"
    },
    "split_keywords": [
        "circuitpython",
        "micropython",
        "adafruit"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe954a3a46438811503c22cd35847795b34a3a2a2c630647f0c010d95c2599ac",
                "md5": "9252f87cb0d822f27b555c8f97c75cd7",
                "sha256": "7f359f6a917c009e6efaefc2961dddc85bbea27404e8e03633033d556beb6fcb"
            },
            "downloads": -1,
            "filename": "types_circuitpython-8.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9252f87cb0d822f27b555c8f97c75cd7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7.0",
            "size": 168347,
            "upload_time": "2023-05-24T01:35:44",
            "upload_time_iso_8601": "2023-05-24T01:35:44.555460Z",
            "url": "https://files.pythonhosted.org/packages/fe/95/4a3a46438811503c22cd35847795b34a3a2a2c630647f0c010d95c2599ac/types_circuitpython-8.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4f3199bf769f2b3c4f940d5e46cd810c6f37ec7b829a6ef3d00ac5a7b32d9bc",
                "md5": "8cb1882ad717ff57689bfcfad611279a",
                "sha256": "a7c13fd385f6cffae6c27cd8e583b3730cc3df78895ff9e56783990689c4c574"
            },
            "downloads": -1,
            "filename": "types-circuitpython-8.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "8cb1882ad717ff57689bfcfad611279a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7.0",
            "size": 132960,
            "upload_time": "2023-05-24T01:35:48",
            "upload_time_iso_8601": "2023-05-24T01:35:48.895070Z",
            "url": "https://files.pythonhosted.org/packages/b4/f3/199bf769f2b3c4f940d5e46cd810c6f37ec7b829a6ef3d00ac5a7b32d9bc/types-circuitpython-8.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-24 01:35:48",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "hardfury-labs",
    "github_project": "types-circuitpython",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "adafruit-blinka",
            "specs": [
                [
                    "==",
                    "8.2.2"
                ]
            ]
        },
        {
            "name": "adafruit-circuitpython-busdevice",
            "specs": [
                [
                    "==",
                    "5.2.3"
                ]
            ]
        },
        {
            "name": "adafruit-circuitpython-requests",
            "specs": [
                [
                    "==",
                    "1.12.8"
                ]
            ]
        },
        {
            "name": "adafruit-circuitpython-typing",
            "specs": [
                [
                    "==",
                    "1.8.1"
                ]
            ]
        },
        {
            "name": "adafruit-platformdetect",
            "specs": [
                [
                    "==",
                    "3.27.3"
                ]
            ]
        },
        {
            "name": "adafruit-pureio",
            "specs": [
                [
                    "==",
                    "1.1.9"
                ]
            ]
        },
        {
            "name": "black",
            "specs": [
                [
                    "==",
                    "22.8.0"
                ]
            ]
        },
        {
            "name": "bleach",
            "specs": [
                [
                    "==",
                    "5.0.1"
                ]
            ]
        },
        {
            "name": "build",
            "specs": [
                [
                    "==",
                    "0.8.0"
                ]
            ]
        },
        {
            "name": "certifi",
            "specs": [
                [
                    "==",
                    "2022.9.14"
                ]
            ]
        },
        {
            "name": "cfgv",
            "specs": [
                [
                    "==",
                    "3.3.1"
                ]
            ]
        },
        {
            "name": "charset-normalizer",
            "specs": [
                [
                    "==",
                    "2.1.1"
                ]
            ]
        },
        {
            "name": "click",
            "specs": [
                [
                    "==",
                    "8.1.3"
                ]
            ]
        },
        {
            "name": "commonmark",
            "specs": [
                [
                    "==",
                    "0.9.1"
                ]
            ]
        },
        {
            "name": "distlib",
            "specs": [
                [
                    "==",
                    "0.3.6"
                ]
            ]
        },
        {
            "name": "docutils",
            "specs": [
                [
                    "==",
                    "0.19"
                ]
            ]
        },
        {
            "name": "filelock",
            "specs": [
                [
                    "==",
                    "3.8.0"
                ]
            ]
        },
        {
            "name": "flake8",
            "specs": [
                [
                    "==",
                    "5.0.4"
                ]
            ]
        },
        {
            "name": "identify",
            "specs": [
                [
                    "==",
                    "2.5.5"
                ]
            ]
        },
        {
            "name": "idna",
            "specs": [
                [
                    "==",
                    "3.4"
                ]
            ]
        },
        {
            "name": "importlib-metadata",
            "specs": [
                [
                    "==",
                    "4.12.0"
                ]
            ]
        },
        {
            "name": "isort",
            "specs": [
                [
                    "==",
                    "5.10.1"
                ]
            ]
        },
        {
            "name": "jaraco-classes",
            "specs": [
                [
                    "==",
                    "3.2.2"
                ]
            ]
        },
        {
            "name": "keyring",
            "specs": [
                [
                    "==",
                    "23.9.1"
                ]
            ]
        },
        {
            "name": "loguru",
            "specs": [
                [
                    "==",
                    "0.7.0"
                ]
            ]
        },
        {
            "name": "mccabe",
            "specs": [
                [
                    "==",
                    "0.7.0"
                ]
            ]
        },
        {
            "name": "more-itertools",
            "specs": [
                [
                    "==",
                    "8.14.0"
                ]
            ]
        },
        {
            "name": "mypy-extensions",
            "specs": [
                [
                    "==",
                    "0.4.3"
                ]
            ]
        },
        {
            "name": "nodeenv",
            "specs": [
                [
                    "==",
                    "1.7.0"
                ]
            ]
        },
        {
            "name": "packaging",
            "specs": [
                [
                    "==",
                    "21.3"
                ]
            ]
        },
        {
            "name": "pathspec",
            "specs": [
                [
                    "==",
                    "0.10.1"
                ]
            ]
        },
        {
            "name": "pep517",
            "specs": [
                [
                    "==",
                    "0.13.0"
                ]
            ]
        },
        {
            "name": "pip-tools",
            "specs": [
                [
                    "==",
                    "6.8.0"
                ]
            ]
        },
        {
            "name": "pkginfo",
            "specs": [
                [
                    "==",
                    "1.8.3"
                ]
            ]
        },
        {
            "name": "platformdirs",
            "specs": [
                [
                    "==",
                    "2.5.2"
                ]
            ]
        },
        {
            "name": "pre-commit",
            "specs": [
                [
                    "==",
                    "2.20.0"
                ]
            ]
        },
        {
            "name": "pycodestyle",
            "specs": [
                [
                    "==",
                    "2.9.1"
                ]
            ]
        },
        {
            "name": "pyflakes",
            "specs": [
                [
                    "==",
                    "2.5.0"
                ]
            ]
        },
        {
            "name": "pyftdi",
            "specs": [
                [
                    "==",
                    "0.54.0"
                ]
            ]
        },
        {
            "name": "pygments",
            "specs": [
                [
                    "==",
                    "2.13.0"
                ]
            ]
        },
        {
            "name": "pyparsing",
            "specs": [
                [
                    "==",
                    "3.0.9"
                ]
            ]
        },
        {
            "name": "pyright",
            "specs": [
                [
                    "==",
                    "1.1.270"
                ]
            ]
        },
        {
            "name": "pyserial",
            "specs": [
                [
                    "==",
                    "3.5"
                ]
            ]
        },
        {
            "name": "pyusb",
            "specs": [
                [
                    "==",
                    "1.2.1"
                ]
            ]
        },
        {
            "name": "pyyaml",
            "specs": [
                [
                    "==",
                    "6.0"
                ]
            ]
        },
        {
            "name": "readme-renderer",
            "specs": [
                [
                    "==",
                    "37.1"
                ]
            ]
        },
        {
            "name": "requests",
            "specs": [
                [
                    "==",
                    "2.28.1"
                ]
            ]
        },
        {
            "name": "requests-toolbelt",
            "specs": [
                [
                    "==",
                    "0.9.1"
                ]
            ]
        },
        {
            "name": "rfc3986",
            "specs": [
                [
                    "==",
                    "2.0.0"
                ]
            ]
        },
        {
            "name": "rich",
            "specs": [
                [
                    "==",
                    "12.5.1"
                ]
            ]
        },
        {
            "name": "six",
            "specs": [
                [
                    "==",
                    "1.16.0"
                ]
            ]
        },
        {
            "name": "toml",
            "specs": [
                [
                    "==",
                    "0.10.2"
                ]
            ]
        },
        {
            "name": "tomli",
            "specs": [
                [
                    "==",
                    "2.0.1"
                ]
            ]
        },
        {
            "name": "twine",
            "specs": [
                [
                    "==",
                    "4.0.1"
                ]
            ]
        },
        {
            "name": "typing-extensions",
            "specs": [
                [
                    "==",
                    "4.3.0"
                ]
            ]
        },
        {
            "name": "urllib3",
            "specs": [
                [
                    "==",
                    "1.26.12"
                ]
            ]
        },
        {
            "name": "virtualenv",
            "specs": [
                [
                    "==",
                    "20.16.5"
                ]
            ]
        },
        {
            "name": "webencodings",
            "specs": [
                [
                    "==",
                    "0.5.1"
                ]
            ]
        },
        {
            "name": "wheel",
            "specs": [
                [
                    "==",
                    "0.37.1"
                ]
            ]
        },
        {
            "name": "zipp",
            "specs": [
                [
                    "==",
                    "3.8.1"
                ]
            ]
        }
    ],
    "lcname": "types-circuitpython"
}
        
Elapsed time: 0.09028s