Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "python-catalyst"
version = "0.1.2"
version = "0.1.3"
description = "Python client for the PRODAFT CATALYST API"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down
3 changes: 3 additions & 0 deletions python_catalyst/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ def __init__(
),
"Content-Type": "application/json",
"Accept": "application/json",
"User-Agent": "python-catalyst-client/0.1.3",
}
)

Expand Down Expand Up @@ -269,6 +270,8 @@ def get_updated_member_contents(
f"Fetching member contents updated since: {since.isoformat()}"
)

if not self.catalyst_authenticated:
tlp = [TLPLevel.CLEAR] # Default to TLP:CLEAR for unauthenticated users
contents = self.get_all_member_contents(
category=category,
tlp=tlp,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="python-catalyst",
version="0.1.2",
version="0.1.3",
description="Python client for the PRODAFT CATALYST API",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down