You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.