File size: 304 Bytes
56d74b6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # coding=utf-8
from atlassian import Bitbucket
bitbucket = Bitbucket(url="http://localhost:7990", username="admin", password="admin")
changelog = bitbucket.get_changelog(
project_key="DEMO",
repository_slug="example-repository",
ref_from="develop",
ref_to="master",
)
print(changelog)
|