Skip to main content

pythonic devops toolbelt.

consider this beta. its dogfed and somehow tested, but shipped without warranty

API MIGHT CHANGE UNTIL V 1.0 (yes i am serious)

Requirements

for MySQL support:

  • MySQL-python>=1.2.4

  • mysqldump

for PostgreSQL support:

  • psycopg2>=2.5

  • pg_dump

Installation

with pip:

$ pip install pyque

or:

$ easy_install pyque

or checkout from github:

$ git clone https://github.com/bmaeser/pyque.git
$ cd pyque
$ python setup.py install

Example

Create a gziped MySQL dump of every database on localhost for user ‘backupuser’. chmod backup to 400 and rotate it away and keep 7 versions of this backup:

import os

from pyque.db.mysql import db_list, dump
from pyque.sh import gzip, chmod
from pyque.utils import rotate

username = 'backupuser'
password = 'test'
tmppath = '/tmp'
backupdir = '/tmp/backups'
excludes = ['performance_schema', 'information_schema']

for db in db_list(username = username, password=password):
    if db in excludes:
        continue
    dumpfilename = os.path.join(tmppath,db) + '.sql'
    dump(dumpfilename, dbname=db, username=username, password=password)
    retcode, output, newfilepath = gzip(dumpfilename)
    chmod(newfilepath, '400')
    rotate(newfilepath, backupdir, max_versions=7)

Contribute

contributions welcome

pull-request please and/or create a issue on github

LICENCE

The MIT License (MIT) Copyright © 2013 Bernhard Mäser, http://bmaeser.io

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Release files for pyque 0.4.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pyque 0.4.0
File Size Uploaded
pyque-0.4.0.tar.gz 5.7 kB Details

Release files / pyque-0.4.0.tar.gz

Download URL pyque-0.4.0.tar.gz
Size 5.7 kB
Tags Source
SHA-256 checksum
How to use checksums
f5000e4fe0ebc9aadc5ba45460c7769b7d3a64b7da936268fbab750b771a648d
BLAKE2b-256 checksum
How to use checksums
8eb6e07855d1746bfff9923efdc812343198a1bbc93dc1534c9d568d8ecf0e17
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.4.0 This release

1 release file

0.3.6

1 release file

0.3.5

1 release file

0.3.4

1 release file

0.3.3

1 release file

0.3.2

1 release file

0.3.1

1 release file

0.3

1 release file

0.2.0

1 release file

0.1.1

1 release file

0.1

1 release file

0.0.2

1 release file

0.0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page