qi-data-reader 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- qi_data_reader-0.1.0/.gitignore +76 -0
- qi_data_reader-0.1.0/Cargo.lock +1184 -0
- qi_data_reader-0.1.0/Cargo.toml +21 -0
- qi_data_reader-0.1.0/PKG-INFO +8 -0
- qi_data_reader-0.1.0/pyproject.toml +16 -0
- qi_data_reader-0.1.0/qi_data_reader copy.pyi +34 -0
- qi_data_reader-0.1.0/qi_data_reader.pyi +35 -0
- qi_data_reader-0.1.0/setupfunc.ps1 +14 -0
- qi_data_reader-0.1.0/src/error.rs +45 -0
- qi_data_reader-0.1.0/src/header.rs +225 -0
- qi_data_reader-0.1.0/src/lib.rs +176 -0
- qi_data_reader-0.1.0/test.py +21 -0
- qi_data_reader-0.1.0/uv.lock +262 -0
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/target
|
|
2
|
+
/target_maturin
|
|
3
|
+
/target_ra
|
|
4
|
+
/target_stub
|
|
5
|
+
data.jpk-qi-data
|
|
6
|
+
token
|
|
7
|
+
# Byte-compiled / optimized / DLL files
|
|
8
|
+
__pycache__/
|
|
9
|
+
.pytest_cache/
|
|
10
|
+
*.py[cod]
|
|
11
|
+
|
|
12
|
+
# C extensions
|
|
13
|
+
*.so
|
|
14
|
+
|
|
15
|
+
# Distribution / packaging
|
|
16
|
+
.Python
|
|
17
|
+
.venv/
|
|
18
|
+
env/
|
|
19
|
+
bin/
|
|
20
|
+
build/
|
|
21
|
+
develop-eggs/
|
|
22
|
+
dist/
|
|
23
|
+
eggs/
|
|
24
|
+
lib/
|
|
25
|
+
lib64/
|
|
26
|
+
parts/
|
|
27
|
+
sdist/
|
|
28
|
+
var/
|
|
29
|
+
include/
|
|
30
|
+
man/
|
|
31
|
+
venv/
|
|
32
|
+
*.egg-info/
|
|
33
|
+
.installed.cfg
|
|
34
|
+
*.egg
|
|
35
|
+
|
|
36
|
+
# Installer logs
|
|
37
|
+
pip-log.txt
|
|
38
|
+
pip-delete-this-directory.txt
|
|
39
|
+
pip-selfcheck.json
|
|
40
|
+
|
|
41
|
+
# Unit test / coverage reports
|
|
42
|
+
htmlcov/
|
|
43
|
+
.tox/
|
|
44
|
+
.coverage
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
|
|
49
|
+
# Translations
|
|
50
|
+
*.mo
|
|
51
|
+
|
|
52
|
+
# Mr Developer
|
|
53
|
+
.mr.developer.cfg
|
|
54
|
+
.project
|
|
55
|
+
.pydevproject
|
|
56
|
+
|
|
57
|
+
# Rope
|
|
58
|
+
.ropeproject
|
|
59
|
+
|
|
60
|
+
# Django stuff:
|
|
61
|
+
*.log
|
|
62
|
+
*.pot
|
|
63
|
+
|
|
64
|
+
.DS_Store
|
|
65
|
+
|
|
66
|
+
# Sphinx documentation
|
|
67
|
+
docs/_build/
|
|
68
|
+
|
|
69
|
+
# PyCharm
|
|
70
|
+
.idea/
|
|
71
|
+
|
|
72
|
+
# VSCode
|
|
73
|
+
.vscode/
|
|
74
|
+
|
|
75
|
+
# Pyenv
|
|
76
|
+
.python-version
|