Using urllib3 I can't figure out how to pass the id and app password. I can't use requests as this is an AWS Lambda function that does not support the requests package only urllib3. Does anyone know why I'm not able to download the repo?
Curl is easy
curl -u userid:appPassword https://bitbucket.org/userid/repo_name/get/main.zip --output repo_name.zip;
import urllib3
import shutil
appPassword='XXXXXXXXXXXX'
url = 'https://bitbucket.org/userid/repo_name/get/main.zip'
headers = urllib3.make_headers(basic_auth='userid:appPassword')
c = urllib3.PoolManager()
with c.request('GET',url, headers=headers, preload_content=False) as resp, open('main.zip', 'wb') as out_file:
shutil.copyfileobj(resp, out_file)
resp.release_conn()
@JERRY MCLAUGHLIN Hi. Thanks for your question.
Maybe this answer is not related to urllib3, but you can add requests to lambda.
Please check this article.
Regards, Igor.
Thank you for your reply. requests is no longer a part of the AWS SDK and I want to maintain concurrency for AWS support purposes. https://aws.amazon.com/blogs/compute/upcoming-changes-to-the-python-sdk-in-aws-lambda/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.