-
-
Save tommyready/d1514f167b0a76258d5bfbb5c16cf249 to your computer and use it in GitHub Desktop.
Python script for taking mysqldump
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- created by sagar shirsath ([email protected])--- | |
the file pydump contains python code for taking sql dump . | |
How to run : | |
Go to folder containing file pydump and run the following command | |
$python pydump.py | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import ConfigParser | |
import os | |
import time | |
import getpass | |
def get_dump(): | |
print "Enter user:" | |
user = raw_input() | |
print "Password will not be visible:" | |
password = getpass.getpass() | |
print "Enter host:" | |
host = raw_input() | |
print "Enter database name:" | |
database = raw_input() | |
filestamp = time.strftime('%Y-%m-%d-%I:%M') | |
os.popen("mysqldump -u %s -p%s -h %s -e --opt -c %s | gzip -c > %s.gz" % (user,password,host,database,database+"_"+filestamp)) | |
print "\n-- please have a the dump file in "+database+"_"+filestamp+".gz --" | |
if __name__=="__main__": | |
get_dump() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment