notionary 0.1.12__py3-none-any.whl → 0.1.14__py3-none-any.whl

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 (57) hide show
  1. notionary/__init__.py +14 -10
  2. notionary/{core/database → database}/database_discovery.py +19 -17
  3. notionary/{core/database → database}/database_info_service.py +1 -1
  4. notionary/{core/database/notion_database_manager.py → database/notion_database.py} +13 -14
  5. notionary/{core/database/notion_database_manager_factory.py → database/notion_database_factory.py} +8 -12
  6. notionary/{core/converters/elements → elements}/audio_element.py +1 -1
  7. notionary/{core/converters/registry → elements}/block_element_registry.py +2 -5
  8. notionary/elements/block_element_registry_builder.py +401 -0
  9. notionary/{core/converters/elements → elements}/bookmark_element.py +1 -1
  10. notionary/{core/converters/elements → elements}/callout_element.py +2 -2
  11. notionary/{core/converters/elements → elements}/code_block_element.py +1 -1
  12. notionary/{core/converters/elements → elements}/column_element.py +1 -1
  13. notionary/{core/converters/elements → elements}/divider_element.py +1 -1
  14. notionary/{core/converters/elements → elements}/embed_element.py +1 -1
  15. notionary/{core/converters/elements → elements}/heading_element.py +2 -2
  16. notionary/{core/converters/elements → elements}/image_element.py +1 -1
  17. notionary/{core/converters/elements → elements}/list_element.py +2 -2
  18. notionary/elements/mention_element.py +135 -0
  19. notionary/{core/converters/elements → elements}/paragraph_element.py +2 -2
  20. notionary/{core/converters/elements → elements}/qoute_element.py +1 -1
  21. notionary/{core/converters/elements → elements}/table_element.py +2 -2
  22. notionary/{core/converters/elements → elements}/todo_lists.py +2 -2
  23. notionary/{core/converters/elements → elements}/toggle_element.py +1 -6
  24. notionary/{core/converters/elements → elements}/video_element.py +1 -1
  25. notionary/{core/notion_client.py → notion_client.py} +0 -1
  26. notionary/{core/page → page}/content/page_content_manager.py +7 -8
  27. notionary/{core/converters → page}/markdown_to_notion_converter.py +2 -4
  28. notionary/{core/page → page}/metadata/metadata_editor.py +2 -2
  29. notionary/{core/page → page}/metadata/notion_icon_manager.py +1 -1
  30. notionary/{core/page → page}/metadata/notion_page_cover_manager.py +1 -1
  31. notionary/page/notion_page.py +522 -0
  32. notionary/page/notion_page_factory.py +242 -0
  33. notionary/page/notion_to_markdown_converter.py +245 -0
  34. notionary/{core/page → page}/properites/database_property_service.py +1 -1
  35. notionary/{core/page → page}/properites/page_property_manager.py +7 -7
  36. notionary/{core/page → page}/relations/notion_page_relation_manager.py +3 -3
  37. notionary/{core/page → page}/relations/notion_page_title_resolver.py +1 -1
  38. notionary/{core/page → page}/relations/page_database_relation.py +1 -1
  39. notionary/util/page_id_utils.py +3 -1
  40. {notionary-0.1.12.dist-info → notionary-0.1.14.dist-info}/METADATA +1 -1
  41. notionary-0.1.14.dist-info/RECORD +56 -0
  42. notionary/core/converters/__init__.py +0 -50
  43. notionary/core/converters/notion_to_markdown_converter.py +0 -45
  44. notionary/core/converters/registry/block_element_registry_builder.py +0 -284
  45. notionary/core/page/notion_page_manager.py +0 -312
  46. notionary-0.1.12.dist-info/RECORD +0 -55
  47. /notionary/{core/database → database}/models/page_result.py +0 -0
  48. /notionary/{core/converters/elements → elements}/notion_block_element.py +0 -0
  49. /notionary/{core/converters/elements → elements}/text_inline_formatter.py +0 -0
  50. /notionary/{core/page → page}/content/notion_page_content_chunker.py +0 -0
  51. /notionary/{core/page → page}/properites/property_formatter.py +0 -0
  52. /notionary/{core/page → page}/properites/property_operation_result.py +0 -0
  53. /notionary/{core/page → page}/properites/property_value_extractor.py +0 -0
  54. /notionary/{core/page → page}/relations/relation_operation_result.py +0 -0
  55. {notionary-0.1.12.dist-info → notionary-0.1.14.dist-info}/WHEEL +0 -0
  56. {notionary-0.1.12.dist-info → notionary-0.1.14.dist-info}/licenses/LICENSE +0 -0
  57. {notionary-0.1.12.dist-info → notionary-0.1.14.dist-info}/top_level.txt +0 -0
@@ -1,55 +0,0 @@
1
- notionary/__init__.py,sha256=19UodWJsuHVSQBFZ5rFBnsSPznz22GTy2XYLIldL7-Q,730
2
- notionary/core/notion_client.py,sha256=VdIE1TSEZTy2BhR7Hnx_McndvQYxlu-aJN_7LeDpXgY,4497
3
- notionary/core/converters/__init__.py,sha256=GOUehJbe4BKHtec1MqL1YGu3AX8zFtkwSZfhYkY5-P0,1798
4
- notionary/core/converters/markdown_to_notion_converter.py,sha256=u2mjshWiiLRVHYrdcXh7fdVMDwWMQLq5LKtvDmX_IWo,15110
5
- notionary/core/converters/notion_to_markdown_converter.py,sha256=c8GyWX8-UrNfRDk7OOBKbSEb5qOwljUCwI6g5risO2c,1287
6
- notionary/core/converters/elements/audio_element.py,sha256=as8X3EKRn5YIZQph60UdSdnrYQWDCCknvuQ4D3vr8B4,5605
7
- notionary/core/converters/elements/bookmark_element.py,sha256=bpHobkGnyBGDAJK5vY9R3Ntl4GiRSF-EyyA31aq2O3E,8593
8
- notionary/core/converters/elements/callout_element.py,sha256=rkDoXikjIl-zU3GLawSXgRunBJGLnEvin9zIlCgW4TY,5964
9
- notionary/core/converters/elements/code_block_element.py,sha256=G1iGMsGSK5KPSk-tA8TsPs9XNU9ydjYfOVnjIvdZG74,5189
10
- notionary/core/converters/elements/column_element.py,sha256=ZwQsLBEownVJnzyv-GfNjvzJhAfKz9ncggqZUmZHF5A,10722
11
- notionary/core/converters/elements/divider_element.py,sha256=Ul0wXHY96qWL72iAvttRQMOoAGuASgwFwPraGnpUkX0,2792
12
- notionary/core/converters/elements/embed_element.py,sha256=AOFCAj5cR1mTg8scFh1GK3bmasSZLltp_xcrVZR3sOc,4784
13
- notionary/core/converters/elements/heading_element.py,sha256=BCBcpEO_UX92nzCclVHAjlOLFJ5zu9wDlAGbphesaOQ,2788
14
- notionary/core/converters/elements/image_element.py,sha256=uU3bY26LvJwD_CAXN11tqYt5Ed84gjUeHWnJmxvH07Y,4861
15
- notionary/core/converters/elements/list_element.py,sha256=lM9nVGVG3VtmjMkqxrBj71wiJITuRypwxORu4zghqAM,4878
16
- notionary/core/converters/elements/notion_block_element.py,sha256=lLRBDXhBeRaRzkbvdpYpr-U9nbkd62oVtqdSe-svT4c,1746
17
- notionary/core/converters/elements/paragraph_element.py,sha256=5YGZjcgs0QCvQZ2kF8WCtImbyq5BeMywmME1m3-NDdo,2766
18
- notionary/core/converters/elements/qoute_element.py,sha256=CZD1Fe_Lhxsv4mdAM_dr4tlWDjmZCU_5aSpLOFrxDcc,9057
19
- notionary/core/converters/elements/table_element.py,sha256=3V9bnNBdsslXZivQ0vpF4_rzrdyI3SWt3aYR814mOzA,11254
20
- notionary/core/converters/elements/text_inline_formatter.py,sha256=FE_Sq2cozpu5RVtMbnPq21gD06UjH3LMRYr3s16JKYo,10606
21
- notionary/core/converters/elements/todo_lists.py,sha256=wgY6YejURBQ5ESdVLZVIy9QKchS-x8odrmS8X4cC5Kc,4265
22
- notionary/core/converters/elements/toggle_element.py,sha256=17chs10njaMfhGeQblvy_JZA7gRMqLp7cXfipIdK3Jo,7635
23
- notionary/core/converters/elements/video_element.py,sha256=xrBLY3e_SgKNamItZkfPNMbNEh37Ftp4jWIV6nwV-ds,6047
24
- notionary/core/converters/registry/block_element_registry.py,sha256=MVL7SeUv5U2TzbqC5t9yDr1WQq7gOnQL2SnwSL-R478,8700
25
- notionary/core/converters/registry/block_element_registry_builder.py,sha256=D4GmIAdMoP7K1P78qlgN-GoDwtB_4dZTws049gtXQ5c,9457
26
- notionary/core/database/database_discovery.py,sha256=ViW3gcdujhmtwTa4HKv-bZOQXXbmBpZFLgzKT7vreXM,4625
27
- notionary/core/database/database_info_service.py,sha256=58k7om0UXP8w0jCJHewccG5UbOvELMBAbQvXOm7F1OM,1341
28
- notionary/core/database/notion_database_manager.py,sha256=7xVJiR-7Kh2Wwoz1vMiOP5vfmNw_PoidnDqmjkHLxGA,7355
29
- notionary/core/database/notion_database_manager_factory.py,sha256=bJ_9AbKJnb1g--reo36I8Tlbt_pST5kCmKwlqtPOpq4,6921
30
- notionary/core/database/models/page_result.py,sha256=Vmm5_oYpYAkIIJVoTd1ZZGloeC3cmFLMYP255mAmtaw,233
31
- notionary/core/page/notion_page_manager.py,sha256=S3dPKK7YQ2VzNeQxyewkpkoyfuAwPiwjM_5pT7N8xms,23903
32
- notionary/core/page/content/notion_page_content_chunker.py,sha256=xRks74Dqec-De6-AVTxMPnXs-MSJBzSm1HfJfaHiKr8,3330
33
- notionary/core/page/content/page_content_manager.py,sha256=5qzpUFqMkOOqKWA6i6bWnGqbQyvdaEet0eNyerfFWck,3987
34
- notionary/core/page/metadata/metadata_editor.py,sha256=VUF5rQIo7DBKU3-Noa_Qifj3KQofc5ZAUZCCruCfx3g,4959
35
- notionary/core/page/metadata/notion_icon_manager.py,sha256=4CVahnmlf4m7nw5xBt_VC2Zuy1-tdC6aeLtf3vsFnPU,1431
36
- notionary/core/page/metadata/notion_page_cover_manager.py,sha256=g36tCRpOYLTzX6b7vbyPsz1tclDW9lB6rUobDcstR5c,1722
37
- notionary/core/page/properites/database_property_service.py,sha256=OJSfcXHRP5XGiMILcuvrnBKBbqz0kquMZVwp2i-wBtQ,11575
38
- notionary/core/page/properites/page_property_manager.py,sha256=SZmk2RPjraUyPb9lz2tX7hY5Vunjd85pftAwMeTdeL8,6949
39
- notionary/core/page/properites/property_formatter.py,sha256=d_Nr5XQxgjB6VIS0u3ey14MOUKY416o_BvdXjbkUNAQ,3667
40
- notionary/core/page/properites/property_operation_result.py,sha256=PhxHJJxxG2BdDl7aswhWnMSmf9RQtoinKkRHDoqxwCs,3913
41
- notionary/core/page/properites/property_value_extractor.py,sha256=1BfyCYrFzfIUmNTozavrLTjG--6P6Dy2tkewf6rHHwQ,2353
42
- notionary/core/page/relations/notion_page_relation_manager.py,sha256=A5bdJj_8fckTuXEMscuEcPwRs6S___tBz06ISN3Qh4Y,12697
43
- notionary/core/page/relations/notion_page_title_resolver.py,sha256=AcwQyji8WRysERXYXTFpl-kIz1yBxI4QF4HOWOqQWug,1727
44
- notionary/core/page/relations/page_database_relation.py,sha256=lhcRzh2kWFgUYofxznWTgbA-CjOpJudhroaWmf4WEs4,2318
45
- notionary/core/page/relations/relation_operation_result.py,sha256=NDxBzGntOxc_89ti-HG8xDSqfY6PwyGHKHrrKbCzNjM,5010
46
- notionary/exceptions/database_exceptions.py,sha256=I-Tx6bYRLpi5pjGPtbT-Mqxvz3BFgYTiuZxknJeLxtI,2638
47
- notionary/exceptions/page_creation_exception.py,sha256=4v7IuZD6GsQLrqhDLriGjuG3ML638gAO53zDCrLePuU,281
48
- notionary/util/logging_mixin.py,sha256=fKsx9t90bwvL74ZX3dU-sXdC4TZCQyO6qU9I8txkw_U,1369
49
- notionary/util/page_id_utils.py,sha256=gMNhuD2qRZ7PT8MAxqPaTaM7dgT01H-YqNZjmJFbEDs,1359
50
- notionary/util/singleton_decorator.py,sha256=GTNMfIlVNRUVMw_c88xqd12-DcqZJjmyidN54yqiNVw,472
51
- notionary-0.1.12.dist-info/licenses/LICENSE,sha256=zOm3cRT1qD49eg7vgw95MI79rpUAZa1kRBFwL2FkAr8,1120
52
- notionary-0.1.12.dist-info/METADATA,sha256=FneQ0YUpzkxpWH05hySub93Q7Hzz3BeUzOubv90iWJg,6154
53
- notionary-0.1.12.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
54
- notionary-0.1.12.dist-info/top_level.txt,sha256=fhONa6BMHQXqthx5PanWGbPL0b8rdFqhrJKVLf_adSs,10
55
- notionary-0.1.12.dist-info/RECORD,,