tracking stuff

This commit is contained in:
2019-12-26 05:03:41 +00:00
parent add7f637ee
commit fcfff0be06
756 changed files with 158214 additions and 7 deletions

View File

@@ -0,0 +1,12 @@
#!/usr/bin/env python
import json
import yaml
def build_json():
searches = yaml.load(open('./data/referers.yml'))
with open('./data/referers.json', 'w') as fp:
json.dump(searches, fp)
if __name__ == "__main__":
build_json()