Skip to main content

Simple vbf parser

Project description

Build Status codecov PyPI Python: 3.6+ Code style: black License: MIT Code quality: MyPy Security: bandit

VBF parser

vbf-parser is a Python library for parsing VBF files.

Installation

Use the package manager pip to install.

pip install vbf-parser

Usage

Simple parsing with converting to json:

import json
from vbf_parser import extract_header_body, jsonify_vbf_header
with open("file.vbf", "rb") as file:
    header_body = extract_header_body(file)
vbf = json.loads(jsonify_vbf_header(header_body))

Work in progress:

Proper lexing and manual parsing:

from vbf_parser import extract_header_body, lex_vbf_header, parse_vbf_tokens
with open("file.vbf", "rb") as file:
    header_body = extract_header_body(file)
vbf = parse_vbf_tokens(lex_vbf_header(header_body))

License

MIT

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

vbf-parser-1.4.0.tar.gz (7.1 kB view hashes)

Uploaded Source

Built Distribution

vbf_parser-1.4.0-py3-none-any.whl (14.2 kB view hashes)

Uploaded Python 3

Supported by

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