Compare commits

..

No commits in common. "e4b380b2c175589739ae216c33df0ec1fe842dc2" and "2d5816a5045e4eef126cfec55b868ec5c66b401e" have entirely different histories.

10
examples/trivial_save.py Normal file
View File

@ -0,0 +1,10 @@
import nancy
if __name__ == "__main__":
# Inspect the schema of the default in-memory database (created on first
# import of nancy module)
for c in nancy._conn.iterdump():
print(c)
nancy.save_data({}, desc="This example script actually saves nothing")