Decode asn1 from a docx file.
- question for @3gpp: why
docxfrom for the specification ? - 3GPP ASN.1 available here https://github.com/tramex/types_lte_3gpp/tree/main/asn
# download the docx
python -m pip install docx_asn1
python -m docx_asn1 file.docx output.asn1
# or
python -m docx_asn1 file.docx > output.asn1from docx_asn1 import extract_text_from_docx
asn1 = extract_text_from_docx("file.docx")