stashy
stashy copied to clipboard
Python API client for the Atlassian Stash REST API
I'm trying to use stashy to authenticate users. Once they successfully authenticate, I would like to show their full name and use their email address to send any notifications. In...
This PR adds a basic capability to read `/users/` as well as their repositories without requiring admin access.
With an additional bool argument the different URL address is used to create blocker comments instead of normal comments Signed-off-by: Zanker Gerd (XC-DX/EPL)
Bumps [requests](https://github.com/psf/requests) from 2.26.0 to 2.28.1. Release notes Sourced from requests's releases. v2.28.1 2.28.1 (2022-06-29) Improvements Speed optimization in iter_content with transition to yield from. (#6170) Dependencies Added support for...
When I try to connect to my company Bitbucket server, I get errors with Stashy import stashy bitbucket = stashy.connect("company_bitbucket_url", "username", "password", verify=False) projects = bitbucket.projects.list() repos = bitbucket.repos.list() for...
Hi all Should we add "merges" option into repos.commits(self, until, since=None, path=None) function? Refer to https://docs.atlassian.com/bitbucket-server/rest/5.7.0/bitbucket-rest.html#idm45568367054656 Thanks
Bumps [decorator](https://github.com/micheles/decorator) from 5.0.9 to 5.1.1. Changelog Sourced from decorator's changelog. 5.1.1 (2022-01-07) Sangwoo Shim contributed a fix so that cythonized functions can be decorated. Brian McFee pointed out an...
Hi, I am trying to use the API but am getting a 501 error for anything repo-related thing I am trying. ``` ~/anaconda3/envs/py36/lib/python3.6/site-packages/decorator.py in fun(*args, **kw) 230 if not kwsyntax:...
Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen chunked=chunked, File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/urllib3/connectionpool.py", line 376, in _make_request self._validate_conn(conn) File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/urllib3/connectionpool.py", line 994, in _validate_conn conn.connect() File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/urllib3/connection.py", line 394,...
https://github.com/cosmin/stashy/blob/ae8c08991678c00d63ddb29fa7b26861e444229f/stashy/client.py#L73 In this specific line the code causes a 404 error, resource not found. This is because we have to add the extra 'core_api_path' string behind the '/rest/'. Then we...