I hereby claim:
- I am prakashpp on github.
- I am prakashpandey (https://keybase.io/prakashpandey) on keybase.
- I have a public key whose fingerprint is F383 E183 ACAF 56DA 33B7 F7AE 630F 74FE F11B 1198
To claim this, I am signing this object:
import os | |
from datetime import datetime | |
from slacker import Slacker | |
from dateutil.relativedelta import relativedelta | |
import requests | |
from requests.auth import HTTPBasicAuth | |
USERNAME = "prakashpp" | |
GITHUB_TOKEN = os.environ['GITHUB_ACCESS_TOKEN'] |
# -*- coding: utf-8 -*- | |
import os | |
import sys | |
import psycopg2 | |
# Connect to tryton database with database uri. | |
# | |
# Example: postgres://tryton:tryton@localhost/production | |
conn = psycopg2.connect(os.environ.get('TRYTOND_DATABASE_URI')) |
SELECT | |
pg_terminate_backend(pid) | |
FROM | |
pg_stat_activity | |
WHERE | |
client_addr <> '172.31.1.200' | |
AND datname = 'staging' |
I hereby claim:
To claim this, I am signing this object:
"""How to run: | |
POSTGRES_DATABASE_URI="postgresql://postgres:postgres@localhost/postgres" python remove-postgres.py | |
""" | |
import urlparse | |
import os | |
import psycopg2 | |
from psycopg2.extensions import AsIs | |
result = urlparse.urlparse(os.environ['POSTGRES_DATABASE_URI']) |