I'm using the module https://github.com/atlassian-api/atlassian-python-api to work on Bitbucket server with python. In their doc, they show a simple way to authenticate:
from atlassian import Bitbucket
bitbucket = Bitbucket(
url='http://localhost:7990',
username='admin',
password='admin')
data = bitbucket.project_list()
print(data)
However, I'm not getting what url I should specify. Can you please help me with a practical example? Also, on this doc https://atlassian-python-api.readthedocs.io/index.html there are listed alternative ways to authenticate, if you know any more recommended method please let me know.