Metadata-Version: 2.1 Name: rfk101py Version: 0.0.1 Summary: RFK101 Proximity card reader over Ethernet Home-page: https://github.com/dubnom/rfk101py Author: Michael Dubno Author-email: michael@dubno.com License: UNKNOWN Platform: UNKNOWN Classifier: Programming Language :: Python :: 3 Classifier: License :: OSI Approved :: MIT License Classifier: Operating System :: OS Independent Description-Content-Type: text/markdown # RFK101 Package Package to receive proximity card and keypad data from an RFK101 reader from IDTECK. The RFK101 RS232 connection is done through an Ethernet adaptor (NPort). # Example: from time import sleep from rfk101py import rfk101py def callback(data): print("Received:",data) rfk = rfk101py( 'host.test.com', 4008, callback ) # Sleep for 10 seconds waiting for a callback sleep(10.) # Close the interface rfk.close()