Name | micropython-uplot JSON |
Version |
0.5.0
JSON |
| download |
home_page | |
Summary | MicroPython Graphics Library |
upload_time | 2023-08-20 23:28:45 |
maintainer | |
docs_url | None |
author | |
requires_python | |
license | MIT |
keywords |
micropython
uplot
plot
graphical
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
Introduction
============
.. image:: https://readthedocs.org/projects/micropython-uplot/badge/?version=latest
:target: https://micropython-uplot.readthedocs.io/en/latest/
:alt: Documentation Status
.. image:: https://img.shields.io/badge/micropython-Ok-purple.svg
:target: https://micropython.org
:alt: micropython
.. image:: https://img.shields.io/pypi/v/micropython-uplot.svg
:alt: latest version on PyPI
:target: https://pypi.python.org/pypi/micropython-uplot
.. image:: https://static.pepy.tech/personalized-badge/micropython-uplot?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Pypi%20Downloads
:alt: Total PyPI downloads
:target: https://pepy.tech/project/micropython-uplot
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/psf/black
:alt: Code Style: Black
MicroPython Graphics Library. This library uses the IL9486 driver from Peter Hinch taken from
https://github.com/peterhinch/micropython-nano-gui. with a Waveshare 3.5 display
This library uses FrameBuffer. It could work for other displays, however, is not my intention to
adapt or provide this functionality. This is an exercise to learn MicroPython Graphics adapting
the following library from CircuitPython
https://github.com/jposada202020/CircuitPython_uplot
Take a look in the `examples <https://micropython-uplot.readthedocs.io/en/latest/examples.html>`_ section in RTD to see the gallery
.. image:: https://github.com/jposada202020/MicroPython_UPLOT/blob/main/docs/readme1.png
Installing with mip
====================
To install using mpremote
.. code-block:: shell
mpremote mip install github:jposada202020/MicroPython_UPLOT
To install directly using a WIFI capable board
.. code-block:: shell
mip.install("github:jposada202020/MicroPython_UPLOT")
Installing Library Examples
============================
If you want to install library examples:
.. code-block:: shell
mpremote mip install github:jposada202020/MicroPython_UPLOT/examples.json
To install directly using a WIFI capable board
.. code-block:: shell
mip.install("github:jposada202020/MicroPython_UPLOT/examples.json")
Installing from PyPI
=====================
On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from
PyPI <https://pypi.org/project/micropython-uplot/>`_.
To install for current user:
.. code-block:: shell
pip3 install micropython-uplot
To install system-wide (this may be required in some cases):
.. code-block:: shell
sudo pip3 install micropython-uplot
To install in a virtual environment in your current project:
.. code-block:: shell
mkdir project-name && cd project-name
python3 -m venv .venv
source .env/bin/activate
pip3 install micropython-uplot
Usage Example
=============
Take a look at the examples directory
Documentation
=============
API documentation for this library can be found on `Read the Docs <https://micropython-uplot.readthedocs.io/en/latest/>`_.
Raw data
{
"_id": null,
"home_page": "",
"name": "micropython-uplot",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "micropython,uplot,plot,graphical",
"author": "",
"author_email": "JDM <xxyx@mailmeto.mozmail.com>",
"download_url": "https://files.pythonhosted.org/packages/bd/99/7f3ede4027451b5da6943de29c928a646682baa35b3f9477e0b684621866/micropython-uplot-0.5.0.tar.gz",
"platform": null,
"description": "Introduction\n============\n\n\n.. image:: https://readthedocs.org/projects/micropython-uplot/badge/?version=latest\n :target: https://micropython-uplot.readthedocs.io/en/latest/\n :alt: Documentation Status\n\n.. image:: https://img.shields.io/badge/micropython-Ok-purple.svg\n :target: https://micropython.org\n :alt: micropython\n\n.. image:: https://img.shields.io/pypi/v/micropython-uplot.svg\n :alt: latest version on PyPI\n :target: https://pypi.python.org/pypi/micropython-uplot\n\n.. image:: https://static.pepy.tech/personalized-badge/micropython-uplot?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Pypi%20Downloads\n :alt: Total PyPI downloads\n :target: https://pepy.tech/project/micropython-uplot\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n :target: https://github.com/psf/black\n :alt: Code Style: Black\n\nMicroPython Graphics Library. This library uses the IL9486 driver from Peter Hinch taken from\nhttps://github.com/peterhinch/micropython-nano-gui. with a Waveshare 3.5 display\nThis library uses FrameBuffer. It could work for other displays, however, is not my intention to\nadapt or provide this functionality. This is an exercise to learn MicroPython Graphics adapting\nthe following library from CircuitPython\nhttps://github.com/jposada202020/CircuitPython_uplot\n\nTake a look in the `examples <https://micropython-uplot.readthedocs.io/en/latest/examples.html>`_ section in RTD to see the gallery\n\n\n.. image:: https://github.com/jposada202020/MicroPython_UPLOT/blob/main/docs/readme1.png\n\n\nInstalling with mip\n====================\nTo install using mpremote\n\n.. code-block:: shell\n\n mpremote mip install github:jposada202020/MicroPython_UPLOT\n\nTo install directly using a WIFI capable board\n\n.. code-block:: shell\n\n mip.install(\"github:jposada202020/MicroPython_UPLOT\")\n\n\nInstalling Library Examples\n============================\n\nIf you want to install library examples:\n\n.. code-block:: shell\n\n mpremote mip install github:jposada202020/MicroPython_UPLOT/examples.json\n\nTo install directly using a WIFI capable board\n\n.. code-block:: shell\n\n mip.install(\"github:jposada202020/MicroPython_UPLOT/examples.json\")\n\n\nInstalling from PyPI\n=====================\n\nOn supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from\nPyPI <https://pypi.org/project/micropython-uplot/>`_.\nTo install for current user:\n\n.. code-block:: shell\n\n pip3 install micropython-uplot\n\nTo install system-wide (this may be required in some cases):\n\n.. code-block:: shell\n\n sudo pip3 install micropython-uplot\n\nTo install in a virtual environment in your current project:\n\n.. code-block:: shell\n\n mkdir project-name && cd project-name\n python3 -m venv .venv\n source .env/bin/activate\n pip3 install micropython-uplot\n\n\nUsage Example\n=============\n\nTake a look at the examples directory\n\nDocumentation\n=============\nAPI documentation for this library can be found on `Read the Docs <https://micropython-uplot.readthedocs.io/en/latest/>`_.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "MicroPython Graphics Library",
"version": "0.5.0",
"project_urls": {
"Homepage": "https://github.com/jposada202020/MicroPython_UPLOT"
},
"split_keywords": [
"micropython",
"uplot",
"plot",
"graphical"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "0827a71118072b92a0d38decb9d4a0f9d68cefcecc7762d017fa7237bf34f95f",
"md5": "1a3c2e2952bb51adcd7114aedb8d8bd0",
"sha256": "2f6a4a12aae456ac8edb95d2604155773560e5a1c5d04ba651d23f510206aeaa"
},
"downloads": -1,
"filename": "micropython_uplot-0.5.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1a3c2e2952bb51adcd7114aedb8d8bd0",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 16970,
"upload_time": "2023-08-20T23:28:43",
"upload_time_iso_8601": "2023-08-20T23:28:43.820033Z",
"url": "https://files.pythonhosted.org/packages/08/27/a71118072b92a0d38decb9d4a0f9d68cefcecc7762d017fa7237bf34f95f/micropython_uplot-0.5.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd997f3ede4027451b5da6943de29c928a646682baa35b3f9477e0b684621866",
"md5": "c211d966e1e521d3e13c9ddbd9c389dd",
"sha256": "b1c2173457eb5201bbb34b177b7885362697a73668bf0ecd376d20d269ea696f"
},
"downloads": -1,
"filename": "micropython-uplot-0.5.0.tar.gz",
"has_sig": false,
"md5_digest": "c211d966e1e521d3e13c9ddbd9c389dd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 451916,
"upload_time": "2023-08-20T23:28:45",
"upload_time_iso_8601": "2023-08-20T23:28:45.766036Z",
"url": "https://files.pythonhosted.org/packages/bd/99/7f3ede4027451b5da6943de29c928a646682baa35b3f9477e0b684621866/micropython-uplot-0.5.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-08-20 23:28:45",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "jposada202020",
"github_project": "MicroPython_UPLOT",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [],
"lcname": "micropython-uplot"
}