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 ...
Search found 4 matches
- 18 Jul 2006, 15:17
- Forum: General Discussion
- Topic: Python back-end for Mantis
- Replies: 6
- Views: 11922
- 02 May 2006, 18:26
- Forum: General Discussion
- Topic: Python back-end for Mantis
- Replies: 6
- Views: 11922
- 07 Apr 2006, 10:12
- Forum: General Discussion
- Topic: Python back-end for Mantis
- Replies: 6
- Views: 11922
- 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 ...
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 ...