This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# vim: autoindent tabstop=4 shiftwidth=4 expandtab softtabstop=4 filetype=python | |
""" | |
Generate a DNSSEC DS record based on the existing DNSKEY record | |
usage: dnskey_to_dsrecord.py [-h] DOMAIN-NAME |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# vim: autoindent tabstop=4 shiftwidth=4 expandtab softtabstop=4 filetype=python | |
# Proof-of-Concept for https://stackoverflow.com/q/64017656/1548275 | |
# Do Python asyncio Streams maintain order over multiple writers and readers? | |
import sys | |
import argparse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
Inspired by Craig Addyman (http://www.craigaddyman.com/parse-an-xml-sitemap-with-python/) | |
Enhanced by Viktor Petersson (http://viktorpetersson.com) / @vpetersson | |
Enhanced by Jari Turkia (https://blog.hqcodeshop.fi/) / @HQJaTu | |
""" | |
from bs4 import BeautifulSoup |