notionary 0.1.8__tar.gz → 0.1.9__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.
- {notionary-0.1.8 → notionary-0.1.9}/PKG-INFO +1 -1
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/notion_page_manager.py +1 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/util/page_id_utils.py +0 -2
- {notionary-0.1.8 → notionary-0.1.9}/notionary.egg-info/PKG-INFO +1 -1
- {notionary-0.1.8 → notionary-0.1.9}/setup.py +1 -1
- {notionary-0.1.8 → notionary-0.1.9}/LICENSE +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/README.md +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/__init__.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/__init__.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/bookmark_element.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/callout_element.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/code_block_element.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/column_element.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/divider_element.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/heading_element.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/image_element.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/list_element.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/notion_block_element.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/paragraph_element.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/qoute_element.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/table_element.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/text_inline_formatter.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/todo_lists.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/toggle_element.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/video_element.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/markdown_to_notion_converter.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/notion_to_markdown_converter.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/registry/block_element_registry.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/registry/block_element_registry_builder.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/database/database_info_service.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/database/models/page_result.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/database/notion_database_manager.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/database/notion_database_manager_factory.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/database/notion_database_schema.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/notion_client.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/content/page_content_manager.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/metadata/metadata_editor.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/metadata/notion_icon_manager.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/metadata/notion_page_cover_manager.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/properites/database_property_service.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/properites/page_property_manager.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/properites/property_formatter.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/properites/property_operation_result.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/properites/property_value_extractor.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/relations/notion_page_relation_manager.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/relations/notion_page_title_resolver.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/relations/page_database_relation.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/relations/relation_operation_result.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/exceptions/database_exceptions.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/exceptions/page_creation_exception.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/util/logging_mixin.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary/util/singleton_decorator.py +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary.egg-info/SOURCES.txt +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary.egg-info/dependency_links.txt +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary.egg-info/requires.txt +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/notionary.egg-info/top_level.txt +0 -0
- {notionary-0.1.8 → notionary-0.1.9}/setup.cfg +0 -0
@@ -24,8 +24,6 @@ def format_uuid(value: str) -> Optional[str]:
|
|
24
24
|
return extract_uuid(value)
|
25
25
|
|
26
26
|
def extract_and_validate_page_id(page_id: Optional[str], url: Optional[str]) -> str:
|
27
|
-
print("page_id", page_id)
|
28
|
-
print("=====")
|
29
27
|
if not page_id and not url:
|
30
28
|
raise ValueError("Either page_id or url must be provided")
|
31
29
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/code_block_element.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/notion_block_element.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/elements/text_inline_formatter.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/markdown_to_notion_converter.py
RENAMED
File without changes
|
{notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/notion_to_markdown_converter.py
RENAMED
File without changes
|
{notionary-0.1.8 → notionary-0.1.9}/notionary/core/converters/registry/block_element_registry.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{notionary-0.1.8 → notionary-0.1.9}/notionary/core/database/notion_database_manager_factory.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/metadata/notion_page_cover_manager.py
RENAMED
File without changes
|
{notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/properites/database_property_service.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/properites/property_operation_result.py
RENAMED
File without changes
|
{notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/properites/property_value_extractor.py
RENAMED
File without changes
|
{notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/relations/notion_page_relation_manager.py
RENAMED
File without changes
|
{notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/relations/notion_page_title_resolver.py
RENAMED
File without changes
|
File without changes
|
{notionary-0.1.8 → notionary-0.1.9}/notionary/core/page/relations/relation_operation_result.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|