The Death Day Countdown/ Fuzzy Time Clock iOS app does not collect any user data of any kind. The app does not access the Internet at all.
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 os | |
from sqlalchemy import create_engine, func | |
from sqlalchemy.orm.session import sessionmaker | |
import psycopg2 | |
import logging | |
def get_db_connection(): | |
PGHOST = os.getenv("DB_HOST","localhost") | |
PGDATABASE = "postgres" |
OlderNewer