wlt-platform 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.
Files changed (34) hide show
  1. wlt_platform-0.1.0/.gitignore +29 -0
  2. wlt_platform-0.1.0/CLI.md +1537 -0
  3. wlt_platform-0.1.0/PKG-INFO +2223 -0
  4. wlt_platform-0.1.0/README.md +2198 -0
  5. wlt_platform-0.1.0/pyproject.toml +42 -0
  6. wlt_platform-0.1.0/src/wlt/__init__.py +28 -0
  7. wlt_platform-0.1.0/src/wlt/__main__.py +4 -0
  8. wlt_platform-0.1.0/src/wlt/_config.py +34 -0
  9. wlt_platform-0.1.0/src/wlt/_exceptions.py +120 -0
  10. wlt_platform-0.1.0/src/wlt/_http.py +436 -0
  11. wlt_platform-0.1.0/src/wlt/_types.py +38 -0
  12. wlt_platform-0.1.0/src/wlt/cli.py +913 -0
  13. wlt_platform-0.1.0/src/wlt/client.py +187 -0
  14. wlt_platform-0.1.0/src/wlt/models/__init__.py +142 -0
  15. wlt_platform-0.1.0/src/wlt/models/api_key.py +73 -0
  16. wlt_platform-0.1.0/src/wlt/models/auth.py +29 -0
  17. wlt_platform-0.1.0/src/wlt/models/billing.py +71 -0
  18. wlt_platform-0.1.0/src/wlt/models/common.py +45 -0
  19. wlt_platform-0.1.0/src/wlt/models/model_gallery.py +93 -0
  20. wlt_platform-0.1.0/src/wlt/models/model_lab.py +84 -0
  21. wlt_platform-0.1.0/src/wlt/models/payment.py +110 -0
  22. wlt_platform-0.1.0/src/wlt/models/secret.py +191 -0
  23. wlt_platform-0.1.0/src/wlt/models/usage.py +145 -0
  24. wlt_platform-0.1.0/src/wlt/models/user.py +40 -0
  25. wlt_platform-0.1.0/src/wlt/resources/__init__.py +32 -0
  26. wlt_platform-0.1.0/src/wlt/resources/api_key.py +479 -0
  27. wlt_platform-0.1.0/src/wlt/resources/auth.py +68 -0
  28. wlt_platform-0.1.0/src/wlt/resources/billing.py +318 -0
  29. wlt_platform-0.1.0/src/wlt/resources/model_gallery.py +296 -0
  30. wlt_platform-0.1.0/src/wlt/resources/model_lab.py +385 -0
  31. wlt_platform-0.1.0/src/wlt/resources/payment.py +458 -0
  32. wlt_platform-0.1.0/src/wlt/resources/secret.py +611 -0
  33. wlt_platform-0.1.0/src/wlt/resources/usage.py +573 -0
  34. wlt_platform-0.1.0/src/wlt/resources/user.py +59 -0
@@ -0,0 +1,29 @@
1
+ # 排除 docs 前端项目
2
+ docs/
3
+
4
+ # 排除各语言的测试文件
5
+ python/tests/
6
+ java/src/test/
7
+ nodejs/tests/
8
+ go/test_integration/
9
+
10
+ # 编译产物
11
+ python/__pycache__/
12
+ python/src/*.egg-info/
13
+ python/dist/
14
+ python/.pytest_cache/
15
+ java/target/
16
+ nodejs/node_modules/
17
+ nodejs/dist/
18
+
19
+ # IDE
20
+ .idea/
21
+ .vscode/
22
+ *.iml
23
+
24
+ # OS
25
+ .DS_Store
26
+ go/test_v2/
27
+
28
+ tests/
29
+ node_modules/