This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openssl genrsa -out ca.key 2048 | |
openssl req -new -x509 -days 3650 -key ca.key -out ca.crt | |
#:: CZ | |
#:: Prague | |
#:: Mrackova | |
#:: Whatever You Need | |
#:: | |
#:: domain.cz | |
#:: email@domain.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
import json | |
from databuilder.utils.pyqlikengine import pyqlikengine | |
from functools import wraps | |
from unidecode import unidecode | |
url = 'qlik-1' | |
user_directory = 'xxx' | |
user_id = 'xxxxx' | |
ca_certs = './example/scripts/qlik-1_root.pem' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This is a example script which demo how to load data into neo4j without using Airflow DAG. | |
""" | |
import json | |
import logging | |
import os | |
from pyhocon import ConfigFactory | |
from unidecode import unidecode | |
from databuilder.extractor.generic_extractor import GenericExtractor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://overpass-turbo.eu/# | |
https://wiki.openstreetmap.org/wiki/Tag:boundary=administrative | |
//relation["admin_level"="6"]["name"="Plzeňský kraj"]; | |
//(._;>;); | |
//out body; | |
area[admin_level=2][name="Česko"]->.search;(way(area.search)[admin_level=6];rel(area.search)[admin_level=6];);/*added by auto repair*/(._;>;);/*end of auto repair*/out body; | |
curl \ |