Skip to content

Instantly share code, notes, and snippets.

View HQJaTu's full-sized avatar
💭
Hacking

Jari Turkia HQJaTu

💭
Hacking
View GitHub Profile
@HQJaTu
HQJaTu / gist:1f6b2ed67ae53b24fd3f350f611e7eb1
Created September 27, 2020 18:42 — forked from petri/gist:46bb6b8eac8ea5b8f01c90e7414d7951
Python asyncio ordering test - single-connection multiplex version with asyncio.Queue
#!/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
@HQJaTu
HQJaTu / gist:cd66cf659b8ee633685b43c5e7e92f05
Last active January 13, 2021 23:59 — forked from vpetersson/gist:f20efe6194460cc28d49
Parse and dump a sitemap (using Python)
#! /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