Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env python
from pathlib import Path
from pprint import pprint
from requests_html import HTMLSession
import toml
import schedule
from time import sleep
from importlib import reload
import recycling
time.sleep(60) # time to edit recycling
reload(recycling) # reload recycling
recycling.get_recycling() # make use of the module
# https://stackoverflow.com/questions/1254370/reimport-a-module-in-python-while-interactive
@DavidLutton
DavidLutton / cleanup.sh
Created May 27, 2019 19:19
find all except .dot directorys
find . -type d -empty -not -path '*/\.*' -delete
@DavidLutton
DavidLutton / set.py
Created May 26, 2019 12:07
Set the source of a BG7TBL USB Signal Generator
# https://sigrok.org/wiki/BG7TBL
import serial
ser = serial.Serial('/dev/ttyUSB0', 57600, timeout=1) # Linux first tty
# ser.write(b'\x8fv')
# print("Version is " + ser.read())
cmd = f'{int(1e9+26000/10):09d}' # ~ 1GHz
import requests
# from pathlib import Path
from pprint import pprint
road = 'A1'
url = f'http://www.trafficengland.com/api/events/getByRoad?road={road}&events=CONGESTION,INCIDENT,ROADWORKS,MAJOR_ORGANISED_EVENTS,ABNORMAL_LOADS&direction=all&includeUnconfirmedRoadworks=true'
r = requests.get(url)
for event in r.json():
print(event)
a = 'abcdef'
for x in 2,3,6:
print(f'{x} : {a[x-1]}')
@DavidLutton
DavidLutton / kindle.py
Last active September 15, 2024 19:19
Make use of a Kindle as a ePaper display
import time
from datetime import datetime
from textwrap import wrap
import requests
from requests_html import HTMLSession
import paramiko
import schedule
def get_traffic(road):
@DavidLutton
DavidLutton / GetNetwork.py
Last active May 18, 2019 22:45
Download s-param network
from functools import lru_cache
import io
import requests
import skrf as rf
from matplotlib import pyplot as plt
rf.stylely()
@DavidLutton
DavidLutton / CSVtoBokehPlot.py
Created April 9, 2019 21:19
Convert a CSV from a logging DMM to an Bokeh plot
from pathlib import Path
from pprint import pprint
import pandas as pd
import numpy as np
from bokeh.plotting import figure, output_file, show, save
from bokeh.models import ColumnDataSource
for source in Path('.').glob('*.csv'):
@DavidLutton
DavidLutton / filter_regions.py
Last active April 6, 2019 22:10
Find regions of a filter
import skrf as rf
import numpy as np
from matplotlib import pyplot as plt
rf.stylely()
def filter_regions(network, minimum=-3, maximum=-30, *, offset=0.0):
"""Find regions of a filter.
Parameters