Removed unsed repl startup file

This commit is contained in:
mrhanky 2017-08-22 18:14:12 +02:00
parent f341503101
commit 919c50fe07
No known key found for this signature in database
GPG Key ID: 67D772C481CB41B8

18
repl.py
View File

@ -1,18 +0,0 @@
# -*- coding: utf-8 -*-
import sys
import os
import re
import requests
import psycopg2
from dotenv import load_dotenv
from psycopg2.extras import DictCursor
from bot.utils import *
# Load dotenv from DOTENV_FILE variable (or the default one)
load_dotenv(os.environ.get('DOTENV_FILE', '.env'))
# Create database connection and cursor
con = psycopg2.connect(os.environ['DATABASE_URI'])
cur = con.cursor(cursor_factory=DictCursor)