Skip to content

Instantly share code, notes, and snippets.

View notartom's full-sized avatar

Artom Lifshitz notartom

View GitHub Profile
@notartom
notartom / default-filters.py
Created April 29, 2018 18:31
Presents enabled filters in an understandable way (expects a bunch of *.list files in its directory as input)
#!/usr/bin/env python
import glob
import operator
import os
clouds = []
for l in glob.glob('*.list'):
with open(l) as f: