Recently, a big thing happened, that is, the operation and maintenance students of GitLab accidentally deleted the production data. Although GitLab had prepared an astonishing five backup mechanisms, it still caused them to lose nearly 6 hours of data. The damage to user data, and especially their reputation, is simply immeasurable. On reflection, this blog, Becomin' Charles, does not have a complete backup. I am really breaking out in a cold sweat. Mainly considering that this is my personal blog, but thinking about it, I have persisted for almost ten years. If it is really lost, Still very sad.
It just so happens that my wife is learning Python programming recently and I am teaching her. In fact, I am a PHP programmer and I don’t like Python at all. But to be honest, if a layman learns programming, Python is indeed much friendlier than PHP. Too much, I can only recommend her to learn Python. Fortunately, taking this opportunity, I decided to learn Python programming myself, so I decided to use Python to make an automatic backup script for the database. For the backup location, use Dropbox, because my server is provided by Linode, which is located in the Fremont computer room in the United States. It is more appropriate to choose the storage service in the United States. The following is the code I wrote. I am new to Python. Please give me some advice:
#!/usr/bin/python #coding:utf-8 import sys import os from yamlimport load from datetime import datetime import dropbox from dropbox.filesimport WriteMode from dropbox.exceptions import ApiError, AuthError if len(sys.argv) < 2: print >>sys.stderr, "Usage: %s <config_file>" % sys.argv[0] sys.exit(0) conf = load(file(sys.argv[1], 'r')) # config file is a YAML looks like # --- # server-name: 127.0.0.1 # local-backup-path: /tmp # remote-backup-path: /backup # dropbox-token: jdkgjdkjg # databases: # - host: localhost # port: 3306 # user: user # pass: password # name: database1 # charset: utf8 # - host: localhost # port: 3306 # user: user2 # pass: password2 # name: database2 # charset: utf8 for dbin conf['databases'] : filename = "%s_%s.sql" % (db['name'], datetime.now().strftime("%Y%m%d-%H-%M-%S")) filepath = "%s/%s" % (conf['local-backup-path'], filename) cmd = "mysqldump -h%s -u%s -p%s -P%s --single-transaction %s > %s" % ( db['host'], db['user'], db['pass'], db['port'], db['name'], filepath ) os.system(cmd) cmd = "gzip %s" % filepath os.system(cmd) filepath = filepath + '.gz' dbx = dropbox.Dropbox(conf['dropbox-token']) backuppath = "%s/%s/%s/%s" % ( conf['remote-backup-path'], # remote path datetime.now().strftime("%Y%m%d"), # date string conf['server-name'], # server name filename + '.gz') with open(filepath, 'rb') as f: time = datetime.now().strftime("%Y-%m-%d %H:%M:%S ") print(time + "Uploading " + filepath + " to Dropbox as " + backuppath) try: dbx.files_upload(f.read(), backuppath, mode=WriteMode('overwrite')) except ApiErroras err: # This checks for the specific error where a user doesn't have # enough Dropbox space quota to upload this file if (err.error.is_path() and err.error.get_path().error.is_insufficient_space()): sys.exit("ERROR: Cannot back up; insufficient space.") elif err.user_message_text: print(err.user_message_text) sys.exit() else: print(err) sys.exit()
Briefly describe the idea of this code. This program should meet these requirements:
Use mysqldump to back up the database to Local
should support configuration files and allow configuration of multiple databases
can be uploaded to Dropbox
In order to complete these requirements, the first problem encountered is how to support configuration After searching the file, it turns out that there is a default ConfigParser under Python, which can complete this task, but the disgusting thing about normal things is that the configuration file must be organized in [Section] units. In fact, my configuration obviously has some global configurations, and various information in the database is repeated many times. The nesting ability of this kind of configuration file is simply terrible, and it requires a two-layer structure, which is disgusting. So I went online to search for configuration file formats. There were many articles comparing the pros and cons of various configuration files. In fact, there were quite a few articles. I thought about it, and maybe I can write an article about my own feelings in the future. Anyway, many articles finally agree that YAML is the most perfect configuration file. So I decided to use this, and sure enough, there is a ready-made class library, namely PyYAML, which is very convenient. Just two functions, load and dump, can directly convert the file into dict format.
The second problem is uploading to Dropbox. Later I found out that the official provides a rich API, and there is an SDK directly. (What makes me jealous is that the official SDK for PHP is not available. It is so unpopular. See you?), I studied the SDK usage and found that there are code examples directly, so I copied it directly into my code and completed 50% of the code in an instant. It was great!
After the entire code was completed, I found that it didn’t take much time to write the code. Moreover, the way I learned Python, I used to complain that Python’s documentation was difficult to use. I found that, in fact, the best In fact, the more correct way is to use help to query the API in an interactive Shell, and then assist with official documents. This is a place that refreshed my previous understanding. It feels pretty good in practice. Python’s package manager pip is also very useful.
pip install PyYAML pip install dropbox
For more Python scripts to automatically back up the database to Dropbox, please pay attention to the PHP Chinese website for related articles!

This article explains how to use Beautiful Soup, a Python library, to parse HTML. It details common methods like find(), find_all(), select(), and get_text() for data extraction, handling of diverse HTML structures and errors, and alternatives (Sel

Python's statistics module provides powerful data statistical analysis capabilities to help us quickly understand the overall characteristics of data, such as biostatistics and business analysis. Instead of looking at data points one by one, just look at statistics such as mean or variance to discover trends and features in the original data that may be ignored, and compare large datasets more easily and effectively. This tutorial will explain how to calculate the mean and measure the degree of dispersion of the dataset. Unless otherwise stated, all functions in this module support the calculation of the mean() function instead of simply summing the average. Floating point numbers can also be used. import random import statistics from fracti

This article compares TensorFlow and PyTorch for deep learning. It details the steps involved: data preparation, model building, training, evaluation, and deployment. Key differences between the frameworks, particularly regarding computational grap

Serialization and deserialization of Python objects are key aspects of any non-trivial program. If you save something to a Python file, you do object serialization and deserialization if you read the configuration file, or if you respond to an HTTP request. In a sense, serialization and deserialization are the most boring things in the world. Who cares about all these formats and protocols? You want to persist or stream some Python objects and retrieve them in full at a later time. This is a great way to see the world on a conceptual level. However, on a practical level, the serialization scheme, format or protocol you choose may determine the speed, security, freedom of maintenance status, and other aspects of the program

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

This tutorial builds upon the previous introduction to Beautiful Soup, focusing on DOM manipulation beyond simple tree navigation. We'll explore efficient search methods and techniques for modifying HTML structure. One common DOM search method is ex

This article guides Python developers on building command-line interfaces (CLIs). It details using libraries like typer, click, and argparse, emphasizing input/output handling, and promoting user-friendly design patterns for improved CLI usability.

The article discusses the role of virtual environments in Python, focusing on managing project dependencies and avoiding conflicts. It details their creation, activation, and benefits in improving project management and reducing dependency issues.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version
Useful JavaScript development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
