Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 605 Bytes

File metadata and controls

42 lines (25 loc) · 605 Bytes

Introduction

Some python implementation of Atlassian Tools' API

 

Requirements

  • python 3.4+

 

Installation

  • Without specifying a branch (or use master):
pip install git+https://github.com/apilassian.git
  • Bypassing a branch:
pip install git+https://github.com/apilassian.git@develop

 

Example

Returns a list with all groups within Bitbucket

code:

from apilassian import bitbucket
from apilassian.session import Session

session = Session(url="https://myrepo.com/stash", username="foo", password="bar")

print(bitbucket.Group(session).all())