Skip to content

Commit

Permalink
Add seer to DT
Browse files Browse the repository at this point in the history
  • Loading branch information
jpn-- committed Jan 19, 2017
1 parent a6f1d49 commit 988799d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion py/dt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4256,7 +4256,7 @@ def consolidate(self, newfile, spool=True):
return d1

from .vault import in_vault, from_vault, to_vault, vault_keys, wipe_vault
from .analyze import look_idca, look_idco, clear_look_cache, look_site
from .analyze import look_idca, look_idco, clear_look_cache, look_site, seer


def _close_all_h5():
Expand Down
5 changes: 5 additions & 0 deletions py/dt/analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ def clear_look_cache(self):



def seer(self, big=False):
with XHTML(os.path.splitext(self.source_filename)[0]+".info.html", overwrite=True, view_on_exit=True) as f:
f.append(self.info(3))
if big:
f.append(self.look_idco('*'))



Expand Down

0 comments on commit 988799d

Please sign in to comment.