It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
I am new to BitBucket Server and I have a lot of problems now with playing around its API.
I have searched on Internet how to use BitBucket Server API in Python and some told me to use Stash. However, when I try this in Python, I keep get 503 Service Unavailable.
import stashy
stash = stashy.connect("http://localhost:7990/stash", "USERNAME", "PASSWORD")
stash.admin.groups.list()
Traceback (most recent call last):
File "/PATH/foo.py", line 5, in <module>
stash.admin.groups.list()
File "/PATH/miniconda3/lib/python3.6/site-packages/stashy/helpers.py", line 124, in list
return list(self.all(filter))
File "/PATH/miniconda3/lib/python3.6/site-packages/stashy/helpers.py", line 74, in paginate
maybe_throw(response)
File "/PATH/miniconda3/lib/python3.6/site-packages/stashy/errors.py", line 50, in maybe_throw
raise e
stashy.errors.GenericException: Unknown error: 503(Service Unavailable)
Does anyone have any ideas on what's happening here? Many thanks.
BTW, my ultimate goal is to issue comments on pull request in BitBucket Server using Python.
Hi Jekyll, looks like you're using Stashy, which is a Python API client for the Atlassian Stash REST API created by a third party.
In their documentation it says that Stashy supports Python 2.6, 2.7 and 3.3 but it seems like you're using Python 3.6, can you confirm this?
If you're already following the documentation at https://pypi.python.org/pypi/stashy/0.3 and using the supported versions and you still get errors, I'd recommend you to contact the author directly at https://github.com/cosmin
Hope that helps!
Ana
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreBitbucket Pipelines helps me manage and automate a number of serverless deployments to AWS Lambda and this is how I do it. I'm building Node.js Lambda functions using node-lambda ...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.