Skip to content

Instantly share code, notes, and snippets.

View besendorf's full-sized avatar
🏠
Working from home

besendorf

🏠
Working from home
View GitHub Profile
@besendorf
besendorf / keybase.md
Created July 25, 2023 15:25
Keybase proof

Keybase proof

I hereby claim:

  • I am besendorf on github.
  • I am besendorf (https://keybase.io/besendorf) on keybase.
  • I have a public key ASAeYLAOzAO010BUc8H6Vi8fp-WAlP0VKnNpS0Z1_zeIego

To claim this, I am signing this object:

@besendorf
besendorf / convert_to_csv.py
Created March 1, 2022 09:32
convert MVT records from json to csv
import pandas as pd
import json
import os
filenames = next(os.walk('.'), (None, None, []))[2]
# read json
for filename in filenames:
if '.csv' in filename:
continue