We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67aed3f commit 021a6cbCopy full SHA for 021a6cb
flatdata-py/README.md
@@ -17,6 +17,16 @@ flatdata-generator --gen python --schema locations.flatdata --output-file locati
17
18
`flatdata-py` comes with a handy tool called the `flatdata-inspector` to inspect the contents of an archive:
19
20
+* from the `flatdata-py` source directory:
21
+
22
+```sh
23
+./inspector.py
24
+# or
25
+python3 -m flatdata.lib.inspector
26
+```
27
28
+* if you want to install `flatdata-py`:
29
30
```sh
31
pip3 install flatdata-py[inspector] # the inspector feature requires IPython
32
flatdata-inspector -p /path/to/my/flatdata.archive
flatdata-py/inspector.py
@@ -0,0 +1,3 @@
1
+#!/usr/bin/env python3
2
+from flatdata.lib import inspector
3
+inspector.main()
inspector
@@ -0,0 +1 @@
+./flatdata-py/inspector.py
0 commit comments