Skip to content

Instantly share code, notes, and snippets.

View johndavidsimmons's full-sized avatar

John Simmons johndavidsimmons

View GitHub Profile
@jonlabelle
jonlabelle / m3u.py
Last active December 17, 2022 17:34
Generate an mp3 playlist file (.m3u), sorted by album track number.
#!/usr/bin/env python
import os
import sys
import glob
from mutagen.mp3 import MP3
from mutagen.easyid3 import EasyID3
#
# MP3 playlist generator
@revolunet
revolunet / mailgun-test.py
Last active December 9, 2025 07:49
create and send a tracked message through the mailgun SMTP gateway
# -*- encoding: UTF-8 -*-
import smtplib
import json
from email.mime.text import MIMEText
MAILGUN_SMTP_LOGIN = "[email protected]"
MAILGUN_SMTP_PASSWORD = "secret"
def send_message_via_smtp(from_, to, mime_string):