Dump Tag

Asked by Rafael

Is possible modify or write a Tag with Dump() ?? Any example?

Thanks!!

Question information

Language:
English Edit question
Status:
Solved
For:
nfcpy Edit question
Assignee:
No assignee Edit question
Solved by:
Stephen Tiedemann
Solved:
Last query:
Last reply:
Revision history for this message
Best Stephen Tiedemann (stephen-tiedemann) said :
#1

The dump() method gives a printable representation of the tag content, see https://nfcpy.readthedocs.io/en/latest/modules/tag.html#nfc.tag.Tag.dump. It can not be used for writing.

Reading and writing tags is explained at https://nfcpy.readthedocs.io/en/latest/topics/get-started.html#read-and-write-tags and https://nfcpy.readthedocs.io/en/latest/topics/ndef.html for the parts of NDEF. The documentation at https://nfcpy.readthedocs.io/en/latest/modules/tag.html explains also the low level, tag specific read and write methods.

Revision history for this message
Rafael (hibara94) said :
#2

Thanks very much!

Revision history for this message
Rafael (hibara94) said :
#3

Thanks Stephen Tiedemann, that solved my question.