trafficmorph 0.3.0__tar.gz → 0.3.2__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 (71) hide show
  1. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/PKG-INFO +3 -4
  2. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/README.md +2 -3
  3. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/pyproject.toml +1 -1
  4. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/.gitignore +0 -0
  5. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/LICENSE +0 -0
  6. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/__init__.py +0 -0
  7. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/__init__.py +0 -0
  8. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/captures/__init__.py +0 -0
  9. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/captures/analyse.py +0 -0
  10. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/captures/import_capture.py +0 -0
  11. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/domains/__init__.py +0 -0
  12. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/domains/add.py +0 -0
  13. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/domains/list_domains.py +0 -0
  14. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/domains/remove.py +0 -0
  15. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/domains/verify_dns.py +0 -0
  16. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/domains/verify_http.py +0 -0
  17. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/history/__init__.py +0 -0
  18. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/history/get_history_item.py +0 -0
  19. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/history/list_history.py +0 -0
  20. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/profiles/__init__.py +0 -0
  21. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/profiles/create_profile.py +0 -0
  22. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/profiles/delete_profile.py +0 -0
  23. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/profiles/get_profile.py +0 -0
  24. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/profiles/list_profiles.py +0 -0
  25. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/profiles/update_profile.py +0 -0
  26. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/runs/__init__.py +0 -0
  27. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/runs/pause.py +0 -0
  28. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/runs/resume.py +0 -0
  29. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/runs/start.py +0 -0
  30. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/runs/stop.py +0 -0
  31. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/variables_sets/__init__.py +0 -0
  32. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/variables_sets/change_mode.py +0 -0
  33. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/variables_sets/create.py +0 -0
  34. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/variables_sets/delete.py +0 -0
  35. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/variables_sets/get.py +0 -0
  36. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/variables_sets/list_variables_sets.py +0 -0
  37. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/api/variables_sets/rename.py +0 -0
  38. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/client.py +0 -0
  39. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/errors.py +0 -0
  40. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/__init__.py +0 -0
  41. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/add_domain_request.py +0 -0
  42. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/analyse_body.py +0 -0
  43. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/api_profile_request.py +0 -0
  44. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/api_profile_response.py +0 -0
  45. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/capture_analysis_response.py +0 -0
  46. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/capture_import_result.py +0 -0
  47. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/change_variables_set_mode_request.py +0 -0
  48. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/change_variables_set_mode_request_mode.py +0 -0
  49. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/create_variables_set_request.py +0 -0
  50. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/create_variables_set_request_mode.py +0 -0
  51. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/created_profile.py +0 -0
  52. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/curve_point.py +0 -0
  53. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/group.py +0 -0
  54. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/import_capture_body.py +0 -0
  55. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/rename_variables_set_request.py +0 -0
  56. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/schedule_block.py +0 -0
  57. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/scheduled_run_response.py +0 -0
  58. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/skipped_selection.py +0 -0
  59. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/slot_input.py +0 -0
  60. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/slot_response.py +0 -0
  61. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/stats.py +0 -0
  62. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/traffic_profile_point_request.py +0 -0
  63. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/traffic_profile_point_response.py +0 -0
  64. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/traffic_profile_summary_response.py +0 -0
  65. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/traffic_run_control_response.py +0 -0
  66. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/variable.py +0 -0
  67. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/variables_set_response.py +0 -0
  68. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/variables_set_response_mode.py +0 -0
  69. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/models/verified_domain_response.py +0 -0
  70. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/sdk.py +0 -0
  71. {trafficmorph-0.3.0 → trafficmorph-0.3.2}/trafficmorph/types.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: trafficmorph
3
- Version: 0.3.0
3
+ Version: 0.3.2
4
4
  Summary: TrafficMorph Python SDK — typed client for the /api/v1 API.
5
5
  Project-URL: Homepage, https://github.com/trafficmorph-gif/tm-python
6
6
  Project-URL: Documentation, https://github.com/trafficmorph-gif/tm-python#readme
@@ -27,7 +27,7 @@ Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
27
27
  Requires-Dist: pytest>=7; extra == 'dev'
28
28
  Description-Content-Type: text/markdown
29
29
 
30
- # trafficmorph — TrafficMorph Python SDK
30
+ # TrafficMorph Python SDK
31
31
 
32
32
  ```
33
33
  ████████╗██████╗ █████╗ ███████╗███████╗██╗ ██████╗
@@ -47,7 +47,6 @@ Description-Content-Type: text/markdown
47
47
  [![PyPI](https://img.shields.io/pypi/v/trafficmorph)](https://pypi.org/project/trafficmorph/)
48
48
  [![Python versions](https://img.shields.io/pypi/pyversions/trafficmorph)](https://pypi.org/project/trafficmorph/)
49
49
  [![License](https://img.shields.io/pypi/l/trafficmorph)](LICENSE)
50
- [![Downloads](https://img.shields.io/pypi/dm/trafficmorph)](https://pypi.org/project/trafficmorph/)
51
50
 
52
51
  Typed Python client for the TrafficMorph `/api/v1` API. Request
53
52
  and response shapes are typed `attrs` classes; endpoint methods
@@ -60,7 +59,7 @@ expose both sync and async call styles.
60
59
  pip install trafficmorph
61
60
 
62
61
  # Reproducible builds (CI / production) — pin to an exact version.
63
- pip install 'trafficmorph==0.3.0'
62
+ pip install 'trafficmorph==0.3.2'
64
63
  ```
65
64
 
66
65
  ## Prerequisites
@@ -1,4 +1,4 @@
1
- # trafficmorph — TrafficMorph Python SDK
1
+ # TrafficMorph Python SDK
2
2
 
3
3
  ```
4
4
  ████████╗██████╗ █████╗ ███████╗███████╗██╗ ██████╗
@@ -18,7 +18,6 @@
18
18
  [![PyPI](https://img.shields.io/pypi/v/trafficmorph)](https://pypi.org/project/trafficmorph/)
19
19
  [![Python versions](https://img.shields.io/pypi/pyversions/trafficmorph)](https://pypi.org/project/trafficmorph/)
20
20
  [![License](https://img.shields.io/pypi/l/trafficmorph)](LICENSE)
21
- [![Downloads](https://img.shields.io/pypi/dm/trafficmorph)](https://pypi.org/project/trafficmorph/)
22
21
 
23
22
  Typed Python client for the TrafficMorph `/api/v1` API. Request
24
23
  and response shapes are typed `attrs` classes; endpoint methods
@@ -31,7 +30,7 @@ expose both sync and async call styles.
31
30
  pip install trafficmorph
32
31
 
33
32
  # Reproducible builds (CI / production) — pin to an exact version.
34
- pip install 'trafficmorph==0.3.0'
33
+ pip install 'trafficmorph==0.3.2'
35
34
  ```
36
35
 
37
36
  ## Prerequisites
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "trafficmorph"
7
- version = "0.3.0"
7
+ version = "0.3.2"
8
8
  description = "TrafficMorph Python SDK — typed client for the /api/v1 API."
9
9
  readme = "README.md"
10
10
  # Python 3.10+ for PEP 604 union syntax (str | None), TypedDict
File without changes
File without changes