![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
An implementation of HTTP Negotiate authentication (RFC 4559) for requests.
Negotiate authentication is commonly used to provide Kerberos authentication through GSSAPI.
Here's a trivial example:
import requests
import requests_negotiate
auth = requests_negotiate.HTTPNegotiateAuth()
response = requests.get('https://example.org/', auth=auth)
You'll need a valid Kerberos ticket - acquired using e.g. kinit
- for this to work.
You can instantiate an HTTPNegotiateAuth
with the following optional parameters:
service
- A Kerberos principal is generally composed of a service name (e.g. 'HTTP') and a hostname, separated by a slash ('/'). This lets you override the default service of 'HTTP'
.service_name
- Overrides the full service name (e.g. 'HTTP/example.org'
)negotiate_client_name
- Explicitly specify which client principal to authenticate as. Particularly useful when you're using a credential cache collection.FAQs
Negotiate authentication for the requests HTTP client library
We found that requests-negotiate demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.