app-store-server-library-python
app-store-server-library-python copied to clipboard
Hi, this is a bit of an odd one. I think it’s something you might be fix, but I’m really not sure where the misconfiguration is. GitHub Dependabot links to...
Bumps [asn1](https://github.com/andrivet/python-asn1) from 2.8.0 to 3.1.0. Release notes Sourced from asn1's releases. Version 3.1.0 #291 - Add support for mypy. As a consequence, the previous module has been migrated to...
In Python 3.12, invalid escape sequence (such as `\s`) in normal string emits SyntaxWarning. ``` /Users/krepe90/github/krepe90/app-store-server-library-python/appstoreserverlibrary/receipt_utility.py:95: SyntaxWarning: invalid escape sequence '\s' matching_result = re.search('"purchase-info"\s+=\s+"([a-zA-Z0-9+/=]+)";', decoded_top_level) /Users/krepe90/github/krepe90/app-store-server-library-python/appstoreserverlibrary/receipt_utility.py:98: SyntaxWarning: invalid escape sequence...
- use `.get` instead of `in` and `[]` preventing extra dictionary lookup - use f-strings (since we support only 3.8+) reduce string concatenation overhead - use walrus operator (3.8+) remove...
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. Release notes Sourced from actions/checkout's releases. v6.0.0 What's Changed Update README to include Node.js 24 support details and requirements by @salmanmkc in actions/checkout#2248 Persist...
Resolves https://github.com/apple/app-store-server-library-python/issues/167
In order to properly implement rate-limiting per these docs: https://developer.apple.com/documentation/retentionmessaging/identifying-rate-limits We need to expose the response headers like this to access the `Retry-After` value ```python @define class APIException(Exception): http_status_code: int...