Skip to content

Instantly share code, notes, and snippets.

@diegueus9
diegueus9 / pg2mysql.py
Created December 15, 2011 22:49
Python script for migrate database from postgres to mysql
#! /usr/bin/env python
import os
import psycopg2
import MySQLdb
PG = {
'name' : 'moodle_rvt_sociales',
'user' : 'diegueus9',
'pass' : 'fuseki',
'host' : 'localhost',