Re: [BangPypers] Business rule engine in Python

2009-12-14 Thread Noufal Ibrahim
On Mon, Dec 14, 2009 at 1:51 PM, Asokan Pichai wrote: > Take a look at (PY)CLIPS > Thanks for that. I also found http://pyke.sourceforge.net/. -- ~noufal http://nibrahim.net.in ___ BangPypers mailing list BangPypers@python.org http://mail.python.or

Re: [BangPypers] Business rule engine in Python

2009-12-14 Thread Asokan Pichai
Take a look at (PY)CLIPS -- Asokan Pichai *---* We will find a way. Or, make one. (Hannibal) ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] Business rule engine in Python

2009-12-13 Thread Ankur Gupta
On 12/14/09, Noufal Ibrahim wrote: > Hello everyone, >I have a need to implement a rule engine in Python. I have a database > which contains some data that needs to be processed based on certain rules > that can be modified by a non-technical user using a web interface. The two > things which

Re: [BangPypers] Business rule engine in Python

2009-12-13 Thread Noufal Ibrahim
On Mon, Dec 14, 2009 at 11:09 AM, Ramdas S wrote: > Noufal, > > We had and have similar requirements. I did some asking at IRC, and the > general recommendation was to write custom modules in Python or store the > rules as conditions in database tables. > > We are using the second option and usin

Re: [BangPypers] Business rule engine in Python

2009-12-13 Thread Ramdas S
Noufal, We had and have similar requirements. I did some asking at IRC, and the general recommendation was to write custom modules in Python or store the rules as conditions in database tables. We are using the second option and using ORMs its pretty easy to create what you want, and have been sh

[BangPypers] Business rule engine in Python

2009-12-13 Thread Noufal Ibrahim
Hello everyone, I have a need to implement a rule engine in Python. I have a database which contains some data that needs to be processed based on certain rules that can be modified by a non-technical user using a web interface. The two things which occur to me are 0. a DSL written using some pa