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
| from multiprocessing.managers import BaseManager | |
| from mathenate import mathenate | |
| #Define manager | |
| class QueueManager(BaseManager): pass | |
| QueueManager.register('get_job_queue') | |
| QueueManager.register('get_result_queue') | |
| #Connect to server | |
| m = QueueManager(address=('my.computer.org', 50000), authkey='password') |
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
| # Backs up all the photos from Google Picasa Web Albums. | |
| # | |
| # The script downloads the original version of the photos, and is not limited to | |
| # 1600x1200 thumbnails. | |
| # | |
| # Author:: Victor Costan | |
| # Copyright:: Copyright (C) 2010 Victor Costan | |
| # License:: MIT | |
| # |
NewerOlder