Skip to content

Instantly share code, notes, and snippets.

@pvanfas
pvanfas / Awesome Python.md
Last active November 15, 2025 22:03
A curated list of awesome Python frameworks, libraries, software and resources.
@bwurst
bwurst / bbb-status.py
Created April 24, 2020 05:31
Simple python script to show current usage of big blue button from root@localhost
#!/usr/bin/python3
import sys
import subprocess
import re
import hashlib
import requests
from xml.etree import ElementTree
###
@bocon13
bocon13 / mininetSocketTest.py
Last active March 22, 2022 20:20
Example of opening a UDP socket in a Mininet host and writing the received packets to a file
#!/usr/bin/python
from mininet.topo import Topo, SingleSwitchTopo
from mininet.net import Mininet
from mininet.log import lg, info
from mininet.cli import CLI
def main():
lg.setLogLevel('info')