Skip to content
/ ndeflib Public
forked from nfcpy/ndeflib

Python package for parsing and generating NFC Data Exchange Format messages.

License

Notifications You must be signed in to change notification settings

mofe23/ndeflib

 
 

Repository files navigation

Parse or generate NDEF messages

Python Package Stable Documentation Latest Documentation Build Status Code Coverage

The ndeflib is an ISC-licensed Python package for parsing and generating NFC Data Exchange Format (NDEF) messages:

>>> import ndef
>>> hexstr = '9101085402656e48656c6c6f5101085402656e576f726c64'
>>> octets = bytearray.fromhex(hexstr)
>>> for record in ndef.message_decoder(octets): print(record)
NDEF Text Record ID '' Text 'Hello' Language 'en' Encoding 'UTF-8'
NDEF Text Record ID '' Text 'World' Language 'en' Encoding 'UTF-8'
>>> message = [ndef.TextRecord("Hello"), ndef.TextRecord("World")]
>>> b''.join(ndef.message_encoder(message)) == octets
True

The ndeflib documentation can be found on Read the Docs, the code on GitHub. It is continously tested for Python 2.7 and 3.5 with pretty complete test coverage.

About

Python package for parsing and generating NFC Data Exchange Format messages.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%