Browse Source

Documentation updates

tags/nilmdb-1.8.4
Jim Paris 10 years ago
parent
commit
274adcd856
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      nilmdb/client/client.py

+ 4
- 3
nilmdb/client/client.py View File

@@ -58,10 +58,11 @@ class Client(object):
return self.http.get("dbinfo")

def stream_list(self, path = None, layout = None, extended = False):
"""Return a sorted list of [path,layout] lists. If 'path' or
"""Return a sorted list of [path, layout] lists. If 'path' or
'layout' are specified, only return streams that match those
exact values. If 'extended' is True, the returned lists are
is [path,layout,extent_min,extent_max,total_rows,total_seconds]."""
exact values. If 'extended' is True, the returned lists have
extended info, e.g.: [path, layout, extent_min, extent_max,
total_rows, total_seconds."""
params = {}
if path is not None:
params["path"] = path


Loading…
Cancel
Save