notionary 0.2.3__tar.gz → 0.2.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. {notionary-0.2.3 → notionary-0.2.5}/PKG-INFO +1 -1
  2. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/code_block_element.py +0 -8
  3. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/content/page_content_retriever.py +1 -0
  4. notionary-0.2.5/notionary/prompting/markdown_syntax_prompt_generator.py +111 -0
  5. {notionary-0.2.3 → notionary-0.2.5}/notionary.egg-info/PKG-INFO +1 -1
  6. {notionary-0.2.3 → notionary-0.2.5}/setup.py +1 -1
  7. notionary-0.2.3/notionary/prompting/markdown_syntax_prompt_generator.py +0 -97
  8. {notionary-0.2.3 → notionary-0.2.5}/LICENSE +0 -0
  9. {notionary-0.2.3 → notionary-0.2.5}/README.md +0 -0
  10. {notionary-0.2.3 → notionary-0.2.5}/notionary/__init__.py +0 -0
  11. {notionary-0.2.3 → notionary-0.2.5}/notionary/database/database_discovery.py +0 -0
  12. {notionary-0.2.3 → notionary-0.2.5}/notionary/database/models/page_result.py +0 -0
  13. {notionary-0.2.3 → notionary-0.2.5}/notionary/database/notion_database.py +0 -0
  14. {notionary-0.2.3 → notionary-0.2.5}/notionary/database/notion_database_factory.py +0 -0
  15. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/audio_element.py +0 -0
  16. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/bookmark_element.py +0 -0
  17. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/bulleted_list_element.py +0 -0
  18. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/callout_element.py +0 -0
  19. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/divider_element.py +0 -0
  20. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/embed_element.py +0 -0
  21. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/heading_element.py +0 -0
  22. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/image_element.py +0 -0
  23. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/mention_element.py +0 -0
  24. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/notion_block_element.py +0 -0
  25. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/numbered_list_element.py +0 -0
  26. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/paragraph_element.py +0 -0
  27. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/qoute_element.py +0 -0
  28. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/registry/block_registry.py +0 -0
  29. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/registry/block_registry_builder.py +0 -0
  30. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/table_element.py +0 -0
  31. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/text_inline_formatter.py +0 -0
  32. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/todo_element.py +0 -0
  33. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/toggle_element.py +0 -0
  34. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/toggleable_heading_element.py +0 -0
  35. {notionary-0.2.3 → notionary-0.2.5}/notionary/elements/video_element.py +0 -0
  36. {notionary-0.2.3 → notionary-0.2.5}/notionary/exceptions/database_exceptions.py +0 -0
  37. {notionary-0.2.3 → notionary-0.2.5}/notionary/exceptions/page_creation_exception.py +0 -0
  38. {notionary-0.2.3 → notionary-0.2.5}/notionary/models/notion_block_response.py +0 -0
  39. {notionary-0.2.3 → notionary-0.2.5}/notionary/models/notion_database_response.py +0 -0
  40. {notionary-0.2.3 → notionary-0.2.5}/notionary/models/notion_page_response.py +0 -0
  41. {notionary-0.2.3 → notionary-0.2.5}/notionary/notion_client.py +0 -0
  42. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/content/notion_page_content_chunker.py +0 -0
  43. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/content/page_content_writer.py +0 -0
  44. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/markdown_to_notion_converter.py +0 -0
  45. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/metadata/metadata_editor.py +0 -0
  46. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/metadata/notion_icon_manager.py +0 -0
  47. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/metadata/notion_page_cover_manager.py +0 -0
  48. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/notion_page.py +0 -0
  49. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/notion_page_factory.py +0 -0
  50. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/notion_to_markdown_converter.py +0 -0
  51. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/properites/database_property_service.py +0 -0
  52. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/properites/page_property_manager.py +0 -0
  53. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/properites/property_formatter.py +0 -0
  54. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/properites/property_value_extractor.py +0 -0
  55. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/relations/notion_page_relation_manager.py +0 -0
  56. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/relations/notion_page_title_resolver.py +0 -0
  57. {notionary-0.2.3 → notionary-0.2.5}/notionary/page/relations/page_database_relation.py +0 -0
  58. {notionary-0.2.3 → notionary-0.2.5}/notionary/prompting/element_prompt_content.py +0 -0
  59. {notionary-0.2.3 → notionary-0.2.5}/notionary/util/logging_mixin.py +0 -0
  60. {notionary-0.2.3 → notionary-0.2.5}/notionary/util/page_id_utils.py +0 -0
  61. {notionary-0.2.3 → notionary-0.2.5}/notionary/util/warn_direct_constructor_usage.py +0 -0
  62. {notionary-0.2.3 → notionary-0.2.5}/notionary.egg-info/SOURCES.txt +0 -0
  63. {notionary-0.2.3 → notionary-0.2.5}/notionary.egg-info/dependency_links.txt +0 -0
  64. {notionary-0.2.3 → notionary-0.2.5}/notionary.egg-info/requires.txt +0 -0
  65. {notionary-0.2.3 → notionary-0.2.5}/notionary.egg-info/top_level.txt +0 -0
  66. {notionary-0.2.3 → notionary-0.2.5}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: notionary
3
- Version: 0.2.3
3
+ Version: 0.2.5
4
4
  Summary: A toolkit to convert between Markdown and Notion blocks
5
5
  Home-page: https://github.com/mathisarends/notionary
6
6
  Author: Mathis Arends
@@ -114,14 +114,6 @@ class CodeBlockElement(NotionBlockElement):
114
114
  {
115
115
  "type": "text",
116
116
  "text": {"content": content},
117
- "annotations": {
118
- "bold": False,
119
- "italic": False,
120
- "strikethrough": False,
121
- "underline": False,
122
- "code": False,
123
- "color": "default",
124
- },
125
117
  "plain_text": content,
126
118
  }
127
119
  ],
@@ -25,6 +25,7 @@ class PageContentRetriever(LoggingMixin):
25
25
 
26
26
  async def get_page_content(self) -> str:
27
27
  blocks = await self._get_page_blocks_with_children()
28
+ print("blocks", json.dumps(blocks, indent=2))
28
29
  return self._notion_to_markdown_converter.convert(blocks)
29
30
 
30
31
  async def _get_page_blocks_with_children(
@@ -0,0 +1,111 @@
1
+ from textwrap import dedent
2
+ from typing import Type, List
3
+ from notionary.elements.notion_block_element import NotionBlockElement
4
+
5
+
6
+ class MarkdownSyntaxPromptGenerator:
7
+ """
8
+ Generator for LLM system prompts that describe Notion-Markdown syntax.
9
+
10
+ This class extracts information about supported Markdown patterns
11
+ and formats them optimally for LLMs.
12
+ """
13
+
14
+ SYSTEM_PROMPT_TEMPLATE = dedent(
15
+ """
16
+ You are a knowledgeable assistant that helps users create content for Notion pages.
17
+ Notion supports standard Markdown with some special extensions for creating rich content.
18
+
19
+ # Understanding Notion Blocks
20
+
21
+ Notion documents are composed of individual blocks. Each block has a specific type (paragraph, heading, list item, etc.) and format.
22
+ The Markdown syntax you use directly maps to these Notion blocks.
23
+
24
+ {element_docs}
25
+
26
+ CRITICAL USAGE GUIDELINES:
27
+
28
+ 1. Do NOT start content with a level 1 heading (# Heading). In Notion, the page title is already displayed in the metadata, so starting with an H1 heading is redundant. Begin with H2 (## Heading) or lower for section headings.
29
+
30
+ 2. INLINE FORMATTING - VERY IMPORTANT:
31
+ ✅ You can use inline formatting within almost any block type.
32
+ ✅ Combine **bold**, _italic_, `code`, and other formatting as needed.
33
+ ✅ Format text to create visual hierarchy and emphasize important points.
34
+ ❌ DO NOT overuse formatting - be strategic with formatting for best readability.
35
+
36
+ 3. BACKTICK HANDLING - EXTREMELY IMPORTANT:
37
+ ❌ NEVER wrap entire content or responses in triple backticks (```).
38
+ ❌ DO NOT use triple backticks (```) for anything except CODE BLOCKS or DIAGRAMS.
39
+ ❌ DO NOT use triple backticks to mark or highlight regular text or examples.
40
+ ✅ USE triple backticks ONLY for actual programming code, pseudocode, or specialized notation.
41
+ ✅ For inline code, use single backticks (`code`).
42
+ ✅ When showing Markdown syntax examples, use inline code formatting with single backticks.
43
+
44
+ 4. BLOCK SEPARATION - IMPORTANT:
45
+ ✅ Use empty lines between different blocks to ensure proper rendering in Notion.
46
+ ✅ For major logical sections, use the spacer element (see documentation below).
47
+ ⚠️ While headings can sometimes work without an empty line before the following paragraph, including empty lines between all block types ensures consistent rendering.
48
+
49
+ 5. CONTENT FORMATTING - CRITICAL:
50
+ ❌ DO NOT include introductory phrases like "I understand that..." or "Here's the content...".
51
+ ✅ Provide ONLY the requested content directly without any prefacing text or meta-commentary.
52
+ ✅ Generate just the content itself, formatted according to these guidelines."""
53
+ )
54
+
55
+ @staticmethod
56
+ def generate_element_doc(element_class: Type[NotionBlockElement]) -> str:
57
+ """
58
+ Generates documentation for a specific NotionBlockElement in a compact format.
59
+ Uses the element's get_llm_prompt_content method if available.
60
+ """
61
+ class_name = element_class.__name__
62
+ element_name = class_name.replace("Element", "")
63
+
64
+ content = element_class.get_llm_prompt_content()
65
+
66
+ doc_parts = [
67
+ f"## {element_name}",
68
+ f"{content.description}",
69
+ f"**Syntax:** {content.syntax}",
70
+ ]
71
+
72
+ if content.examples:
73
+ doc_parts.append("**Examples:**")
74
+ for example in content.examples:
75
+ doc_parts.append(example)
76
+
77
+ doc_parts.append(f"**When to use:** {content.when_to_use}")
78
+
79
+ if content.avoid:
80
+ doc_parts.append(f"**Avoid:** {content.avoid}")
81
+
82
+ return "\n".join([part for part in doc_parts if part])
83
+
84
+ @classmethod
85
+ def generate_element_docs(
86
+ cls, element_classes: List[Type[NotionBlockElement]]
87
+ ) -> str:
88
+ """
89
+ Generates complete documentation for all provided element classes.
90
+ """
91
+ docs = [
92
+ "# Markdown Syntax for Notion Blocks",
93
+ "The following Markdown patterns are supported for creating Notion blocks:",
94
+ ]
95
+
96
+ # Generate docs for each element
97
+ for element in element_classes:
98
+ docs.append("\n" + cls.generate_element_doc(element))
99
+
100
+ return "\n".join(docs)
101
+
102
+ @classmethod
103
+ def generate_system_prompt(
104
+ cls,
105
+ element_classes: List[Type[NotionBlockElement]],
106
+ ) -> str:
107
+ """
108
+ Generates a complete system prompt for LLMs.
109
+ """
110
+ element_docs = cls.generate_element_docs(element_classes)
111
+ return cls.SYSTEM_PROMPT_TEMPLATE.format(element_docs=element_docs)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: notionary
3
- Version: 0.2.3
3
+ Version: 0.2.5
4
4
  Summary: A toolkit to convert between Markdown and Notion blocks
5
5
  Home-page: https://github.com/mathisarends/notionary
6
6
  Author: Mathis Arends
@@ -2,7 +2,7 @@ from setuptools import setup, find_namespace_packages
2
2
 
3
3
  setup(
4
4
  name="notionary",
5
- version="0.2.3",
5
+ version="0.2.5",
6
6
  packages=find_namespace_packages(include=["notionary*"]),
7
7
  install_requires=["httpx>=0.28.0", "python-dotenv>=1.1.0", "pydantic>=2.11.4"],
8
8
  author="Mathis Arends",
@@ -1,97 +0,0 @@
1
- import os
2
- from pathlib import Path
3
- from typing import Type, List
4
- from notionary.elements.notion_block_element import NotionBlockElement
5
-
6
-
7
- class MarkdownSyntaxPromptGenerator:
8
- """
9
- Generator for LLM system prompts that describe Notion-Markdown syntax.
10
-
11
- This class extracts information about supported Markdown patterns
12
- and formats them optimally for LLMs.
13
- """
14
-
15
- def __init__(self):
16
- # Lade das Template aus der Markdown-Datei
17
- self.SYSTEM_PROMPT_TEMPLATE = self._load_template()
18
-
19
- def _load_template(self) -> str:
20
- """
21
- Lädt das Prompt-Template aus der Markdown-Datei.
22
- """
23
- current_file = Path(__file__).resolve()
24
- current_dir = current_file.parent
25
- template_path = current_dir / "res" / "notion_syntax_prompt.md"
26
-
27
- try:
28
- with open(template_path, "r", encoding="utf-8") as file:
29
- return file.read()
30
- except FileNotFoundError:
31
- raise FileNotFoundError(
32
- f"Template file not found at {template_path}\n"
33
- f"Current working directory: {os.getcwd()}\n"
34
- f"Script location: {current_file}"
35
- )
36
- except Exception as e:
37
- raise RuntimeError(f"Error loading template file: {e}")
38
-
39
- @staticmethod
40
- def generate_element_doc(element_class: Type[NotionBlockElement]) -> str:
41
- """
42
- Generates documentation for a specific NotionBlockElement in a compact format.
43
- Uses the element's get_llm_prompt_content method if available.
44
- """
45
- class_name = element_class.__name__
46
- element_name = class_name.replace("Element", "")
47
-
48
- content = element_class.get_llm_prompt_content()
49
-
50
- doc_parts = [
51
- f"## {element_name}",
52
- f"{content.description}",
53
- f"**Syntax:** {content.syntax}",
54
- ]
55
-
56
- if content.examples:
57
- doc_parts.append("**Examples:**")
58
- for example in content.examples:
59
- doc_parts.append(example)
60
-
61
- doc_parts.append(f"**When to use:** {content.when_to_use}")
62
-
63
- if content.avoid:
64
- doc_parts.append(f"**Avoid:** {content.avoid}")
65
-
66
- return "\n".join([part for part in doc_parts if part])
67
-
68
- @classmethod
69
- def generate_element_docs(
70
- cls, element_classes: List[Type[NotionBlockElement]]
71
- ) -> str:
72
- """
73
- Generates complete documentation for all provided element classes.
74
- """
75
- docs = [
76
- "# Markdown Syntax for Notion Blocks",
77
- "The following Markdown patterns are supported for creating Notion blocks:",
78
- ]
79
-
80
- # Generate docs for each element
81
- for element in element_classes:
82
- docs.append("\n" + cls.generate_element_doc(element))
83
-
84
- return "\n".join(docs)
85
-
86
- @classmethod
87
- def generate_system_prompt(
88
- cls,
89
- element_classes: List[Type[NotionBlockElement]],
90
- ) -> str:
91
- """
92
- Generates a complete system prompt for LLMs.
93
- """
94
- # Erstelle eine Instanz, um das Template zu laden
95
- instance = cls()
96
- element_docs = cls.generate_element_docs(element_classes)
97
- return instance.SYSTEM_PROMPT_TEMPLATE.format(element_docs=element_docs)
File without changes
File without changes
File without changes