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 | |
from pathlib import Path | |
from pprint import pprint | |
from requests_html import HTMLSession | |
import toml | |
import schedule | |
from time import sleep | |
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
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 |
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
find . -type d -empty -not -path '*/\.*' -delete |
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
# 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 |
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
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) |
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
a = 'abcdef' | |
for x in 2,3,6: | |
print(f'{x} : {a[x-1]}') |
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
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): |
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
from functools import lru_cache | |
import io | |
import requests | |
import skrf as rf | |
from matplotlib import pyplot as plt | |
rf.stylely() |
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
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'): |
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
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 |