New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

casioplot

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

casioplot

Use casioplot module on a computer

  • 3.4.1
  • PyPI
  • Socket score

Maintainers
2

Casioplot for computers

.. image:: https://readthedocs.org/projects/casioplot/badge/?version=latest :target: https://casioplot.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status

.. image:: https://badge.fury.io/py/casioplot.svg? :target: https://pypi.org/project/casioplot/ :alt: PyPI Status

Module casioplot from Casio calculator for Computers.

This can help to develop python programs in your computer and run it before you put it in your calculator. Due to it's customization ability, this package can also be used as simple way to draw at a pixel level.

.. image:: docs/source/images/colours.png :alt: A colorful image

.. image:: docs/source/images/3D_cube.png :alt: A 3D cube

Installation

.. code-block:: shell

pip install casioplot

This module use python 3.11.

Need the module Pillow to work.

Install Pillow:

.. code-block:: shell

pip install pillow

Usage example

Draw a single pixel


.. code-block:: python3

    from casioplot import *

    print(get_pixel(10, 10))
    red = (255, 0, 0)
    set_pixel(10, 10, red)
    print(get_pixel(10, 10))
    show_screen()  # Don't forget to show the screen to see the result.

.. image:: docs/source/images/pixel.png
    :alt: A single pixel on the screen

.. code-block:: text

    (255, 255, 255)
    (255, 0, 0)

For more examples and usage, please refer to the `Docs <https://casioplot.readthedocs.io/en/latest/>`_.
There is also a demonstration of the package in the folder `demo <https://github.com/uniwix/casioplot/tree/master/demo>`_.

Development setup
-----------------

Nothing needed.

Release history
---------------

See `Github release page <https://github.com/uniwix/casioplot/releases>`_.

Meta
----

Uniwix - `uniwixu@gmail.com <uniwixu@gmail.com>`_

MiguelTorrinhaPereira - `miguel.torrinha.pereira+github@gmail.com <miguel.torrinha.pereira+github@gmail.com>`_

Distributed under the MIT license. See `LICENSE <https://github.com/uniwix/casioplot/blob/master/LICENSE>`_ for more information.

`<https://github.com/uniwix>`_

Contributing
------------

1. Fork it (`<https://github.com/uniwix/casioplot/fork>`_)
2. Create your feature branch (``git checkout -b feature/fooBar``)
3. Commit your changes (``git commit -am 'Add some fooBar'``)
4. Push to the branch (``git push origin feature/fooBar``)
5. Create a new Pull Request


v 3.4.1 - Uniwix - MiguelTorrinhaPereira

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc