Skip to content

Instantly share code, notes, and snippets.

@michaelrice
Created October 17, 2015 16:47
Show Gist options
  • Save michaelrice/778d9526f8702e5d3c61 to your computer and use it in GitHub Desktop.
Save michaelrice/778d9526f8702e5d3c61 to your computer and use it in GitHub Desktop.
pigs_configs_provider_plugin:
- Opt1:
- name: "namespace"
- value: "steel_pigs.plugins.providers.sql"
- Opt2:
- name: "class"
- value: "SQL"
- Opt3:
- name: "engine"
- value: "sqlite:///:memory:"
PROVIDER_PLUGIN = {
{% for item in pigs_configs_provider_plugin %}
{% for opts in item %}
"{{ opts }}": "{{ opts.value }}",
{% endfor %}
{% endfor %}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment