Topic: Proxmark Python API

In case anyone else is interested, I'm working on a Python Proxmark API. The API is already partially functional but needs more testing. Some commands have not yet been ported.

A brief example is shown below:

python-proxmark# ./tune.py
125kHz v=123mV z=1273 ohms
134kHz v=0mV z=1273 ohms
13.56MHz v=99mV z=90 ohms

-[ tune.py ]-

pm3 = Proxmark()
antennas = pm3.tune()
for ant in antennas:
  print ant

Re: Proxmark Python API

For those interested parties, you can download my Python Proxmark API here: http://proxmark3.com/dl/pyprox.tgz.