mirror of
https://codeberg.org/reflect/reflect-client-python.git
synced 2025-09-14 09:33:41 +02:00
Compare commits
No commits in common. "master" and "1.1.1" have entirely different histories.
2 changed files with 3 additions and 3 deletions
|
@ -66,9 +66,9 @@ class Client:
|
||||||
"Content-Type": "application/json"
|
"Content-Type": "application/json"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Append Authorization header if API key is provided
|
# Append Authentication header if API key is provided
|
||||||
if (self._key):
|
if (self._key):
|
||||||
headers["Authorization"] = f"Bearer {self._key}"
|
headers["Authentication"] = f"Bearer {self._key}"
|
||||||
|
|
||||||
return headers
|
return headers
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = "reflect-client",
|
name = "reflect-client",
|
||||||
version = "1.1.2",
|
version = "1.1.1",
|
||||||
description = "Python library for communicating with an API built with Reflect over HTTP or UNIX sockets",
|
description = "Python library for communicating with an API built with Reflect over HTTP or UNIX sockets",
|
||||||
author = "Victor Westerlund",
|
author = "Victor Westerlund",
|
||||||
author_email = "victor.vesterlund@gmail.com",
|
author_email = "victor.vesterlund@gmail.com",
|
||||||
|
|
Loading…
Add table
Reference in a new issue