Yes: http://trac.edgewall.org/browser/trunk/trac
As for what you want to do in particular, try:
from trac.env import open_environment
env = open_environment('/path/to/trac/project')
for username, name, email in env.get_known_users():
print username, name, email
env is an Environment object, defined in the trac.env module.
get_known_users is a method that grabs usernames from the session
table, and includes any full names and e-mail addresses that might be
associated with those usernames.
On 8/31/07, ritu <[EMAIL PROTECTED]> wrote:
>
> Hi members,
>
> Is there any existing API for TRAC. I have seen the name many time but
> not able to reach an existing resource.Can somebody tell me a good
> resource from where to start from.
>
> I want to surf the users existing in Trac through it.Any help??
>
> Thanks
> Ritu
>
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac
Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---