Python wrapper for the ThingMagic Mercury API
=============================================

The `ThingMagic Mercury API <http://www.thingmagic.com/mercuryapi>`_ is used to discover, provision and control ThingMagic RFID readers.

Reading RFID tags is as simple as this::

  import mercury
  reader = mercury.Reader("tmr:///dev/ttyUSB0")

  reader.set_region("EU3")
  reader.set_read_plan([1], "GEN2")
  print(reader.read())
