circuitpython-uplot


Namecircuitpython-uplot JSON
Version 1.1.2 PyPI version JSON
download
home_page
Summaryframework to display different plots in displayio. similar to widget
upload_time2023-08-12 02:15:17
maintainer
docs_urlNone
author
requires_python
licenseMIT
keywords circuitpython uplot microplot bar stackplot fillbetween piechart scatter line displayio graphics library ulab svg widget graph graphing chart charts plotting plot plotter
VCS
bugtrack_url
requirements Adafruit-Blinka typing-extensions
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://readthedocs.org/projects/circuitpython-uplot/badge/?version=latest
    :target: https://circuitpython-uplot.readthedocs.io/
    :alt: Documentation Status

.. image:: https://github.com/jposada202020/CircuitPython_uplot/workflows/Build%20CI/badge.svg
    :target: https://github.com/jposada202020/CircuitPython_uplot/actions
    :alt: Build Status

.. image:: https://img.shields.io/pypi/v/circuitpython-uplot.svg
    :alt: latest version on PyPI
    :target: https://pypi.python.org/pypi/circuitpython-uplot

.. image:: https://static.pepy.tech/personalized-badge/circuitpython-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/circuitpython-uplot

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black
    :alt: Code Style: Black

Framework to display different graphical plots in displayio.
Take a look in the `examples <https://circuitpython-uplot.readthedocs.io/en/latest/examples.html>`_ section in RTD to see the gallery

For detailed view of the library please refer to the `Quick start guide <https://circuitpython-uplot.readthedocs.io/>`_

.. image:: https://github.com/jposada202020/CircuitPython_uplot/blob/main/docs/readme.png

.. image:: https://github.com/jposada202020/CircuitPython_uplot/blob/main/docs/readme2.png


Below a picture of a real live application. for more information visit the project `page <https://github.com/casainho/temperature_humidity_sensor_eink_display>`_. Thanks to @Casainho

.. image:: https://github.com/jposada202020/CircuitPython_uplot/blob/main/docs/logging.png


Dependencies
=============
This library depends on:

* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_

This library is resource consuming, may or may not with some CircuitPython supported devices.
Tinker it as you wish in order to work.

Please ensure all dependencies are available on the CircuitPython filesystem.
This is easily achieved by downloading
`the Adafruit library and driver bundle <https://circuitpython.org/libraries>`_
or individual libraries can be installed using
`circup <https://github.com/adafruit/circup>`_.


Installing from PyPI
=====================

On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from
PyPI <https://pypi.org/project/circuitpython-uplot/>`_.
To install for current user:

.. code-block:: shell

    pip3 install circuitpython-uplot

To install system-wide (this may be required in some cases):

.. code-block:: shell

    sudo pip3 install circuitpython-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 circuitpython-uplot

Installing to a Connected CircuitPython Device with Circup
==========================================================

Make sure that you have ``circup`` installed in your Python environment.
Install it with the following command if necessary:

.. code-block:: shell

    pip3 install circup

With ``circup`` installed and your CircuitPython device connected use the
following command to install:

.. code-block:: shell

    circup install circuitpython_uplot

Or the following command to update an existing version:

.. code-block:: shell

    circup update

Usage Example
=============

To learn how to use the library please refer to the examples folder or the
`Quick start guide <https://circuitpython-uplot.readthedocs.io/>`_

Documentation
=============
API documentation for this library can be found on `Read the Docs <https://circuitpython-uplot.readthedocs.io/>`_.


Contributing
============

Contributions are welcome!

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "circuitpython-uplot",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "circuitpython,uplot,microplot,bar,stackplot,fillbetween,piechart,scatter,line,displayio,graphics,library,ulab,svg,widget,graph,graphing,chart,charts,plotting,plot,plotter",
    "author": "",
    "author_email": "JDM <uplot@mailmeto.mozmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/7e/9e/5a53cff2d8eb8c2f169b94fab9c5be37071cf455405fbf5946274e56451f/circuitpython-uplot-1.1.2.tar.gz",
    "platform": null,
    "description": ".. image:: https://readthedocs.org/projects/circuitpython-uplot/badge/?version=latest\n    :target: https://circuitpython-uplot.readthedocs.io/\n    :alt: Documentation Status\n\n.. image:: https://github.com/jposada202020/CircuitPython_uplot/workflows/Build%20CI/badge.svg\n    :target: https://github.com/jposada202020/CircuitPython_uplot/actions\n    :alt: Build Status\n\n.. image:: https://img.shields.io/pypi/v/circuitpython-uplot.svg\n    :alt: latest version on PyPI\n    :target: https://pypi.python.org/pypi/circuitpython-uplot\n\n.. image:: https://static.pepy.tech/personalized-badge/circuitpython-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/circuitpython-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\nFramework to display different graphical plots in displayio.\nTake a look in the `examples <https://circuitpython-uplot.readthedocs.io/en/latest/examples.html>`_ section in RTD to see the gallery\n\nFor detailed view of the library please refer to the `Quick start guide <https://circuitpython-uplot.readthedocs.io/>`_\n\n.. image:: https://github.com/jposada202020/CircuitPython_uplot/blob/main/docs/readme.png\n\n.. image:: https://github.com/jposada202020/CircuitPython_uplot/blob/main/docs/readme2.png\n\n\nBelow a picture of a real live application. for more information visit the project `page <https://github.com/casainho/temperature_humidity_sensor_eink_display>`_. Thanks to @Casainho\n\n.. image:: https://github.com/jposada202020/CircuitPython_uplot/blob/main/docs/logging.png\n\n\nDependencies\n=============\nThis library depends on:\n\n* `Adafruit CircuitPython <https://github.com/adafruit/circuitpython>`_\n\nThis library is resource consuming, may or may not with some CircuitPython supported devices.\nTinker it as you wish in order to work.\n\nPlease ensure all dependencies are available on the CircuitPython filesystem.\nThis is easily achieved by downloading\n`the Adafruit library and driver bundle <https://circuitpython.org/libraries>`_\nor individual libraries can be installed using\n`circup <https://github.com/adafruit/circup>`_.\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/circuitpython-uplot/>`_.\nTo install for current user:\n\n.. code-block:: shell\n\n    pip3 install circuitpython-uplot\n\nTo install system-wide (this may be required in some cases):\n\n.. code-block:: shell\n\n    sudo pip3 install circuitpython-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 circuitpython-uplot\n\nInstalling to a Connected CircuitPython Device with Circup\n==========================================================\n\nMake sure that you have ``circup`` installed in your Python environment.\nInstall it with the following command if necessary:\n\n.. code-block:: shell\n\n    pip3 install circup\n\nWith ``circup`` installed and your CircuitPython device connected use the\nfollowing command to install:\n\n.. code-block:: shell\n\n    circup install circuitpython_uplot\n\nOr the following command to update an existing version:\n\n.. code-block:: shell\n\n    circup update\n\nUsage Example\n=============\n\nTo learn how to use the library please refer to the examples folder or the\n`Quick start guide <https://circuitpython-uplot.readthedocs.io/>`_\n\nDocumentation\n=============\nAPI documentation for this library can be found on `Read the Docs <https://circuitpython-uplot.readthedocs.io/>`_.\n\n\nContributing\n============\n\nContributions are welcome!\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "framework to display different plots in displayio. similar to widget",
    "version": "1.1.2",
    "project_urls": {
        "Homepage": "https://github.com/jposada202020/CircuitPython_uplot"
    },
    "split_keywords": [
        "circuitpython",
        "uplot",
        "microplot",
        "bar",
        "stackplot",
        "fillbetween",
        "piechart",
        "scatter",
        "line",
        "displayio",
        "graphics",
        "library",
        "ulab",
        "svg",
        "widget",
        "graph",
        "graphing",
        "chart",
        "charts",
        "plotting",
        "plot",
        "plotter"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94ebb7aa404dd3466228af4e95d751beaa9ee2b99bfa92f0453843612ca14a43",
                "md5": "cb3e1a813e24c8d222c7bc53516b3ad6",
                "sha256": "33142b1ee1122c4cc5494c395cc048b634a01723b7de66d177c514dd4ed2a7d8"
            },
            "downloads": -1,
            "filename": "circuitpython_uplot-1.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "cb3e1a813e24c8d222c7bc53516b3ad6",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 27957,
            "upload_time": "2023-08-12T02:15:15",
            "upload_time_iso_8601": "2023-08-12T02:15:15.210162Z",
            "url": "https://files.pythonhosted.org/packages/94/eb/b7aa404dd3466228af4e95d751beaa9ee2b99bfa92f0453843612ca14a43/circuitpython_uplot-1.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e9e5a53cff2d8eb8c2f169b94fab9c5be37071cf455405fbf5946274e56451f",
                "md5": "619646457429a12db8238b15bed6a01d",
                "sha256": "1f3f2c39e873c610d099e4692b9ddce63c3dc4d44075f978b72a2ebd5c63940a"
            },
            "downloads": -1,
            "filename": "circuitpython-uplot-1.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "619646457429a12db8238b15bed6a01d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 4651447,
            "upload_time": "2023-08-12T02:15:17",
            "upload_time_iso_8601": "2023-08-12T02:15:17.488411Z",
            "url": "https://files.pythonhosted.org/packages/7e/9e/5a53cff2d8eb8c2f169b94fab9c5be37071cf455405fbf5946274e56451f/circuitpython-uplot-1.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-12 02:15:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jposada202020",
    "github_project": "CircuitPython_uplot",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "Adafruit-Blinka",
            "specs": []
        },
        {
            "name": "typing-extensions",
            "specs": [
                [
                    "~=",
                    "4.0"
                ]
            ]
        }
    ],
    "lcname": "circuitpython-uplot"
}
        
Elapsed time: 0.10010s