Metadata-Version: 2.1
Name: RPi.version
Version: 2.0
Summary: Detailed information about Raspberry Pi version
Home-page: http://www.pimoroni.com
Author: Philip Howard
Author-email: phil@pimoroni.com
License: MIT
Keywords: Raspberry Pi Version Information
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Classifier: Topic :: System :: Hardware

RPi.version
===========

This library provides a break down of the new 32bit revision bitfield,
detailing the Pi type, origins, amount of memory and CPU details.

Reference
---------

Start with:

    import RPi.version

Processor version:

    RPi.version.processor

Memory amount ( in MB ):

    RPi.version.memory

Raspberry Pi Type:

    RPi.version.type

Manufacturer:

    RPi.version.manufacturer

Revision:

    RPi.version.revision

Pi Model, returns either A, B or CM for Computer Module.

    RPi.version.model

Pi version, returns either 1 or 2 for Pi 2

    RPi.version.version

Info, returns all info as a dictionary

    RPi.version.info

Changelog
=========

2.0
---

 * Support for Python 3.x
 * Entry point for `rpi-version`
 * Linting fixes and cleanup
 * Declare namespace to avoid clobbering RPi.GPIO

1.2
---

 * Fixed python -m RPi.version functionality

1.1
---

 * Added model and version

1.0
---

 * First release


