Search found 4 matches

by lauploix
18 Jul 2006, 15:17
Forum: General Discussion
Topic: Python back-end for Mantis
Replies: 6
Views: 11922

Ok, here is what I have :

Examples on how to use my python back-end :

>>> usr = User.byUsername ('test')
>>> usr.username
'test'
>>> me = User.byUsername ('ploix')
>>> #list of reported bugs
>>> len (list (me.reported))
905
>>> #50th reported bug : what is the project name ?
>>> me.reported [50 ...
by lauploix
02 May 2006, 18:26
Forum: General Discussion
Topic: Python back-end for Mantis
Replies: 6
Views: 11922

Your MantisConnect tool is clearly superior to the tool I wrote, because it provides the security, for instance. My tool does not. And it provides a write access that my tool does not provide (yet).

We are in pre-alpha on Mantis 1.0.2. Post will be done when it has been fully tested.
by lauploix
07 Apr 2006, 10:12
Forum: General Discussion
Topic: Python back-end for Mantis
Replies: 6
Views: 11922

Ok.

When we have upgraded to Mantis 1.0, I update the Python back-end and post it with samples.

BTW, I used SQLObject to map the Mantis mySQL database, and I had some difficulties, due to limitations of the SQLObject framework. For sure, it is possible to have the work done anyway, but you ...
by lauploix
15 Mar 2006, 22:29
Forum: General Discussion
Topic: Python back-end for Mantis
Replies: 6
Views: 11922

Python back-end for Mantis

I created a python back-end for my Mantis database (currently 0.19).
It is still in alpha but it works to read values from database.

It gives you the ability to query and navigate the database quite easily.

me = User.byUsername ("ploix")
me.monitored --> gives you the list of bugs you monitor
me ...