Changeset 56
- Timestamp:
- 07/25/07 20:15:24 (1 year ago)
- Files:
-
- projects/sAsync/trunk/sasync/database.py (modified) (1 diff)
- projects/sAsync/trunk/sasync/misc.py (added)
- projects/sAsync/trunk/sasync/pdict.py (modified) (1 diff)
- projects/Twisted-Goodies/trunk/setup.py (modified) (4 diffs)
- projects/Twisted-Goodies/trunk/twisted_goodies/taskqueue (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
projects/sAsync/trunk/sasync/database.py
r5 r56 30 30 import sqlalchemy as SA 31 31 32 from twisted_goodies import misc, taskqueue 32 import asynqueue 33 import misc 33 34 34 35 projects/sAsync/trunk/sasync/pdict.py
r3 r56 29 29 from UserDict import DictMixin 30 30 from twisted.internet import defer 31 from twisted_goodies.misc import DeferredTracker31 from misc import DeferredTracker 32 32 33 33 import items projects/Twisted-Goodies/trunk/setup.py
r39 r56 49 49 50 50 kw['keywords'] = [ 51 'Twisted', 'asynchronous', 'threads', 52 'taskqueue', 'queue', 'priority', 'tasks', 'jobs', 51 'Twisted', 'asynchronous', 53 52 'web', 'fetch', 'patent', 'wget'] 54 53 … … 64 63 65 64 kw['description'] = " ".join(""" 66 Asynchronous task queueing, HTTP fetching, cluster management, and other67 goodies for theTwisted framework.65 Asynchronous HTTP fetching, cluster management, and other goodies for the 66 Twisted framework. 68 67 """.split("\n")) 69 68 … … 75 74 | Sub-Package | Description | 76 75 +===============+=============================================================+ 77 | taskqueue | Asynchronous task queueing with a powerful worker/manager |78 | | interface |79 +---------------+-------------------------------------------------------------+80 76 | webfetch | Fetching of web server content including PDFs of patent and | 81 77 | | published patent applications from the USPTO servers. | … … 85 81 | misc | Miscellaneous goodies, including a deferred tracker for | 86 82 | | waiting on the firing of one or more deferreds without | 87 | | needing references to them. | 83 | | needing references to them, a mixing for restricting | 84 | | client addresses for your server factories, and a multi- | 85 | | privilege Perspective Broker factory | 88 86 +---------------+-------------------------------------------------------------+ 89 87
