Parse Troopwebhost export files into TOML, YAML, or JSON
Project description
twh_parser
(c) Michael Perkins, 2023, 2024
Introduction/usage
Parses exported files from TroopWebHost, into YAML/TOML/JSON format or for use in Python projects. Also hooks into the objexplore browser for data checking/viewing.
Installation
pip install twh-parser
Instructions:
In troopwebhost
YAML can be read in python with:
import yaml
with open('output.yaml') as f:
scouts = yaml.safe_load(f)
Using twh_parser in code:
from twh_parser import Parser
#initializing the parser automatically parses the file and stores
#the information in TmParser().scouts
parser = TmParser(infile='filename.pdf')
# Iterating on the parser yields scouts
for scout in parser:
print('----------------------------------------------')
print(f"{scout['Data']['Name']:26}Date Eagle Req")
print('----------------------------------------------')
## do something with scout
if "Merit Badges" in scout:
#sort merit badges by date ascending
for badge, data in sorted(scout['Merit Badges'].items(),
key=lambda x: x[1]['date']):
print(f"{badge:26}{data['date']} {data['eagle_required']}")
Yields:
----------------------------------------------
Smith, John Date Eagle Req
----------------------------------------------
Climbing 2017-03-11 False
Mammal Study 2017-06-29 False
Leatherwork 2017-06-30 False
Swimming 2017-06-30 True
Kayaking 2018-06-29 False
Wilderness Survival 2018-06-29 False
Rifle Shooting 2018-06-29 False
First Aid 2018-09-29 True
By default the information is a dictionary, with the scout names as keys, and each scout is a dictionary with the following keys:
- Data - contains biographical data
- Merit Badges
- Partial Merit Badges
- Rank Advancement
All dates have been parsed into datetime.date objects, in YYYY-MM-DD format, and are null if not assigned in the incoming data.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file twh_parser-0.15.0.tar.gz
.
File metadata
- Download URL: twh_parser-0.15.0.tar.gz
- Upload date:
- Size: 538.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.27.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ad4a47911c4533ba2480618e4234198a87cd58ce8fc212e531baf1477cedc69 |
|
MD5 | 17ac4de30a603ea7ae3a825381a63e79 |
|
BLAKE2b-256 | 6e73a7a37b2d0979843cc7a37f13c02a9b218fec08bd485b9be1795ba45e63d4 |
File details
Details for the file twh_parser-0.15.0-py3-none-any.whl
.
File metadata
- Download URL: twh_parser-0.15.0-py3-none-any.whl
- Upload date:
- Size: 546.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.27.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d3238d7690ce3221e5b76b38310e883852ae397bfd47f028aec0fffd3fd5b26 |
|
MD5 | 272033f19f59138bf68fddd5fd7dbe34 |
|
BLAKE2b-256 | 73fb1b84e346aa0c3f0d3f8d150112c46ef66c8e80ba7d8b0e990c4a9548f44e |