Skip to content

Python library for IC Card Reader S9-BU-00-01 from Fongwah

Notifications You must be signed in to change notification settings

patatetom/libS9

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

libS9

Python library for IC Card Reader S9-BU-00-01 from Fongwah

S9-BU-00-01 S9-BU-00-01

foreword

the library is intended to be used with Python3 under Linux. it only implements some functions from libS8.so and intended for Mifare S50 tags (classic 1k EV1). only the A key is used. except readUID, all the proposed functions expect a block number as input.

usage

>>> from libS9 import Reader
>>> reader = Reader('/dev/usb/hiddev3')
>>> reader.readUID()
'0BDA3FF0'
>>>