No description
Find a file
2019-12-04 12:51:21 -08:00
.github Add GitHub pull request template 2016-05-27 13:24:21 -07:00
Adafruit_PureIO undo modern pylint complaint 2019-12-01 19:30:43 -05:00
tests Initial commit. 2016-02-19 09:41:53 +00:00
.gitignore Fix issue with block read needing to return list of bytes (bytearray). 2016-02-19 09:57:32 +00:00
.pylintrc Enable push to pypi on release and cleanup pylint. 2018-06-26 13:54:23 -07:00
.travis.yml go back to oldlint 2019-12-01 19:27:26 -05:00
CODE_OF_CONDUCT.md Updated setup.py to use setuptools_scm and adding COC 2019-12-04 11:45:09 -08:00
LICENSE Initial commit. 2016-02-19 09:41:53 +00:00
README.rst Updated README to fix deploy issue 2019-12-04 12:40:25 -08:00
requirements.txt start empty 2018-06-24 18:02:12 -04:00
setup.py Fixed directory name in setup.py 2019-12-04 12:51:21 -08:00

Introduction
============

Pure python (i.e. no native extensions) access to Linux IO including I2C and SPI.  
Drop in replacement for smbus and spidev modules.

Installation
============

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

.. code-block:: shell

    pip3 install Adafruit-PureIO

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

.. code-block:: shell

    sudo pip3 install Adafruit-PureIO

To install in a virtual environment in your current project:

.. code-block:: shell

    mkdir project-name && cd project-name
    python3 -m venv .env
    source .env/bin/activate
    pip3 install Adafruit-PureIO