python-simple-workflow
                                
                                 python-simple-workflow copied to clipboard
                                
                                    python-simple-workflow copied to clipboard
                            
                            
                            
                        DISCONTINUED - See README
When registering workflow and activity types, the SWF API supports the definition of default timeouts. However `simple-workflow` does not use them and raise an exception when timeouts are not explicitly...
It may have been an intentional choice, but boto's config file and simple-workflow's config file are in slightly different formats. Since boto is the underlying library making the connections, it...
The way [simple-workflow](https://github.com/botify-labs/python-simple-workflow) lookups the name of event types is non-deterministic. It iterates of the keys of the [`EVENTS`](https://github.com/botify-labs/python-simple-workflow/blob/master/swf/models/event/factory.py#L37) dict. There is no guaranty in the order of keys in...
- Workflow: - [ ] Input: 32,000 chars - [ ] Result: 32,000 chars - Activity task - [ ] Input: 32,000 chars - [ ] Result: 32,000 chars -...
All models inherit from [`core.ConnectedSWFObject`](https://github.com/botify-labs/python-simple-workflow/blob/master/swf/core.py#L16) that connects to the SWF API in the constructor. It requires AWS credentials anywhere we instanciate models even if they don't query the API. The...
Hi, Using os.environ['HOME'] is invalid for Windows, Windows does not have a HOME env variable. ``` Traceback (most recent call last): File "C:\Users\Ben\AppData\Local\Aptana Studio 3\plugins\org.python.pydev_2.7.0.2013032300\pysrc\pydevd.py", line 1397, in debugger.run(setup['file'], None,...
It opens the connection to the SWF API again. ``` python def reconnect(self): .. ```
Set up a mocking library for the models/qs/actors modules, in order to be able to easily test the swf usage using python-simple-workflow.