apple-search-ads-client 1.0.0__tar.gz → 1.0.3__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.

Potentially problematic release.


This version of apple-search-ads-client might be problematic. Click here for more details.

Files changed (23) hide show
  1. {apple_search_ads_client-1.0.0/src/apple_search_ads_client.egg-info → apple_search_ads_client-1.0.3}/PKG-INFO +2 -3
  2. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/README.md +1 -2
  3. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/pyproject.toml +7 -3
  4. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/setup.py +1 -1
  5. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/src/apple_search_ads/__init__.py +1 -1
  6. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/src/apple_search_ads/client.py +250 -257
  7. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/src/apple_search_ads/exceptions.py +7 -1
  8. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3/src/apple_search_ads_client.egg-info}/PKG-INFO +2 -3
  9. apple_search_ads_client-1.0.3/tests/__init__.py +1 -0
  10. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/tests/conftest.py +10 -10
  11. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/tests/test_client.py +453 -397
  12. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/tests/test_exceptions.py +13 -13
  13. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/tests/test_integration.py +132 -128
  14. apple_search_ads_client-1.0.0/tests/__init__.py +0 -1
  15. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/LICENSE +0 -0
  16. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/MANIFEST.in +0 -0
  17. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/requirements-dev.txt +0 -0
  18. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/requirements.txt +0 -0
  19. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/setup.cfg +0 -0
  20. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/src/apple_search_ads_client.egg-info/SOURCES.txt +0 -0
  21. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/src/apple_search_ads_client.egg-info/dependency_links.txt +0 -0
  22. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/src/apple_search_ads_client.egg-info/requires.txt +0 -0
  23. {apple_search_ads_client-1.0.0 → apple_search_ads_client-1.0.3}/src/apple_search_ads_client.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apple-search-ads-client
3
- Version: 1.0.0
3
+ Version: 1.0.3
4
4
  Summary: A Python client for Apple Search Ads API v5
5
5
  Home-page: https://github.com/bickster/apple-search-ads-python
6
6
  Author: Bickster LLC
@@ -335,8 +335,7 @@ pytest tests --cov=apple_search_ads --cov-report=html
335
335
  pytest tests/test_integration.py -v
336
336
  ```
337
337
 
338
- For detailed testing documentation, see [TESTING.md](TESTING.md).
339
- For integration testing setup, see [docs/integration-testing.md](docs/integration-testing.md).
338
+ For detailed testing documentation, see [TESTING.md](TESTING.md).
340
339
 
341
340
  ## Contributing
342
341
 
@@ -286,8 +286,7 @@ pytest tests --cov=apple_search_ads --cov-report=html
286
286
  pytest tests/test_integration.py -v
287
287
  ```
288
288
 
289
- For detailed testing documentation, see [TESTING.md](TESTING.md).
290
- For integration testing setup, see [docs/integration-testing.md](docs/integration-testing.md).
289
+ For detailed testing documentation, see [TESTING.md](TESTING.md).
291
290
 
292
291
  ## Contributing
293
292
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "apple-search-ads-client"
7
- version = "1.0.0"
7
+ version = "1.0.3"
8
8
  authors = [
9
9
  {name = "Bickster LLC", email = "support@bickster.com"},
10
10
  ]
@@ -76,12 +76,12 @@ exclude = '''
76
76
 
77
77
  [tool.mypy]
78
78
  python_version = "3.8"
79
- warn_return_any = true
79
+ warn_return_any = false
80
80
  warn_unused_configs = true
81
81
  disallow_untyped_defs = true
82
82
  disallow_incomplete_defs = true
83
83
  check_untyped_defs = true
84
- disallow_untyped_decorators = true
84
+ disallow_untyped_decorators = false
85
85
  no_implicit_optional = true
86
86
  warn_redundant_casts = true
87
87
  warn_unused_ignores = true
@@ -89,6 +89,10 @@ warn_no_return = true
89
89
  warn_unreachable = true
90
90
  strict_equality = true
91
91
 
92
+ [[tool.mypy.overrides]]
93
+ module = "ratelimit"
94
+ ignore_missing_imports = true
95
+
92
96
  [tool.pytest.ini_options]
93
97
  testpaths = ["tests"]
94
98
  python_files = ["test_*.py", "*_test.py"]
@@ -12,7 +12,7 @@ with open("requirements.txt", "r", encoding="utf-8") as fh:
12
12
 
13
13
  setup(
14
14
  name="apple-search-ads-client",
15
- version="1.0.0",
15
+ version="1.0.3",
16
16
  author="Bickster LLC",
17
17
  author_email="support@bickster.com",
18
18
  description="A Python client for Apple Search Ads API v5",
@@ -10,4 +10,4 @@ __version__ = "0.1.0"
10
10
  __author__ = "Your Name"
11
11
  __email__ = "your.email@example.com"
12
12
 
13
- __all__ = ["AppleSearchAdsClient"]
13
+ __all__ = ["AppleSearchAdsClient"]