Skip to content

Instantly share code, notes, and snippets.

View fiendish's full-sized avatar
🤣
lol, github has statuses now

Avi Kelman fiendish

🤣
lol, github has statuses now
View GitHub Profile
@fiendish
fiendish / naaccr2csv.py
Created August 21, 2020 19:14
Converts a NAACCR XML file to CSV
#!/usr/bin/env python
import sys
import csv
import argparse
from collections import defaultdict
from lxml import etree
if __name__ == "__main__":