Skip to main content

A Python wrapper for the Bitbucket Cloud REST API. This is not known to work with Bitbucket Server, previously known as Stash. To start working with this library, just do: pip install pybitbucket_fork

https://img.shields.io/pypi/v/pybitbucket_fork.svg https://img.shields.io/pypi/status/pybitbucket_fork.svg https://img.shields.io/pypi/pyversions/pybitbucket_fork.svg https://img.shields.io/pypi/l/pybitbucket_fork.svg https://img.shields.io/pypi/dm/pybitbucket_fork.svg

This is a fork of pybitbucket <https://bitbucket.org/atlassian/python-bitbucket>.

Adopting this library

Authenticate

The Authenticator subclasses prepare API requests with credentials. The simplest case is Anonymous which connects with no credentials. Anonymous can be used with an publicly available resources. For private resources, BasicAuthenticator uses email, username, and password as credentials. If your client application has it’s own mechanisms for working with these values, you can subclass the BasicAuthenticator to provide custom behavior.

To “plug in” your implementation or a standard one, just do:

bitbucket = Client(
    BasicAuthenticator(
        'your_username_here',
        'your_secret_password_here',
        'pybitbucket@mailinator.com'))

If you have enabled two-step verification, then you will need to use an app password with the BasicAuthenticator, not your regular user password. The OAuth2Authenticator is intended as an example and superclass. It may work for some command-line clients. Other clients like web applications will need an appropriate implementation of obtain_authorization() and perhaps may need to use a different grant types.

Find Things

For example, to find all your snippets:

for snip in Snippet.find_snippets_for_role(client=bitbucket):
    print(snip)

The method says “for role” but, if not provided, it will use the default of owner. Hence, all your snippets.

In general, finding things is done with a static find method on each type of resource. If the resource is plural, like “snippets” above, then the find method is a generator. You can use it with iterators or comprehensions. The resources you can find are:

  • user and team

  • repository and snippet

  • pull request and comment

  • commit and build status

  • hook and branch restriction

Create Things

For example, to create a new snippet:

snip = Snippet.create(
    files=open_files(["README.rst"]),
    payload=SnippetPayload().add_title("My New Snippet"),
    client=bitbucket)

The resources you can create are:

  • repository and snippet

  • pull request and comment

  • build status

  • hook and branch restriction

Examine Things

For example, to examine attributes on a snippet:

snip = Snippet.find_snippet_by_id("Xqoz8", bitbucket)
s = '\n'.join([
    "id          : {}".format(snip.id),
    "is_private  : {}".format(snip.is_private),
    "title       : {}".format(snip.title),
    "files       : {}".format(snip.filenames),
    "created_on  : {}".format(snip.created_on),
    "updated_on  : {}".format(snip.updated_on),
    "scm         : {}".format(snip.scm),
    ]) if snip else 'Snippet not found.'
print(s)

What attributes are available? You will not find them hardcoded in Python. They are populated dynamically from the JSON response. You can query the list via a convenience method:

snip = Snippet.find_snippet_by_id("Xqoz8", bitbucket)
print(snip.attributes())

Beware. The attributes for the same resource may change depending on how you got to it.

Navigate Relationships

For example, to list the commits for a snippet:

snip = Snippet.find_snippet_by_id("Xqoz8", bitbucket)
for commit in snip.commits():
    print(commit)

What relationships are available? You will not find them hardcoded in Python. They are populated dynamically from the JSON response. You can query the list via a convenience method:

snip = Snippet.find_snippet_by_id("Xqoz8", bitbucket)
print(snip.relationships())

Just like attributes, the relationships for the same resource may change depending on how you got to it. If you need the canonical resource with all attributes, use the self() relationship:

snips = Snippet.find_snippets_for_role(client=bitbucket)
one_snip = next(snips)    # one_snip has no files relationship in this context.
real_snip = next(one_snip.self())
print(real_snip.files)

Developing

Python Virtual Environment Setup (for OS X)

It’s not virtual like a virtual machine. More like a specialized container for a Python version and libraries.

  1. brew install python This installs the latest version of Python 2.7 with a version of setuptools and pip. Unfortunately, those versions of setuptools and pip seem to be broken.

  2. pip install --upgrade --no-use-wheel setuptools

  3. pip install --upgrade --no-use-wheel pip

  4. pip install virtualenvwrapper

Project Setup

  1. Clone the repository and set it as the current working directory.

  2. (Optional, but good practice) Create a virtual environment: mkvirtualenv python-bitbucket Once created, use workon python-bitbucket to restore the virtual environment.

  3. pip install -r requirements-dev.txt Loads required libraries into the virtual environment.

  4. paver test_all Run all the unit tests and analyze the source code.

TODO

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pybitbucket_fork-0.12.1.tar.gz (85.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pybitbucket_fork-0.12.1-py3.6.egg (76.7 kB view details)

Uploaded Egg

File details

Details for the file pybitbucket_fork-0.12.1.tar.gz.

File metadata

File hashes

Hashes for pybitbucket_fork-0.12.1.tar.gz
Algorithm Hash digest
SHA256 6a4049540ffaaa2d7ebc4f82af9fe96b7e703ea183f2a69cbbd4dc360d3cdf95
MD5 a98712de94ecde419afc9806af67864e
BLAKE2b-256 28bd092a262f5d99c71b91274bf2fab15961d2540c186c105df841af50c015cc

See more details on using hashes here.

File details

Details for the file pybitbucket_fork-0.12.1-py3.6.egg.

File metadata

File hashes

Hashes for pybitbucket_fork-0.12.1-py3.6.egg
Algorithm Hash digest
SHA256 21bf4d1b360eafd447901eb89b71905c52982de614e8fc0b682e384b55eb8f67
MD5 671641736370b836d3069bdbc9b765a7
BLAKE2b-256 d0f7500c8132488a9072703ec5e25a4f0b6af3564d6a0f7812af08a2d9d22fb7

See more details on using hashes here.

Release history Release notifications | RSS feed

0.12.2

2 files

This release

0.12.1 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page