Skip to content

Instantly share code, notes, and snippets.

View neerav1985's full-sized avatar

Neerav Shah neerav1985

  • Jersey City, NJ
View GitHub Profile
@neerav1985
neerav1985 / pandas_beginner.py
Created December 13, 2013 16:34
Python: Fetch data from an Oracle and Pandas for data analysis
import cx_Oracle
import logging
logging.basicConfig(format='%(asctime)s %(levelname)s %(message)s', level=logging.DEBUG)
if __name__ == "__main__":
conn = cx_Oracle.connect(user,password,server)
cursor = conn.cursor()