thordata-sdk 0.5.0__tar.gz → 0.7.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. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/LICENSE +21 -21
  2. {thordata_sdk-0.5.0/src/thordata_sdk.egg-info → thordata_sdk-0.7.0}/PKG-INFO +1053 -896
  3. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/README.md +1010 -853
  4. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/pyproject.toml +134 -132
  5. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/setup.cfg +4 -4
  6. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/src/thordata/__init__.py +139 -135
  7. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/src/thordata/_utils.py +144 -126
  8. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/src/thordata/async_client.py +815 -768
  9. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/src/thordata/client.py +1040 -995
  10. thordata_sdk-0.7.0/src/thordata/demo.py +140 -0
  11. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/src/thordata/enums.py +384 -315
  12. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/src/thordata/exceptions.py +344 -344
  13. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/src/thordata/models.py +840 -725
  14. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/src/thordata/parameters.py +53 -53
  15. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/src/thordata/retry.py +380 -380
  16. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0/src/thordata_sdk.egg-info}/PKG-INFO +1053 -896
  17. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/src/thordata_sdk.egg-info/SOURCES.txt +8 -1
  18. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/tests/test_async_client.py +73 -73
  19. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/tests/test_async_client_errors.py +113 -113
  20. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/tests/test_client.py +82 -82
  21. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/tests/test_client_errors.py +96 -96
  22. thordata_sdk-0.7.0/tests/test_demo_entrypoint.py +34 -0
  23. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/tests/test_enums.py +126 -126
  24. thordata_sdk-0.5.0/tests/test_examples_demo_serp_api.py → thordata_sdk-0.7.0/tests/test_examples_async_high_concurrency.py +42 -50
  25. thordata_sdk-0.7.0/tests/test_examples_demo_serp_api.py +69 -0
  26. thordata_sdk-0.7.0/tests/test_examples_demo_universal.py +61 -0
  27. thordata_sdk-0.7.0/tests/test_examples_demo_web_scraper_api.py +54 -0
  28. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/tests/test_exceptions.py +166 -166
  29. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/tests/test_models.py +326 -326
  30. thordata_sdk-0.7.0/tests/test_task_status_and_wait.py +71 -0
  31. thordata_sdk-0.7.0/tests/test_user_agent.py +40 -0
  32. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/src/thordata_sdk.egg-info/dependency_links.txt +0 -0
  33. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/src/thordata_sdk.egg-info/requires.txt +0 -0
  34. {thordata_sdk-0.5.0 → thordata_sdk-0.7.0}/src/thordata_sdk.egg-info/top_level.txt +0 -0
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Thordata · AI Proxy & Web Data
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Thordata · AI Proxy & Web Data
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.