Remove dependencies on httplib2 and google-auth-httplib2
See original GitHub issueThis library still has dependencies on httplib2
and google-auth-httplib2
. Most of the other Google Python libs have migrated away from these. Specifically, httplib2
has known thread-safety problems, and google-auth-httplib2
seems to have been developed as a backward compat package. Are there any plans for migrating these dependencies out?
Issue Analytics
- State:
- Created 3 years ago
- Reactions:8
- Comments:9 (3 by maintainers)
Top Results From Across the Web
"Credentials from google.auth specified, but httplib2 needs to ...
I have httplib2 in my project's lib folder. I also tried installing with pip install google-auth-httplib2 but the error is still there. Here...
Read more >google-auth-httplib2 - PyPI
This library provides an httplib2 transport for google-auth. Note. httplib has lots of problems such as lack of threadsafety and insecure usage of...
Read more >How to Install google-auth-httplib2 in Python? - Finxter
Type "cmd" in the search bar and hit Enter to open the command line. · Type “ pip install google-auth-httplib2 ” (without quotes)...
Read more >dev-python/google-auth-httplib2 Package Details · Gentoo Browse
dev-python / google-auth-httplib2 · Versions · USE flags · Runtime Dependencies · Depending packages · Change logs.
Read more >oauth2client deprecation — google-auth 1.30.0 documentation
httplib2 is largely unmaintained (although recently there are a small group of volunteers attempting to maintain it). Lack of clear purpose and goals:...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @hiranya911,
We’re looking at putting something related to this (moving off of httplib2) on our 2021 Q1 OKRs. We’ll update this issue when we have more concrete plans.
I think this issue is important. I am using Google Drive API with this library, but when I try to copy a folder which contains multiple files, it is super slow. Sometimes it takes about 5 minutes. So, I changed it to execute in parallel, but I needed to authenticate before every single request.
I hope geniuses in Google realize this issue and do something for this…