gidata 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.
- gidata-0.1.0/.gitignore +300 -0
- gidata-0.1.0/PKG-INFO +516 -0
- gidata-0.1.0/README.md +489 -0
- gidata-0.1.0/gidata/__init__.py +3 -0
- gidata-0.1.0/gidata/_cli.py +46 -0
- gidata-0.1.0/gidata/api_client.py +863 -0
- gidata-0.1.0/gidata/auth.py +163 -0
- gidata-0.1.0/gidata/config.py +146 -0
- gidata-0.1.0/gidata/config_cmd.py +111 -0
- gidata-0.1.0/gidata/download.py +341 -0
- gidata-0.1.0/gidata/firmware.py +55 -0
- gidata-0.1.0/gidata/main.py +61 -0
- gidata-0.1.0/gidata/upload.py +375 -0
- gidata-0.1.0/pyproject.toml +74 -0
- gidata-0.1.0/tests/__init__.py +0 -0
- gidata-0.1.0/tests/conftest.py +38 -0
- gidata-0.1.0/tests/test_auth.py +130 -0
- gidata-0.1.0/tests/test_config_cmd.py +89 -0
- gidata-0.1.0/tests/test_download.py +192 -0
- gidata-0.1.0/tests/test_refresh.py +276 -0
- gidata-0.1.0/tests/test_smoke.py +51 -0
- gidata-0.1.0/tests/test_upload.py +202 -0
- gidata-0.1.0/uv.lock +286 -0
gidata-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
# GILabs Data Center - Root .gitignore
|
|
2
|
+
|
|
3
|
+
# ====================
|
|
4
|
+
# Dependencies
|
|
5
|
+
# ====================
|
|
6
|
+
|
|
7
|
+
# Node.js / Frontend
|
|
8
|
+
node_modules/
|
|
9
|
+
.pnp
|
|
10
|
+
.pnp.*
|
|
11
|
+
|
|
12
|
+
# Yarn v4 (berry)
|
|
13
|
+
.yarn/cache/
|
|
14
|
+
**/.yarn/install-state.gz
|
|
15
|
+
.yarn/build-state.yml
|
|
16
|
+
!.yarn/patches
|
|
17
|
+
!.yarn/plugins
|
|
18
|
+
!.yarn/releases
|
|
19
|
+
!.yarn/sdks
|
|
20
|
+
!.yarn/versions
|
|
21
|
+
|
|
22
|
+
# Python / Backend
|
|
23
|
+
__pycache__/
|
|
24
|
+
*.py[cod]
|
|
25
|
+
*$py.class
|
|
26
|
+
*.so
|
|
27
|
+
.Python
|
|
28
|
+
build/
|
|
29
|
+
develop-eggs/
|
|
30
|
+
dist/
|
|
31
|
+
downloads/
|
|
32
|
+
eggs/
|
|
33
|
+
.eggs/
|
|
34
|
+
/lib/
|
|
35
|
+
/lib64/
|
|
36
|
+
parts/
|
|
37
|
+
sdist/
|
|
38
|
+
var/
|
|
39
|
+
wheels/
|
|
40
|
+
*.egg-info/
|
|
41
|
+
.installed.cfg
|
|
42
|
+
*.egg
|
|
43
|
+
|
|
44
|
+
# Virtual Environment
|
|
45
|
+
venv/
|
|
46
|
+
.venv/
|
|
47
|
+
env/
|
|
48
|
+
ENV/
|
|
49
|
+
backend/venv/
|
|
50
|
+
frontend/.venv/
|
|
51
|
+
|
|
52
|
+
# ====================
|
|
53
|
+
# Build Outputs
|
|
54
|
+
# ====================
|
|
55
|
+
|
|
56
|
+
# Next.js
|
|
57
|
+
.next/
|
|
58
|
+
out/
|
|
59
|
+
build/
|
|
60
|
+
.next-turbo/
|
|
61
|
+
|
|
62
|
+
# React Native
|
|
63
|
+
*.jsbundle
|
|
64
|
+
*.jsbundle.map
|
|
65
|
+
*.hbc
|
|
66
|
+
|
|
67
|
+
# ====================
|
|
68
|
+
# Environment Files
|
|
69
|
+
# ====================
|
|
70
|
+
|
|
71
|
+
# Local environment files (never commit these)
|
|
72
|
+
.env
|
|
73
|
+
.env.local
|
|
74
|
+
.env.*.local
|
|
75
|
+
backend/.env
|
|
76
|
+
frontend/.env.local
|
|
77
|
+
mobile-frontend/.env
|
|
78
|
+
mobile-frontend/.env.*
|
|
79
|
+
!mobile-frontend/.env.example
|
|
80
|
+
mobile-ego-frontend/.env
|
|
81
|
+
mobile-ego-frontend/.env.*
|
|
82
|
+
!mobile-ego-frontend/.env.example
|
|
83
|
+
|
|
84
|
+
# Keep example files
|
|
85
|
+
!.env.example
|
|
86
|
+
!backend/.env.example
|
|
87
|
+
!frontend/.env.example
|
|
88
|
+
!supabase/.env.example
|
|
89
|
+
|
|
90
|
+
# ====================
|
|
91
|
+
# Database
|
|
92
|
+
# ====================
|
|
93
|
+
|
|
94
|
+
*.db
|
|
95
|
+
*.sqlite
|
|
96
|
+
*.sqlite3
|
|
97
|
+
|
|
98
|
+
# ====================
|
|
99
|
+
# IDE / Editor
|
|
100
|
+
# ====================
|
|
101
|
+
|
|
102
|
+
.vscode/
|
|
103
|
+
.idea/
|
|
104
|
+
*.swp
|
|
105
|
+
*.swo
|
|
106
|
+
*~
|
|
107
|
+
*.sublime-project
|
|
108
|
+
*.sublime-workspace
|
|
109
|
+
.DS_Store
|
|
110
|
+
Thumbs.db
|
|
111
|
+
|
|
112
|
+
# ====================
|
|
113
|
+
# Testing & Coverage
|
|
114
|
+
# ====================
|
|
115
|
+
|
|
116
|
+
coverage/
|
|
117
|
+
.nyc_output/
|
|
118
|
+
.pytest_cache/
|
|
119
|
+
.mypy_cache/
|
|
120
|
+
.ruff_cache/
|
|
121
|
+
htmlcov/
|
|
122
|
+
.coverage
|
|
123
|
+
*.cover
|
|
124
|
+
e2e/artifacts/
|
|
125
|
+
|
|
126
|
+
# ====================
|
|
127
|
+
# Cache & Temp
|
|
128
|
+
# ====================
|
|
129
|
+
|
|
130
|
+
.turbo
|
|
131
|
+
.cache
|
|
132
|
+
.eslintcache
|
|
133
|
+
.babel-cache/
|
|
134
|
+
.metro/
|
|
135
|
+
.metro-health-check*
|
|
136
|
+
.pnpm-debug.log*
|
|
137
|
+
*.log
|
|
138
|
+
npm-debug.log*
|
|
139
|
+
yarn-debug.log*
|
|
140
|
+
yarn-error.log*
|
|
141
|
+
*.tmp
|
|
142
|
+
*.temp
|
|
143
|
+
|
|
144
|
+
# ====================
|
|
145
|
+
# Storage & Uploads
|
|
146
|
+
# ====================
|
|
147
|
+
|
|
148
|
+
storage/recordings/*
|
|
149
|
+
storage/exports/*
|
|
150
|
+
!storage/recordings/.gitkeep
|
|
151
|
+
!storage/exports/.gitkeep
|
|
152
|
+
|
|
153
|
+
# ====================
|
|
154
|
+
# TypeScript
|
|
155
|
+
# ====================
|
|
156
|
+
|
|
157
|
+
*.tsbuildinfo
|
|
158
|
+
next-env.d.ts
|
|
159
|
+
|
|
160
|
+
# ====================
|
|
161
|
+
# Docker
|
|
162
|
+
# ====================
|
|
163
|
+
|
|
164
|
+
# Keep Dockerfiles but ignore build contexts
|
|
165
|
+
*.dockerfile
|
|
166
|
+
docker-compose.override.yml
|
|
167
|
+
|
|
168
|
+
# ====================
|
|
169
|
+
# Vercel / Deployment
|
|
170
|
+
# ====================
|
|
171
|
+
|
|
172
|
+
.vercel
|
|
173
|
+
|
|
174
|
+
# ====================
|
|
175
|
+
# OS Files
|
|
176
|
+
# ====================
|
|
177
|
+
|
|
178
|
+
.DS_Store
|
|
179
|
+
.DS_Store?
|
|
180
|
+
._*
|
|
181
|
+
.Spotlight-V100
|
|
182
|
+
.Trashes
|
|
183
|
+
ehthumbs.db
|
|
184
|
+
Thumbs.db
|
|
185
|
+
|
|
186
|
+
# ====================
|
|
187
|
+
# Lock Files
|
|
188
|
+
# ====================
|
|
189
|
+
|
|
190
|
+
# pnpm-lock.yaml
|
|
191
|
+
# package-lock.json
|
|
192
|
+
# yarn.lock is committed per-project (frontend/, mobile-frontend/)
|
|
193
|
+
|
|
194
|
+
# ====================
|
|
195
|
+
# Root-level Yarn artifacts
|
|
196
|
+
# ====================
|
|
197
|
+
# Prevent accidental root-level files from running `yarn` outside
|
|
198
|
+
# of frontend/ or mobile-frontend/
|
|
199
|
+
/yarn.lock
|
|
200
|
+
|
|
201
|
+
# ====================
|
|
202
|
+
# Claude Code
|
|
203
|
+
# ====================
|
|
204
|
+
# Skills under .claude/skills/ ARE committed (team-shared).
|
|
205
|
+
# Local-only / runtime files are not.
|
|
206
|
+
.claude/scheduled_tasks.lock
|
|
207
|
+
.claude/settings.local.json
|
|
208
|
+
|
|
209
|
+
# ====================
|
|
210
|
+
# Expo
|
|
211
|
+
# ====================
|
|
212
|
+
|
|
213
|
+
.expo/
|
|
214
|
+
mobile-frontend/.expo/
|
|
215
|
+
mobile-ego-frontend/.expo/
|
|
216
|
+
|
|
217
|
+
# ====================
|
|
218
|
+
# iOS (React Native)
|
|
219
|
+
# ====================
|
|
220
|
+
|
|
221
|
+
mobile-frontend/ios/Pods/
|
|
222
|
+
mobile-frontend/ios/build/
|
|
223
|
+
mobile-frontend/ios/*.xcworkspace/xcuserdata/
|
|
224
|
+
mobile-frontend/ios/*.xcodeproj/xcuserdata/
|
|
225
|
+
mobile-frontend/ios/DerivedData/
|
|
226
|
+
mobile-frontend/ios/.xcode.env.local
|
|
227
|
+
mobile-ego-frontend/ios/Pods/
|
|
228
|
+
mobile-ego-frontend/ios/build/
|
|
229
|
+
mobile-ego-frontend/ios/*.xcworkspace/xcuserdata/
|
|
230
|
+
mobile-ego-frontend/ios/*.xcodeproj/xcuserdata/
|
|
231
|
+
mobile-ego-frontend/ios/DerivedData/
|
|
232
|
+
mobile-ego-frontend/ios/.xcode.env.local
|
|
233
|
+
|
|
234
|
+
# Xcode artifacts
|
|
235
|
+
*.pbxuser
|
|
236
|
+
!default.pbxuser
|
|
237
|
+
*.mode1v3
|
|
238
|
+
!default.mode1v3
|
|
239
|
+
*.mode2v3
|
|
240
|
+
!default.mode2v3
|
|
241
|
+
*.perspectivev3
|
|
242
|
+
!default.perspectivev3
|
|
243
|
+
*.xccheckout
|
|
244
|
+
*.moved-aside
|
|
245
|
+
*.hmap
|
|
246
|
+
*.ipa
|
|
247
|
+
*.xcuserstate
|
|
248
|
+
|
|
249
|
+
# ====================
|
|
250
|
+
# Android (React Native)
|
|
251
|
+
# ====================
|
|
252
|
+
|
|
253
|
+
mobile-frontend/android/.gradle/
|
|
254
|
+
mobile-frontend/android/app/build/
|
|
255
|
+
mobile-frontend/android/build/
|
|
256
|
+
mobile-frontend/android/local.properties
|
|
257
|
+
mobile-frontend/android/captures/
|
|
258
|
+
mobile-frontend/android/app/.cxx/
|
|
259
|
+
mobile-frontend/android/.kotlin/
|
|
260
|
+
mobile-ego-frontend/android/.gradle/
|
|
261
|
+
mobile-ego-frontend/android/app/build/
|
|
262
|
+
mobile-ego-frontend/android/build/
|
|
263
|
+
mobile-ego-frontend/android/local.properties
|
|
264
|
+
mobile-ego-frontend/android/captures/
|
|
265
|
+
mobile-ego-frontend/android/app/.cxx/
|
|
266
|
+
mobile-ego-frontend/android/.kotlin/
|
|
267
|
+
|
|
268
|
+
# Android artifacts
|
|
269
|
+
*.iml
|
|
270
|
+
*.hprof
|
|
271
|
+
|
|
272
|
+
# Signing keys
|
|
273
|
+
*.jks
|
|
274
|
+
*.keystore
|
|
275
|
+
!debug.keystore
|
|
276
|
+
|
|
277
|
+
# ====================
|
|
278
|
+
# Supabase
|
|
279
|
+
# ====================
|
|
280
|
+
|
|
281
|
+
supabase/.branches
|
|
282
|
+
supabase/.temp
|
|
283
|
+
supabase/.env.keys
|
|
284
|
+
|
|
285
|
+
# ====================
|
|
286
|
+
# Fastlane
|
|
287
|
+
# ====================
|
|
288
|
+
|
|
289
|
+
fastlane/report.xml
|
|
290
|
+
fastlane/Preview.html
|
|
291
|
+
fastlane/screenshots/
|
|
292
|
+
fastlane/test_output/
|
|
293
|
+
|
|
294
|
+
# ====================
|
|
295
|
+
# Misc
|
|
296
|
+
# ====================
|
|
297
|
+
|
|
298
|
+
*.pem
|
|
299
|
+
*.lock-wscript
|
|
300
|
+
frontend/tsconfig.typecheck.json
|