We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fccd7e7 commit 91d223eCopy full SHA for 91d223e
2 files changed
README.md
@@ -2,6 +2,8 @@
2
3
Python client library for deepinspection. Designed to simplify and exemplify interaction with the External API.
4
5
+See the [Optram example](examples/optram) for a complete example including converting to a custom format for internal use.
6
+
7
## Install
8
9
Use your preferred package manager:
examples/optram/README.md
@@ -28,7 +28,7 @@ exports = client.exports.fastenings.list()
28
export = exports[0]
29
30
for fastening in client.exports.fastenings.get_data(export["id"]):
31
- optram_fastening = deepinspection_optram.convert(line, export)
+ optram_fastening = deepinspection_optram.convert(fastening, export)
32
```
33
34
export_data
0 commit comments