Skip to content

Instantly share code, notes, and snippets.

View jwilf's full-sized avatar

James Wilford jwilf

  • Shutl
  • Shoreditch, London
View GitHub Profile
@jwilf
jwilf / lambda_function.py
Created January 7, 2020 23:38
AWS Lambda function to control Nissan Leaf climate control
import json
import pycarwings2
import time
config = {}
def param(event,key):
try:
return event['queryStringParameters'][key]
except: