Skip to content

Instantly share code, notes, and snippets.

@michaeluhl
michaeluhl / icalfilt.py
Created August 30, 2026 15:04
Small Script to Filter iCal Events by Date
# /// script
# requires-python = ">=3.13"
# dependencies = [
# "icalendar>=7.2.2",
# "requests>=2.34.2"
# ]
# ///
from argparse import ArgumentParser, Namespace
from contextlib import AbstractContextManager, nullcontext
@michaeluhl
michaeluhl / gistcheck.py
Created November 9, 2012 02:25
A small client to allow pythonista to repeated save/load to the same gist.
import base64
import console
import editor
import json
import keychain
import os.path
import pickle
import re
import urllib2