Skip to content

Commit

Permalink
Merge pull request #132 from lanl/wf_version
Browse files Browse the repository at this point in the history
wildfire example update and staging v1.1 pre release
  • Loading branch information
jpulidojr authored Dec 17, 2024
2 parents 5288553 + 5e100f0 commit 454823b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dsi/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0"
__version__ = "1.1"
9 changes: 4 additions & 5 deletions examples/wildfire/wildfire_terminal.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@
cnames = a.artifact_handler(interaction_type='get', query = "PRAGMA table_info(wfdata);")
data = a.artifact_handler(interaction_type='get', query = "SELECT * FROM wfdata;")#, isVerbose = True)

# a.artifact_handler(interaction_type="read")
clist = [i[1] for i in cnames]
dlist = list(data)
print(clist)
print(dlist)
# a.unload_module('backend', 'Sqlite', 'back-write')
table = [clist] + [list(row) for row in data]

print(table)
# a.unload_module('backend', 'Sqlite', 'back-write')

0 comments on commit 454823b

Please sign in to comment.