Skip to content

Instantly share code, notes, and snippets.

View bfmcneill's full-sized avatar

Ben McNeill bfmcneill

View GitHub Profile
@kwmiebach
kwmiebach / pytest.md
Last active May 13, 2025 10:02 — forked from amatellanes/pytest.sh
pytest cheat sheet

Usage

(Create a symlink pytest for py.test)

pytest [options] [file_or_dir] [file_or_dir] ...

Help:

@nicwolff
nicwolff / XML_breaker.py
Last active April 2, 2025 20:05
Python script to break large XML files
import os
import sys
from xml.sax import parse
from xml.sax.saxutils import XMLGenerator
class CycleFile(object):
def __init__(self, filename):
self.basename, self.ext = os.path.splitext(filename)
self.index = 0