Skip to content

Instantly share code, notes, and snippets.

@hdknr
Created September 9, 2009 08:12
Show Gist options
  • Save hdknr/183569 to your computer and use it in GitHub Desktop.
Save hdknr/183569 to your computer and use it in GitHub Desktop.
Python 2.5.2 (r252:60911, Jan 4 2009, 17:40:26)
[GCC 4.3.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import MySQLdb
>>> type(MySQLdb.connect)
<type 'function'>
>>> c=MySQLdb.connect(**{'user':'root','passwd':'hdknr','host':'localhost','db':'djopenid'})
>>> type(c)
<class 'MySQLdb.connections.Connection'>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment