A curated list of awesome Python frameworks, libraries, software and resources.
Inspired by awesome-php.
| /* Useful celery config. | |
| app = Celery('tasks', | |
| broker='redis://localhost:6379', | |
| backend='redis://localhost:6379') | |
| app.conf.update( | |
| CELERY_TASK_RESULT_EXPIRES=3600, | |
| CELERY_QUEUES=( | |
| Queue('default', routing_key='tasks.#'), |
A curated list of awesome Python frameworks, libraries, software and resources.
Inspired by awesome-php.
| import base64 | |
| import os | |
| import time | |
| from appium import webdriver | |
| from appium.webdriver.common.touch_action import TouchAction | |
| """ | |
| Desired Capabilities | |
| """ | |
| # TODO provide the desired cap as per your requirement |
This is a simple way to backup your MySQL tables to Amazon S3 for a nightly backup - this is all to be done on your server :-)
Sister Document - Restore MySQL from Amazon S3 - read that next
this is for Centos 5.6, see http://s3tools.org/repositories for other systems like ubuntu etc