compute/data-munging.md
... ...
@@ -31,6 +31,7 @@ Paginated json coming back from a rest api? Use a python generator to return it.
31 31
import time
32 32
from datetime import datetime
33 33
from pytz import timezone, utc
34
+london = timezone("Europe/London")
34 35
now = time.time()
35 36
t = datetime.utcfromtimestamp(now)
36 37
lt = utc.localize(t).astimezone(london)