Skip to main content

GS1 EPC Tag Data Translation for Python and RAIN (UHF) RFID. Encode and decode SGTIN, SSCC, SGLN, GRAI, and all EPC schemes.

Project description

tag-data-translation

GS1 EPC Tag Data Translation for Python and RAIN (UHF) RFID. Encode and decode SGTIN, SSCC, SGLN, GRAI, and all EPC schemes defined in TDT 2.2 and TDS 2.3.

Requirements

  • Python 3.9+
  • .NET 8.0+ runtime (download)

Installation

pip install tag-data-translation

Usage

from tag_data_translation import TDTEngine

engine = TDTEngine()

# encode GTIN to EPC hex
binary = engine.translate(
    "gtin=00037000302414;serial=10419703",
    "filter=1;gs1companyprefixlength=7;tagLength=96",
    "BINARY"
)
hex_value = engine.binary_to_hex(binary)
print(hex_value)  # 30340242201d8840009efdf7

# decode EPC hex to all fields
binary = engine.hex_to_binary("30340242201d8840009efdf7")
result = engine.translate_details(binary, "", "TAG_ENCODING")
print(result.output)   # urn:epc:tag:sgtin-96:1.0037000.030241.10419703
print(result.fields)   # {'filter': '1', 'gs1companyprefix': '0037000', ...}

Error handling

translate() raises TranslationError on invalid input. Use try_translate() for a non-throwing alternative:

from tag_data_translation import TDTEngine, TranslationError

engine = TDTEngine()

# raises on error
try:
    result = engine.translate(epc, params, "BINARY")
except TranslationError as e:
    print(f"Translation failed: {e}")

# returns None on error
result = engine.try_translate(epc, params, "BINARY")
if result is not None:
    print(result)

Performance

The underlying .NET engine translates a typical SGTIN-96 in ~8 us. The pythonnet bridge adds minimal overhead on top of the native .NET performance.

Operation .NET native
SGTIN-96 encode 7.8 us
SGTIN-96 decode 7.7 us
HexToBinary (96-bit) 99 ns
BinaryToHex (96-bit) 54 ns

License

BSL 1.1 — see LICENSING.md

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tag_data_translation-3.0.7.tar.gz (654.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tag_data_translation-3.0.7-py3-none-any.whl (753.3 kB view details)

Uploaded Python 3

File details

Details for the file tag_data_translation-3.0.7.tar.gz.

File metadata

  • Download URL: tag_data_translation-3.0.7.tar.gz
  • Upload date:
  • Size: 654.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tag_data_translation-3.0.7.tar.gz
Algorithm Hash digest
SHA256 a4706b63129b386c4c364a1fd7d93092d3edef50d860ef886b0c7cf221e6764c
MD5 9799c3ea85c32e7b1a0ffd32fcaadef1
BLAKE2b-256 9369457a3ca9fae7ec9a4b316f967fab30956718aed4936d81be167242728f1e

See more details on using hashes here.

File details

Details for the file tag_data_translation-3.0.7-py3-none-any.whl.

File metadata

File hashes

Hashes for tag_data_translation-3.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 18beb536d54876e48fc633406dd096e0333582a6140ea37025fc1c955fd66806
MD5 d9955581ccd57b4bacd9b779bf8ad4ae
BLAKE2b-256 b9f9fc15b0c94ef1e255f0aeb39a2ce6ef71103f2c27efd7591286c8bd96f857

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page