CUBRID-Python: CUBRID Module for Python DB API 2.0
License: BSD
Author: Kang, Dong-Wan (cubrid@cubrid.org)

PREREQUISITES
=============
 * CUBRID 2008 R2.1 and higher
 * Python 2.4 to Python 3.0.1 including
 * C-Compiler(gcc or Microsoft Visual Studio)

INSTALL
=======
 * Unix/Linux
  * To install CUBRID-Python Driver, first build and then install as shown below.
  
   > python setup.py build
  
  * This command will build the CUBRID-Python Driver. Make sure the current directory has the "write" permission, otherwise, the building process will fail.
    
   > python setup.py install
   
   * This will install CUBRID-Python Driver into your system. It is necessary to become root for this purpose.
   
 * Windows
  * Copy cubrid.pyd and cubriddb.py files to the Lib folder where your Python has been installed. By default it is C:\Program Files\Python\Lib\. This is the place where all other third-party libraries are located.
    
 * More inforamtion about CUBRID-Python Driver, its documentation as well as the tutorials can be foound at http://www.cubrid.org/python_programming
 
SAMPLES
=======
 * You can find the sample code in the "sample" directory.
 * If you want to connect to the CUBRID Database, make sure you have started the CUBRID Service (cubrid service start) and started the database you are connecting to (cubrid server start demodb - where demodb is the database to connect to).