Compare commits

...

2 Commits

Author SHA1 Message Date
nemunaire af58391164 Prepare 0.2.0
continuous-integration/drone/tag Build is passing Details
2023-12-10 11:41:34 +01:00
nemunaire 3110840017 Fix use of API token, without login 2023-12-10 11:40:44 +01:00
3 changed files with 5 additions and 2 deletions

View File

@ -20,6 +20,9 @@ class HappyDomain:
self.baseurl = scheme + "://" + host + ":" + str(port) + baseurl
self.token = token
if self.token is not None:
self.session.headers.update({'Authorization': 'Bearer ' + self.token})
def login(self, username, password):
r = self.session.post(
self.baseurl + "/api/auth",

View File

@ -1,6 +1,6 @@
[project]
name = "happydomain"
version = "0.1.1"
version = "0.2.0"
authors = [
{ name="happyDomain's team", email="contact+pypi@happydomain.org" },
]

View File

@ -8,7 +8,7 @@ try:
except ImportError:
from distutils.core import setup
version = "0.1.0"
version = "0.2.0"
setup(
name = "happydomain",