This file contains 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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# Version: 08-2024 | |
"""{{ app_name }} CLI interface | |
This CLI provides a similar experience as the git CLI, but in Python with Typer. | |
Example: | |
``` py title="test.py" |
This file contains 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
function getAllVariables(){ | |
var searchVarByValue = function(searchString){ | |
var values = Object.keys(this.ValueToVar); | |
var findings = []; | |
for (var i=0; i< values.length; i++){ | |
if (values[i] == undefined) | |
continue; | |
var position = values[i].toLowerCase().indexOf(searchString.toLowerCase()); | |
if (position != -1){ | |
findings.push({ 'variable': this.ValueToVar[values[i]], 'value' : values[i] }); |
This file contains 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 getpass | |
import psycopg2 | |
import psycopg2.extras | |
def select_one(sql_raw, params): | |
""" Runs SELECT query that will return zero or 1 rows. `params` is required.""" | |
return _execute_query(sql_raw, params, 'sel_single') | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.