{
"info": {
"author": "Danilo Bargen",
"author_email": "mail@dbrgn.ch",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Hardware :: Hardware Drivers"
],
"description": "RPLCD\n#####\n\n.. image:: https://badges.gitter.im/RPLCD/Lobby.svg\n :alt: Join the chat at https://gitter.im/RPLCD/Lobby\n :target: https://gitter.im/RPLCD/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n.. image:: https://img.shields.io/travis/dbrgn/RPLCD/master.svg\n :target: https://travis-ci.org/dbrgn/RPLCD\n :alt: Build Status\n.. image:: https://img.shields.io/pypi/v/RPLCD.svg\n :target: https://pypi.python.org/pypi/RPLCD/\n :alt: PyPI Version\n.. image:: https://img.shields.io/pypi/wheel/RPLCD.svg\n :target: https://pypi.python.org/pypi/RPLCD/\n :alt: PyPI Wheel\n.. image:: https://img.shields.io/pypi/pyversions/RPLCD.svg\n :target: https://pypi.python.org/pypi/RPLCD/\n :alt: PyPI Python Versions\n.. image:: https://img.shields.io/badge/dependencies-0-blue.svg\n :target: https://pypi.python.org/pypi/RPLCD/\n :alt: Dependencies\n.. image:: https://img.shields.io/pypi/l/RPLCD.svg\n :target: https://pypi.python.org/pypi/RPLCD/\n :alt: License\n\nA Python 3/2 Raspberry PI Character LCD library for the Hitachi HD44780\ncontroller. It supports both GPIO (parallel) mode as well as boards with an I\u00b2C\nport expander (e.g. the PCF8574 or the MCP23008).\n\nThis library is inspired by Adafruit Industries' CharLCD_ library as well as by\nArduino's LiquidCrystal_ library.\n\nFor GPIO mode, no external dependencies (except the ``RPi.GPIO`` library, which\ncomes preinstalled on Raspbian) are needed to use this library. If you want to\ncontrol LCDs via I\u00b2C, then you also need the ``python-smbus`` or ``smbus2`` library. If you\nwant to control the LCD with ``pigpio``, you have to install the pigpio_ library.\n\nIf you're trying to get started with RPLCD, you should probably `read the docs\n<#documentation>`__ :)\n\n.. image:: https://raw.github.com/dbrgn/RPLCD/master/photo-i2c.jpg\n :alt: Photo of 20x4 LCD in action\n\n\nSetup\n=====\n\nYou can install RPLCD directly from `PyPI\n`_ using pip::\n\n $ sudo pip install RPLCD\n\nIf you want to use I\u00b2C, you also need either the smbus or `smbus2 `_ library::\n\n $ sudo apt install python-smbus\n or\n $ sudo pip install smbus2\n\nRPLCD will first try to use smbus if available and if not, fall back to smbus2.\n\nYou can also install the library manually without pip. Either just copy the\nscripts to your working directory and import them, or download the repository\nand run ``python setup.py install`` to install it into your Python package\ndirectory.\n\n\nFeatures\n========\n\nImplemented\n-----------\n\n- Simple to use API\n- Support for both 4 bit and 8 bit modes\n- Support for both parallel (GPIO) and I\u00b2C connection\n- Support for custom characters\n- Support for backlight control circuits\n- Built-in support for `A00` and `A02` character tables\n- Python 2/3 compatible\n- Caching: Only write characters if they changed\n- No external dependencies (except `RPi.GPIO`, and `python-smbus` or `smbus2` if you need\n I\u00b2C support)\n\nWishlist\n--------\n\nThese things may get implemented in the future, depending on my free time and\nmotivation:\n\n- MicroPython port\n\nSupported I\u00b2C Port Expanders\n----------------------------\n\n- PCF8574 (used by a lot of I\u00b2C LCD adapters on Ali Express)\n- MCP23008 (used in Adafruit I\u00b2C LCD backpack)\n- MCP23017\n\n\nDocumentation\n=============\n\n- Stable (released on PyPI): http://rplcd.readthedocs.io/en/stable/\n- Latest (current master): http://rplcd.readthedocs.io/en/latest/\n\nTesting\n=======\n\nInteractive Test Script\n-----------------------\n\nTo test your LCD, please run the ``rplcd-tests`` script with the ``testsuite``\ntarget.\n\nUnit Tests\n----------\n\nThere are also unit tests. First, install dependencies:\n\n pip install -U -r requirements-dev.txt\n\nThen run the tests:\n\n py.test -v\n\n\nCoding Guidelines\n=================\n\n`PEP8 `__ via `flake8\n`_ with ``max-line-width`` set to 99 and\n``E126-E128,C901`` ignored::\n\n flake8 --max-line-length=99 --ignore=E126,E127,E128,C901 RPLCD/lcd.py\n\n\nResources\n=========\n\n- TC2004A-01 Data Sheet: http://www.adafruit.com/datasheets/TC2004A-01.pdf\n- HD44780U Data Sheet: http://www.adafruit.com/datasheets/HD44780.pdf\n\n\nLicense\n=======\n\nThis code is licensed under the MIT license, see the `LICENSE file\n`_ or `tldrlegal\n`_ for more information. \n\n\n.. _charlcd: https://github.com/adafruit/Adafruit-Raspberry-Pi-Python-Code/tree/master/Adafruit_CharLCD\n.. _liquidcrystal: http://arduino.cc/en/Reference/LiquidCrystal\n.. _pigpio: http://abyz.me.uk/rpi/pigpio/\n\n\n",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/dbrgn/RPLCD",
"keywords": "raspberry,raspberry pi,lcd,liquid crystal,hitachi,hd44780",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "RPLCD",
"package_url": "https://pypi.org/project/RPLCD/",
"platform": "any",
"project_url": "https://pypi.org/project/RPLCD/",
"project_urls": {
"Homepage": "https://github.com/dbrgn/RPLCD"
},
"release_url": "https://pypi.org/project/RPLCD/1.2.2/",
"requires_dist": null,
"requires_python": "",
"summary": "A Raspberry Pi LCD library for the widely used Hitachi HD44780 controller.",
"version": "1.2.2"
},
"last_serial": 4828750,
"releases": {
"0.1": [
{
"comment_text": "",
"digests": {
"md5": "b0110182675608007ab2d68f10cc4a32",
"sha256": "1fc19be5ee86a08486f4f4f19c1a8314556ef11790fe8278b8b2933d17b8b351"
},
"downloads": -1,
"filename": "RPLCD-0.1.tar.gz",
"has_sig": false,
"md5_digest": "b0110182675608007ab2d68f10cc4a32",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9133,
"upload_time": "2013-05-11T14:34:23",
"url": "https://files.pythonhosted.org/packages/e5/7b/1c0be177c3477ba6b1db0e5d584aba2f173840c25b4fc8c9de46f24591b7/RPLCD-0.1.tar.gz"
}
],
"0.1.1": [
{
"comment_text": "",
"digests": {
"md5": "f3b199d49aeb6707fa3b8e7929e5a204",
"sha256": "af5014f1e56bafb21c2bad963715362231bceec72de2f66c8077fff0ee75c3cc"
},
"downloads": -1,
"filename": "RPLCD-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "f3b199d49aeb6707fa3b8e7929e5a204",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9883,
"upload_time": "2013-05-12T11:06:49",
"url": "https://files.pythonhosted.org/packages/fb/f1/cd1ff9ef285fa26a68ab700d219dfbfd72dcc1fd74c0b63a5117f314804f/RPLCD-0.1.1.tar.gz"
}
],
"0.1.2": [
{
"comment_text": "",
"digests": {
"md5": "6c59dd78719625e476f8e364871181cc",
"sha256": "119acbe88c393c6b79e9a18e8a0a273cf648d28af775c9102239deffe59c85d6"
},
"downloads": -1,
"filename": "RPLCD-0.1.2.tar.gz",
"has_sig": false,
"md5_digest": "6c59dd78719625e476f8e364871181cc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11051,
"upload_time": "2013-06-17T22:32:15",
"url": "https://files.pythonhosted.org/packages/cc/d4/02003abcb2e34f43114a59be02e2abfa5c920633e24f5b3366ab3ac58db3/RPLCD-0.1.2.tar.gz"
}
],
"0.1.3": [
{
"comment_text": "",
"digests": {
"md5": "e4c43acfab4029f84cd217fad618844b",
"sha256": "6a57987d03a2845b1b76c1a851843be22672046e689d542675db30a4971cab68"
},
"downloads": -1,
"filename": "RPLCD-0.1.3.tar.gz",
"has_sig": false,
"md5_digest": "e4c43acfab4029f84cd217fad618844b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11067,
"upload_time": "2013-06-26T13:38:07",
"url": "https://files.pythonhosted.org/packages/0b/c6/e95bc45949db0d8627feabdbbc9e6a49ae75d672b40ed44500d40d050e21/RPLCD-0.1.3.tar.gz"
}
],
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "6f0a6f3a811e19f715730cb686e1230a",
"sha256": "8039fa676eb624ea36b2fab8c9f0b87882046cbcfd0bcdaa16b80c9c40520e98"
},
"downloads": -1,
"filename": "RPLCD-0.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6f0a6f3a811e19f715730cb686e1230a",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 17927,
"upload_time": "2014-04-20T00:29:19",
"url": "https://files.pythonhosted.org/packages/3a/69/18f07ab19ad9b01fc8e337dfacf57b58a77046f0aace4b20a92a1657876e/RPLCD-0.2.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3dd7cf5df6c7f1bbeb497e8c7a0ca756",
"sha256": "5d591e442da11e97663aca64d5b18491de3d50357223187f0f6a62b747e1d62b"
},
"downloads": -1,
"filename": "RPLCD-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "3dd7cf5df6c7f1bbeb497e8c7a0ca756",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16333,
"upload_time": "2014-04-20T00:24:25",
"url": "https://files.pythonhosted.org/packages/84/c1/afd35654ee967bfec7f4e7076b39b68756ab01dbccef04219206872a9869/RPLCD-0.2.0.tar.gz"
}
],
"0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "0da0d997553a8c1e9beb5e70893b2102",
"sha256": "669e390699e5bd731934b02d5820fa7d4bf74087225d7e44eca4c7f0a9ddaaf2"
},
"downloads": -1,
"filename": "RPLCD-0.3.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0da0d997553a8c1e9beb5e70893b2102",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 19029,
"upload_time": "2014-07-03T13:06:25",
"url": "https://files.pythonhosted.org/packages/b5/89/018d35440a8a181df1fceb3432032735598a4dad4b0eb60ab7238c9cc1ef/RPLCD-0.3.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "78ab2cea707bb6b5cff1561686cdfa5c",
"sha256": "b8b335c229f72d518a37e2b0f37793f0b447789ef7dfabb25ab5c6d0d9a84850"
},
"downloads": -1,
"filename": "RPLCD-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "78ab2cea707bb6b5cff1561686cdfa5c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16443,
"upload_time": "2014-07-03T13:06:15",
"url": "https://files.pythonhosted.org/packages/62/f3/078e100c3c0bb43b15baff4b50adbcbafca50e5f16d19cb9a01126829d3e/RPLCD-0.3.0.tar.gz"
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "10de1f55a681ee9265b430971a6996ff",
"sha256": "8f5e1e1601c86c1d18562a99d5af77fa4e8ac8a97806e776e7ad09cccf00ace9"
},
"downloads": -1,
"filename": "RPLCD-0.4.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "10de1f55a681ee9265b430971a6996ff",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 21789,
"upload_time": "2016-09-12T21:27:50",
"url": "https://files.pythonhosted.org/packages/40/df/db8d392a51975b738ffac833b30a37ece81930754bcd2660e26a5b65c5c3/RPLCD-0.4.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "54ed67c3fd9d5fd6e86a1faca733e783",
"sha256": "e7512fa4a97c8dea39d8a92bfcfb68e96cc6845ec7bda84b2777c3c7d8cb4386"
},
"downloads": -1,
"filename": "RPLCD-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "54ed67c3fd9d5fd6e86a1faca733e783",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22576,
"upload_time": "2016-09-12T21:27:40",
"url": "https://files.pythonhosted.org/packages/9b/57/42a06ec72e1f93a718cef937ee4b7634fb373528aabb77e04e34169722af/RPLCD-0.4.0.tar.gz"
}
],
"0.9.0": [
{
"comment_text": "",
"digests": {
"md5": "812b489dca0d1aa8e58d5f3e4591c9d9",
"sha256": "c915b2791a91d129db197740e05e8f751f1d93fb51ba4ff6a9009ec9accaf3e4"
},
"downloads": -1,
"filename": "RPLCD-0.9.0-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "812b489dca0d1aa8e58d5f3e4591c9d9",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 29419,
"upload_time": "2017-05-09T21:57:15",
"url": "https://files.pythonhosted.org/packages/ed/40/a3cbce842f6dcc7022339031b68b9df0140e3288d12188d79b1fac00d820/RPLCD-0.9.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "edc7f592c233a6f1841c81e276b9d2e7",
"sha256": "bdac58f0b0401471689c8a0761f1fa96425e30e8b28ef665e47c89eea1417eff"
},
"downloads": -1,
"filename": "RPLCD-0.9.0.tar.gz",
"has_sig": true,
"md5_digest": "edc7f592c233a6f1841c81e276b9d2e7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26294,
"upload_time": "2017-05-09T21:57:17",
"url": "https://files.pythonhosted.org/packages/7d/da/d2a1be6d7b4b4c880607c6bd108e69ff25f3dee3d3209997ceb4e8b503e4/RPLCD-0.9.0.tar.gz"
}
],
"1.0.0": [
{
"comment_text": "",
"digests": {
"md5": "b1b589d344ea76d87a88aab3c479125f",
"sha256": "ab932f61959f2c80316331e0b6d00da238056fd3e15eeaa0613c6f2e8b084f1a"
},
"downloads": -1,
"filename": "RPLCD-1.0.0-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "b1b589d344ea76d87a88aab3c479125f",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 32993,
"upload_time": "2017-07-30T22:33:04",
"url": "https://files.pythonhosted.org/packages/b8/61/916392283077e22e734abc45349c50576f59a9bfc652db5f845b4b386304/RPLCD-1.0.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "275c2039bf465b3c4ddad180b90ea287",
"sha256": "a741fa9358c12456a74719ce08143444acd1ececaf9fccc69fa9765446cef289"
},
"downloads": -1,
"filename": "RPLCD-1.0.0.tar.gz",
"has_sig": true,
"md5_digest": "275c2039bf465b3c4ddad180b90ea287",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24666,
"upload_time": "2017-07-30T22:33:06",
"url": "https://files.pythonhosted.org/packages/cf/ad/25c9427e4eb9994551bb391cabb8d9ddc9bc5fdceafa19dd859137df6848/RPLCD-1.0.0.tar.gz"
}
],
"1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "797ae8b233c0a296bc0f8de73d4584cc",
"sha256": "e9c23abed8c9d85963fc9ecda4c43f48232a53c9586d46bac743989f7f01c7cb"
},
"downloads": -1,
"filename": "RPLCD-1.1.0-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "797ae8b233c0a296bc0f8de73d4584cc",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 37820,
"upload_time": "2018-04-06T22:20:31",
"url": "https://files.pythonhosted.org/packages/c6/1a/cb1b7d29ffebaef61658ce17d0db946259e6092a13172f4104c25c04cee4/RPLCD-1.1.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fe5a5d55cc5bac423c8ad03b5a7cd7fd",
"sha256": "f43fefa3652d87abff3d61f10292578b77aec4509eb6529649cd0aae12e4449d"
},
"downloads": -1,
"filename": "RPLCD-1.1.0.tar.gz",
"has_sig": true,
"md5_digest": "fe5a5d55cc5bac423c8ad03b5a7cd7fd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28286,
"upload_time": "2018-04-06T22:20:33",
"url": "https://files.pythonhosted.org/packages/36/f8/0da5aafda76bcbb2b8fc7d923249c5a796b1749484dd961ece3ae7cd7c07/RPLCD-1.1.0.tar.gz"
}
],
"1.2.0": [
{
"comment_text": "",
"digests": {
"md5": "5ac9137a92fb01027a2a17cb3c1bdc33",
"sha256": "b7735ba7805367e78a69a266615c19207ee0b36bbb2c8eee71b98fabd33a9f4d"
},
"downloads": -1,
"filename": "RPLCD-1.2.0-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "5ac9137a92fb01027a2a17cb3c1bdc33",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 45380,
"upload_time": "2018-11-27T22:42:59",
"url": "https://files.pythonhosted.org/packages/18/9e/8ebc4a157b82be854694517df3bcb1c3eea14c0b623a24074c22feef7f7e/RPLCD-1.2.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "cb4e81637c7bf0ed0d1d47bb7ca997a8",
"sha256": "b7a2ed755095a8d143a7ec21d7476d6ef9fa36f2c38303c2cab769a8003dde10"
},
"downloads": -1,
"filename": "RPLCD-1.2.0.tar.gz",
"has_sig": true,
"md5_digest": "cb4e81637c7bf0ed0d1d47bb7ca997a8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30443,
"upload_time": "2018-11-27T22:43:01",
"url": "https://files.pythonhosted.org/packages/a2/36/bc47b700306f5b548ce1cc04b3b14de699f919c9efd98a91fba4bc5fc292/RPLCD-1.2.0.tar.gz"
}
],
"1.2.1": [
{
"comment_text": "",
"digests": {
"md5": "2ba15cfe29cfa550d92841c09192c5a1",
"sha256": "c9a8994147804209f70efebf7670afbcf400fa3a555736a2dea0781683b77378"
},
"downloads": -1,
"filename": "RPLCD-1.2.1-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "2ba15cfe29cfa550d92841c09192c5a1",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 32996,
"upload_time": "2019-02-14T07:36:55",
"url": "https://files.pythonhosted.org/packages/89/c9/95c1e2007d2c652b1a08bdaef6b988b36b9665a0d6ade7bcaadcd8278167/RPLCD-1.2.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "46408c020c6e46f303630bd5f2bfac55",
"sha256": "c94b1eccf622d8d678bc3f5941fd491eccbf9257d5b157ac7f840a49010cd8ce"
},
"downloads": -1,
"filename": "RPLCD-1.2.1.tar.gz",
"has_sig": true,
"md5_digest": "46408c020c6e46f303630bd5f2bfac55",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24871,
"upload_time": "2019-02-14T07:36:57",
"url": "https://files.pythonhosted.org/packages/1f/59/f8b976878a866dba94b14dc80e4e330ef14543d0b8c83b02e751feb70b7d/RPLCD-1.2.1.tar.gz"
}
],
"1.2.2": [
{
"comment_text": "",
"digests": {
"md5": "76e609fed743c3b7b927f03d1ffac8a8",
"sha256": "acc46cd53e56264a54cebcd21ebf07df05b395ae76c65f56549fa29d5e725370"
},
"downloads": -1,
"filename": "RPLCD-1.2.2-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "76e609fed743c3b7b927f03d1ffac8a8",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 45718,
"upload_time": "2019-02-16T13:20:59",
"url": "https://files.pythonhosted.org/packages/dc/2e/be649ea2cb4637291a3dfaa054980ce4e83985373878d24c160a373aac03/RPLCD-1.2.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "61fb6672445ab08784f342d6fdd8d73b",
"sha256": "7f6895054e69fb75adb01181e680fab8d1430d089908d234ffe96508279751b1"
},
"downloads": -1,
"filename": "RPLCD-1.2.2.tar.gz",
"has_sig": true,
"md5_digest": "61fb6672445ab08784f342d6fdd8d73b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31128,
"upload_time": "2019-02-16T13:21:01",
"url": "https://files.pythonhosted.org/packages/ab/56/4b34a7a4c8eeb9ad117a6038d099cce22b8de2860522188a30d2c1c5b8f5/RPLCD-1.2.2.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "76e609fed743c3b7b927f03d1ffac8a8",
"sha256": "acc46cd53e56264a54cebcd21ebf07df05b395ae76c65f56549fa29d5e725370"
},
"downloads": -1,
"filename": "RPLCD-1.2.2-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "76e609fed743c3b7b927f03d1ffac8a8",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 45718,
"upload_time": "2019-02-16T13:20:59",
"url": "https://files.pythonhosted.org/packages/dc/2e/be649ea2cb4637291a3dfaa054980ce4e83985373878d24c160a373aac03/RPLCD-1.2.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "61fb6672445ab08784f342d6fdd8d73b",
"sha256": "7f6895054e69fb75adb01181e680fab8d1430d089908d234ffe96508279751b1"
},
"downloads": -1,
"filename": "RPLCD-1.2.2.tar.gz",
"has_sig": true,
"md5_digest": "61fb6672445ab08784f342d6fdd8d73b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31128,
"upload_time": "2019-02-16T13:21:01",
"url": "https://files.pythonhosted.org/packages/ab/56/4b34a7a4c8eeb9ad117a6038d099cce22b8de2860522188a30d2c1c5b8f5/RPLCD-1.2.2.tar.gz"
}
]
}