We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f3f38c commit a35068bCopy full SHA for a35068b
roundup/instance.py
@@ -16,9 +16,15 @@
16
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17
#
18
19
-"""Tracker handling (open tracker).
+"""Top-level tracker interface.
20
21
-Backwards compatibility for the old-style "imported" trackers.
+Open a tracker with:
22
+
23
+ >>> from roundup import instance
24
+ >>> db = instance.open('path to tracker home')
25
26
+The "db" handle you get back is the tracker's hyperdb which has the interface
27
+desciribed in `roundup.hyperdb.Database`.
28
"""
29
__docformat__ = 'restructuredtext'
30
0 commit comments