We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d7fb30 commit 548598fCopy full SHA for 548598f
python_catalyst/__init__.py
@@ -1,6 +1,6 @@
1
"""PRODAFT CATALYST API client package."""
2
3
-__version__ = "0.1.0"
+__version__ = "0.1.5"
4
5
from .client import CatalystClient
6
from .enums import ObservableType, PostCategory, TLPLevel
python_catalyst/client.py
@@ -703,6 +703,9 @@ def create_report_from_member_content_with_references(
703
# )
704
# content = detailed_content.get("content", "")
705
content = summary or description
706
+ post_url = f"https://catalyst.prodaft.com/report/{content_id}" # noqa: E231
707
+ content += f"\n Access the full content at: {post_url}"
708
+
709
report = self.converter.create_report(
710
content_id=content_id,
711
title=title,
0 commit comments