notionary 0.2.28__py3-none-any.whl → 0.3.1__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.
- notionary/__init__.py +9 -2
- notionary/blocks/__init__.py +5 -0
- notionary/blocks/client.py +6 -4
- notionary/blocks/enums.py +28 -1
- notionary/blocks/rich_text/markdown_rich_text_converter.py +14 -0
- notionary/blocks/rich_text/models.py +14 -0
- notionary/blocks/rich_text/name_id_resolver/__init__.py +2 -0
- notionary/blocks/rich_text/name_id_resolver/data_source.py +32 -0
- notionary/blocks/rich_text/rich_text_markdown_converter.py +12 -0
- notionary/blocks/rich_text/rich_text_patterns.py +3 -0
- notionary/blocks/schemas.py +42 -10
- notionary/comments/__init__.py +5 -0
- notionary/comments/client.py +7 -10
- notionary/comments/factory.py +4 -6
- notionary/data_source/http/data_source_instance_client.py +14 -4
- notionary/data_source/properties/{models.py → schemas.py} +4 -8
- notionary/data_source/query/__init__.py +9 -0
- notionary/data_source/query/builder.py +38 -10
- notionary/data_source/query/schema.py +13 -10
- notionary/data_source/query/validator.py +11 -11
- notionary/data_source/schema/registry.py +104 -0
- notionary/data_source/schema/service.py +136 -0
- notionary/data_source/schemas.py +1 -1
- notionary/data_source/service.py +29 -103
- notionary/database/service.py +17 -60
- notionary/exceptions/__init__.py +5 -1
- notionary/exceptions/block_parsing.py +21 -0
- notionary/exceptions/search.py +24 -0
- notionary/http/client.py +9 -10
- notionary/http/models.py +5 -4
- notionary/page/content/factory.py +10 -3
- notionary/page/content/markdown/builder.py +76 -154
- notionary/page/content/markdown/nodes/__init__.py +0 -2
- notionary/page/content/markdown/nodes/audio.py +1 -1
- notionary/page/content/markdown/nodes/base.py +1 -1
- notionary/page/content/markdown/nodes/bookmark.py +1 -1
- notionary/page/content/markdown/nodes/breadcrumb.py +1 -1
- notionary/page/content/markdown/nodes/bulleted_list.py +31 -8
- notionary/page/content/markdown/nodes/callout.py +12 -10
- notionary/page/content/markdown/nodes/code.py +3 -5
- notionary/page/content/markdown/nodes/columns.py +39 -21
- notionary/page/content/markdown/nodes/container.py +64 -0
- notionary/page/content/markdown/nodes/divider.py +1 -1
- notionary/page/content/markdown/nodes/embed.py +1 -1
- notionary/page/content/markdown/nodes/equation.py +1 -1
- notionary/page/content/markdown/nodes/file.py +1 -1
- notionary/page/content/markdown/nodes/heading.py +26 -6
- notionary/page/content/markdown/nodes/image.py +1 -1
- notionary/page/content/markdown/nodes/mixins/__init__.py +5 -0
- notionary/page/content/markdown/nodes/mixins/caption.py +1 -1
- notionary/page/content/markdown/nodes/numbered_list.py +28 -5
- notionary/page/content/markdown/nodes/paragraph.py +1 -1
- notionary/page/content/markdown/nodes/pdf.py +1 -1
- notionary/page/content/markdown/nodes/quote.py +17 -5
- notionary/page/content/markdown/nodes/space.py +1 -1
- notionary/page/content/markdown/nodes/table.py +1 -1
- notionary/page/content/markdown/nodes/table_of_contents.py +1 -1
- notionary/page/content/markdown/nodes/todo.py +23 -7
- notionary/page/content/markdown/nodes/toggle.py +13 -14
- notionary/page/content/markdown/nodes/video.py +1 -1
- notionary/page/content/parser/context.py +98 -21
- notionary/page/content/parser/factory.py +1 -10
- notionary/page/content/parser/parsers/__init__.py +0 -2
- notionary/page/content/parser/parsers/audio.py +1 -1
- notionary/page/content/parser/parsers/base.py +1 -1
- notionary/page/content/parser/parsers/bookmark.py +1 -1
- notionary/page/content/parser/parsers/breadcrumb.py +1 -1
- notionary/page/content/parser/parsers/bulleted_list.py +52 -8
- notionary/page/content/parser/parsers/callout.py +55 -84
- notionary/page/content/parser/parsers/caption.py +1 -1
- notionary/page/content/parser/parsers/code.py +5 -5
- notionary/page/content/parser/parsers/column.py +23 -64
- notionary/page/content/parser/parsers/column_list.py +45 -45
- notionary/page/content/parser/parsers/divider.py +1 -1
- notionary/page/content/parser/parsers/embed.py +1 -1
- notionary/page/content/parser/parsers/equation.py +1 -1
- notionary/page/content/parser/parsers/file.py +1 -1
- notionary/page/content/parser/parsers/heading.py +65 -8
- notionary/page/content/parser/parsers/image.py +1 -1
- notionary/page/content/parser/parsers/numbered_list.py +52 -8
- notionary/page/content/parser/parsers/paragraph.py +3 -2
- notionary/page/content/parser/parsers/pdf.py +1 -1
- notionary/page/content/parser/parsers/quote.py +75 -15
- notionary/page/content/parser/parsers/space.py +14 -8
- notionary/page/content/parser/parsers/table.py +1 -1
- notionary/page/content/parser/parsers/table_of_contents.py +1 -1
- notionary/page/content/parser/parsers/todo.py +57 -19
- notionary/page/content/parser/parsers/toggle.py +17 -74
- notionary/page/content/parser/parsers/video.py +1 -1
- notionary/page/content/parser/post_processing/handlers/rich_text_length.py +6 -4
- notionary/page/content/parser/post_processing/handlers/rich_text_length_truncation.py +43 -22
- notionary/page/content/parser/pre_processsing/handlers/__init__.py +4 -0
- notionary/page/content/parser/pre_processsing/handlers/column_syntax.py +108 -54
- notionary/page/content/parser/pre_processsing/handlers/indentation.py +86 -0
- notionary/page/content/parser/pre_processsing/handlers/video_syntax.py +66 -0
- notionary/page/content/parser/pre_processsing/handlers/whitespace.py +14 -7
- notionary/page/content/parser/service.py +9 -0
- notionary/page/content/renderer/context.py +5 -2
- notionary/page/content/renderer/factory.py +2 -11
- notionary/page/content/renderer/post_processing/handlers/__init__.py +2 -2
- notionary/page/content/renderer/post_processing/handlers/numbered_list.py +156 -0
- notionary/page/content/renderer/renderers/__init__.py +0 -2
- notionary/page/content/renderer/renderers/base.py +1 -1
- notionary/page/content/renderer/renderers/bulleted_list.py +1 -1
- notionary/page/content/renderer/renderers/callout.py +6 -21
- notionary/page/content/renderer/renderers/captioned_block.py +1 -1
- notionary/page/content/renderer/renderers/column.py +28 -19
- notionary/page/content/renderer/renderers/column_list.py +24 -11
- notionary/page/content/renderer/renderers/heading.py +53 -27
- notionary/page/content/renderer/renderers/numbered_list.py +6 -5
- notionary/page/content/renderer/renderers/quote.py +1 -1
- notionary/page/content/renderer/renderers/todo.py +1 -1
- notionary/page/content/renderer/renderers/toggle.py +6 -7
- notionary/page/content/service.py +4 -1
- notionary/page/content/syntax/__init__.py +4 -0
- notionary/page/content/syntax/grammar.py +10 -0
- notionary/page/content/syntax/models.py +0 -2
- notionary/page/content/syntax/{service.py → registry.py} +31 -91
- notionary/page/properties/client.py +3 -3
- notionary/page/properties/models.py +3 -2
- notionary/page/properties/service.py +18 -3
- notionary/page/service.py +22 -80
- notionary/shared/entity/service.py +94 -36
- notionary/shared/models/cover.py +1 -1
- notionary/shared/typings.py +3 -0
- notionary/user/base.py +60 -11
- notionary/user/factory.py +0 -0
- notionary/utils/decorators.py +122 -0
- notionary/utils/fuzzy.py +18 -6
- notionary/utils/mixins/logging.py +38 -27
- notionary/utils/pagination.py +70 -16
- notionary/workspace/__init__.py +2 -1
- notionary/workspace/client.py +4 -2
- notionary/workspace/query/__init__.py +3 -0
- notionary/workspace/query/builder.py +25 -1
- notionary/workspace/query/models.py +12 -3
- notionary/workspace/query/service.py +57 -32
- notionary/workspace/service.py +31 -21
- {notionary-0.2.28.dist-info → notionary-0.3.1.dist-info}/METADATA +35 -105
- notionary-0.3.1.dist-info/RECORD +211 -0
- notionary/page/content/markdown/nodes/toggleable_heading.py +0 -35
- notionary/page/content/parser/parsers/toggleable_heading.py +0 -150
- notionary/page/content/renderer/post_processing/handlers/numbered_list_placeholdere.py +0 -62
- notionary/page/content/renderer/renderers/toggleable_heading.py +0 -78
- notionary/utils/async_retry.py +0 -39
- notionary/utils/singleton.py +0 -13
- notionary-0.2.28.dist-info/RECORD +0 -200
- {notionary-0.2.28.dist-info → notionary-0.3.1.dist-info}/WHEEL +0 -0
- {notionary-0.2.28.dist-info → notionary-0.3.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,200 +0,0 @@
|
|
|
1
|
-
notionary/__init__.py,sha256=YzkqPfuFc4pBBVARb7oPrmARZJfddgcZYTT2XTmQL44,358
|
|
2
|
-
notionary/blocks/client.py,sha256=qdoboI6362zc7zlaRA2wCc4HAnbS_nbHrtGYkGf77cc,5423
|
|
3
|
-
notionary/blocks/enums.py,sha256=FNRVKIlCuzZpBj4SThhbEpCwpJaVdiBVeJVWbDgRcsQ,4163
|
|
4
|
-
notionary/blocks/schemas.py,sha256=Hfq7teeDCDZv6WEaASdYvO3xg41UWiHkEWI5505IKhs,20567
|
|
5
|
-
notionary/blocks/rich_text/markdown_rich_text_converter.py,sha256=7wC9NYnHaA67YTP4hgLt153Xgqf1dwIrAq4TFCcL8LE,10888
|
|
6
|
-
notionary/blocks/rich_text/models.py,sha256=5xO0dOunH-7ujud6Af3t-2K9rZ32X2MVDA2FIc6vcww,4403
|
|
7
|
-
notionary/blocks/rich_text/rich_text_markdown_converter.py,sha256=Bdi3z9not_naN1MNnVlIv7KsyYA5u45nhFVX4V7KqdU,4796
|
|
8
|
-
notionary/blocks/rich_text/rich_text_patterns.py,sha256=fjxiL09veMorNRZpaAR9NM9OHs1-lFDgKDN6zVaYrac,1552
|
|
9
|
-
notionary/blocks/rich_text/name_id_resolver/__init__.py,sha256=0zAgtd0MhgnxKKrltAaFi8HOWeyyNSv2xTX5sO32tSU,288
|
|
10
|
-
notionary/blocks/rich_text/name_id_resolver/database.py,sha256=xrCnBUYfZJfDw9bSwUroWbqzK4N1P8eduBfKVug_KXg,1073
|
|
11
|
-
notionary/blocks/rich_text/name_id_resolver/page.py,sha256=DfjXyBLdkYl5UfoU2UGSllsRUM5XFp30H_OJwJdKdrI,1137
|
|
12
|
-
notionary/blocks/rich_text/name_id_resolver/person.py,sha256=lhDBhJXL0VRoOu8eJc-uOcqXB78os8V6VePagBboKs8,1301
|
|
13
|
-
notionary/blocks/rich_text/name_id_resolver/port.py,sha256=VtTavK6rHL-_qTIjFMsO25cgh_oUHNS-qEM_mONOaS0,259
|
|
14
|
-
notionary/comments/client.py,sha256=FNVLfYYeTIJp5lFvHKLmNejUS60aEZbm23sICJ4OH-U,2707
|
|
15
|
-
notionary/comments/factory.py,sha256=05zHia1RFW6rHC7PKEKMghQtpXJAobnxQnwc5XUqMsA,1572
|
|
16
|
-
notionary/comments/models.py,sha256=g-WTDSel8nhyRa60rN0U5FuccU0KVnsnJBi6Uqz7NVw,107
|
|
17
|
-
notionary/comments/schemas.py,sha256=AWDMeZbtOiaXfb45cxP5UhXOMxAqPYGetXzRWaJOdfQ,6003
|
|
18
|
-
notionary/comments/service.py,sha256=qRCwTTzjdSD2vgqCJCBPbSO3gyajyUD3JWV3qgiMFe0,1652
|
|
19
|
-
notionary/data_source/schemas.py,sha256=7WRXygB70RB3HqJzqO0u2Tx6llZTUDkXry1imXV-RvE,848
|
|
20
|
-
notionary/data_source/service.py,sha256=1qyzFgF6QN1SBxmoN-MblMjG8tpVGI0pNC1klsDXDoE,13624
|
|
21
|
-
notionary/data_source/http/client.py,sha256=wvaBOIT5OtGdE0QjbcDUsuDnZ0TZ-CyIifBHp6OYTqE,445
|
|
22
|
-
notionary/data_source/http/data_source_instance_client.py,sha256=h2BK1KeOYtCXUAvEbyc7elHgwab4C0eyorjMmoEwqv8,4545
|
|
23
|
-
notionary/data_source/properties/models.py,sha256=HRVo0-5pQN1MGHlYHwXX3IhvQUsAAr0gUqzA27RugrY,12190
|
|
24
|
-
notionary/data_source/query/builder.py,sha256=PaLqp6eM_vzB59MEE-6NB54kYFFz1PpDL6aTCOxzxNI,17565
|
|
25
|
-
notionary/data_source/query/resolver.py,sha256=zkV-ra2vvKdXAIcDO7zEzjvd_79YKLz6umczK6U8fpo,4370
|
|
26
|
-
notionary/data_source/query/schema.py,sha256=ZYucG6WF7fC95hMTKC9-uEcFEFcdjvLrBJLOkh9vKKo,9455
|
|
27
|
-
notionary/data_source/query/validator.py,sha256=NrNKaK5hltOIiIwL05vnXjYc9cwEeg8P8xDdDvTspiE,3311
|
|
28
|
-
notionary/database/client.py,sha256=oLl8iRPkNC7Fuu9tAhXg3iX5n6z_35Nvl-JN8i0aSd4,2213
|
|
29
|
-
notionary/database/database_metadata_update_client.py,sha256=LryhjGxDgLbRvuOUVvViZCogI0-Op4QkOlQUW4z8Tmg,905
|
|
30
|
-
notionary/database/schemas.py,sha256=RwhxDRa7v8IAtkXdJLu-gHclliClWmcIfa6xKYCUkZA,853
|
|
31
|
-
notionary/database/service.py,sha256=DnD29cY1WmexsRKXP8iTbOLE_FzpMRngaAssKCy8FFE,6208
|
|
32
|
-
notionary/exceptions/__init__.py,sha256=-nnXzkMDRUVcXbYlyrsoBBmYkrgh5OXous83_y3o1-E,1077
|
|
33
|
-
notionary/exceptions/api.py,sha256=5xCX5Xyaa8CMG2f4_fgkZQezPsSjqDrV27ByOY05meg,790
|
|
34
|
-
notionary/exceptions/base.py,sha256=vzMtgFalmpXVEOZDkyF0HqW--WBpq2rVJm-IG1f5vlY,44
|
|
35
|
-
notionary/exceptions/block_parsing.py,sha256=OFURoDbD2jLsast6Lw4fUCuE57AZUTaWWULYOdefJPw,643
|
|
36
|
-
notionary/exceptions/properties.py,sha256=xHAU83C-8fxC1ColcIkA7wyhbAalfdz6Y3JSlFJuhy0,2199
|
|
37
|
-
notionary/exceptions/search.py,sha256=_2Ouaj0tCUjDeVtU9vCQgM48O0LdpuLlXKshfpgu5Hg,1313
|
|
38
|
-
notionary/exceptions/data_source/__init__.py,sha256=Xs4I-zVxVQiVhfTclJX7GuGVO5fMYQIWqiqFnh_O67M,170
|
|
39
|
-
notionary/exceptions/data_source/builder.py,sha256=MjDacxvR4C0OiW739R0razjfukKGCXi-TI538ajwVUI,6015
|
|
40
|
-
notionary/exceptions/data_source/properties.py,sha256=WrudbojMa_ktCXvpe0OwegqI-PCUMdi0rTf7-VWqYHo,1236
|
|
41
|
-
notionary/file_upload/client.py,sha256=TVmtMi5iBrgUFLDb7emCwUetmfbTpVFFTnurJ-qU_gw,8384
|
|
42
|
-
notionary/file_upload/models.py,sha256=7a82S1c1PySTulyKJjrOQ-i986W8d3FbCkyGkyUumYc,1738
|
|
43
|
-
notionary/file_upload/service.py,sha256=WcqEE2OfZQ8EhYQWHKzy-Usnd8KzVI3M-1UFWJbJco8,12701
|
|
44
|
-
notionary/http/client.py,sha256=78BltIRfhK1zmvm3UvX7vwwDLrDD-nHt8BYgfGKmoUk,7793
|
|
45
|
-
notionary/http/models.py,sha256=iLtZQ6q5omiC2ZUsQkWZxxfJ_k0nqVlVyB1vlRYHDmg,1345
|
|
46
|
-
notionary/page/page_context.py,sha256=dMxGuzNerfcfy6boRPrcEwxCsuNNeFwzQZg-BdeDgec,1506
|
|
47
|
-
notionary/page/page_http_client.py,sha256=YQdXkfMGu2wuJpALJBIsKKwoHv316n_sMjne-iqJYHc,445
|
|
48
|
-
notionary/page/page_metadata_update_client.py,sha256=jJc3SMFnt98YBAb9ie_OxQBXAiXpeCzslOcRRRGwVks,865
|
|
49
|
-
notionary/page/schemas.py,sha256=rEq1TSEGft8Y1P4ATcpYfxk7h_T7bLRxA2__dA2HJzQ,388
|
|
50
|
-
notionary/page/service.py,sha256=It8pEh9og3UqMNgKhYEnnUL7fWHsdTNGa35mlhZghyg,8531
|
|
51
|
-
notionary/page/blocks/client.py,sha256=2ukLeaYdFJCGzpQr-3eIZRFG2potXS-3MdKLoRha9bc,19
|
|
52
|
-
notionary/page/content/factory.py,sha256=zlrgXN87N7xpmMuDgNnHloG9o9s6Yeg0w9vHtSQx_OM,3572
|
|
53
|
-
notionary/page/content/service.py,sha256=_AzBhhSYt57_y-4G0b0Wr-W1EZ3vv-rru17rabzw22I,2865
|
|
54
|
-
notionary/page/content/markdown/__init__.py,sha256=dhBiNIbiyG38eppjXC0fkZk3NVXzRGC8xqoE89jWHG0,80
|
|
55
|
-
notionary/page/content/markdown/builder.py,sha256=mFzUit6Xdm3oKNPXswTPZfSAW6s8IlRU4Po0YFqvdAo,11275
|
|
56
|
-
notionary/page/content/markdown/nodes/__init__.py,sha256=_7c_ZUR6ZP2Z_JBCVeIYM3mPYyqYyDf9mc64JFI0OL4,1830
|
|
57
|
-
notionary/page/content/markdown/nodes/audio.py,sha256=S_iiyj_Y9yW1aNjicJNdZD4tRd-GXAbcKSpgowVXX8Q,896
|
|
58
|
-
notionary/page/content/markdown/nodes/base.py,sha256=T171bl_f1-FuUay2ayKJDkP1JTBc29sDkZ4HIPUruso,356
|
|
59
|
-
notionary/page/content/markdown/nodes/bookmark.py,sha256=vosJHjzySv76b3Pb-Dwm1o71w41qCL216tMlQvKHTKY,974
|
|
60
|
-
notionary/page/content/markdown/nodes/breadcrumb.py,sha256=1NcfxNA-rVl0FOHQUTHlbnA2sTNDYYdNJYcc3GHECmA,531
|
|
61
|
-
notionary/page/content/markdown/nodes/bulleted_list.py,sha256=rlF_3UuVq4FrU-lMbArVKGX6EkxLtD_zoAMqUR8qwE8,700
|
|
62
|
-
notionary/page/content/markdown/nodes/callout.py,sha256=mb0MXyprHO1EqBuhbFkMR3Zx-noAzI1lZ5n__4Q3deQ,1187
|
|
63
|
-
notionary/page/content/markdown/nodes/code.py,sha256=HQEiu86UiVX6mu-lNP_VZ7ARYx7orADUavOZRdqYYtA,1135
|
|
64
|
-
notionary/page/content/markdown/nodes/columns.py,sha256=yZs50SFEbMgZqOB6Isj8y6au1SmES1AohIJxrzWgi6M,1967
|
|
65
|
-
notionary/page/content/markdown/nodes/divider.py,sha256=It3l1RrPZUJSAXrZXa0eaoTW69zKpKNHcH64AwvEY3k,519
|
|
66
|
-
notionary/page/content/markdown/nodes/embed.py,sha256=_lQA3r3sEze7I7s1xx0ChCEh0AYkRc_tawrhaQLriP0,896
|
|
67
|
-
notionary/page/content/markdown/nodes/equation.py,sha256=8Jxy-BHi7cS1rnhqS-mzAUxz30GFzNDgJa1NUqk04XY,772
|
|
68
|
-
notionary/page/content/markdown/nodes/file.py,sha256=90EEwrz7ZkC3VOq26dF6Y4xeF2unmRpXrfRb-WyHHac,891
|
|
69
|
-
notionary/page/content/markdown/nodes/heading.py,sha256=AchhMEC0rqlUxmQN-v77kzj5IlFl3ZKXBTeK5SJR5AA,646
|
|
70
|
-
notionary/page/content/markdown/nodes/image.py,sha256=7B4geMzI4MJl2ZJw-GKXgMkw-3zFl-6NZckrYJjJeYE,896
|
|
71
|
-
notionary/page/content/markdown/nodes/numbered_list.py,sha256=uA8JxzShApfoWF0FE0gBjhjpMMthaZzpor2h1M8aGg0,645
|
|
72
|
-
notionary/page/content/markdown/nodes/paragraph.py,sha256=0C95Eco7sJHyUfq8lIYBzEO9Y_s-gC7UaVVGTVHhZ94,460
|
|
73
|
-
notionary/page/content/markdown/nodes/pdf.py,sha256=IjrFWA3Z3_7lV3Pof4yB4RMxxnARirC08iok5-1pK4I,886
|
|
74
|
-
notionary/page/content/markdown/nodes/quote.py,sha256=b9QSVepghCDhVWjkORDyEEBgnpVfaIQdC4800kcRXkY,565
|
|
75
|
-
notionary/page/content/markdown/nodes/space.py,sha256=jXACgOuF4xLhiGs1Xp7tIS8RdiDtZgxLmZU5HSFXh9Q,511
|
|
76
|
-
notionary/page/content/markdown/nodes/table.py,sha256=_T5djT8-swI5bNsHzNTyCevwesvvjaCWIDJM-CuBtIY,1788
|
|
77
|
-
notionary/page/content/markdown/nodes/table_of_contents.py,sha256=zKM3QV7C69UDxTFIwcrnAOtzN1qkuqPuKzJ2vreZXrQ,529
|
|
78
|
-
notionary/page/content/markdown/nodes/todo.py,sha256=VHBcCAwiMajvnkMA8Rs-C4wWGQBZVT8K20vUEuvnLAo,903
|
|
79
|
-
notionary/page/content/markdown/nodes/toggle.py,sha256=RnUnQf6P061kxB3jZHxVCNCE-_xBbnzd4cemea-fdPY,1036
|
|
80
|
-
notionary/page/content/markdown/nodes/toggleable_heading.py,sha256=mxBuw6NGOOIUryO9X24eg1g-IzutSYpJxs66kvFRBco,1278
|
|
81
|
-
notionary/page/content/markdown/nodes/video.py,sha256=4sivxxlV4Wc_CjkpwgpGKyeWrK5z3Xa_ZJakKZAIadA,896
|
|
82
|
-
notionary/page/content/markdown/nodes/mixins/caption.py,sha256=oEbEmkwwMoIiravu7FaO02pRqGxGDI4Y-7H44qFqgSk,444
|
|
83
|
-
notionary/page/content/parser/context.py,sha256=6WcESDlxtIco8-nylF_qGM_fqOT-1NyM_ogNQ7DBtR0,1544
|
|
84
|
-
notionary/page/content/parser/factory.py,sha256=Pvg0txZDmRCzp6N5BC8fZds1oXy8dN0Ac8l3RSDnvno,8137
|
|
85
|
-
notionary/page/content/parser/service.py,sha256=JnqcReHIv_Q6gQXSFjEmdYDmDcdZpMpgMoTMYMGP-AI,2504
|
|
86
|
-
notionary/page/content/parser/parsers/__init__.py,sha256=YcMy9pnKduZI4H1yq1NyguMMVlATBS44vTDL9Ky692Q,1726
|
|
87
|
-
notionary/page/content/parser/parsers/audio.py,sha256=ZHzUr79Cr4d8rgEfPkRT8aEGPsTq_RKuHgeR93ew_7k,1335
|
|
88
|
-
notionary/page/content/parser/parsers/base.py,sha256=uAyVqgFe4bSnVHCuo4Lo6ql6Zi2aieJd_vr4nXexeYo,996
|
|
89
|
-
notionary/page/content/parser/parsers/bookmark.py,sha256=k0lQXcm4WcJFe2hrxmG277B8LCtLcMyvGM_Q-ijqJqo,1241
|
|
90
|
-
notionary/page/content/parser/parsers/breadcrumb.py,sha256=e0Zd9zg3nvyGdhBONfbGrzjHaQ5RNEhHpJrH5tBcihs,1198
|
|
91
|
-
notionary/page/content/parser/parsers/bulleted_list.py,sha256=qP91WKUyg5xbl8ICTYk8rkDjQH4oCq6H929o6ZzwD2Q,1654
|
|
92
|
-
notionary/page/content/parser/parsers/callout.py,sha256=lgse1Otos4Yl2E9CwdonMrNtQ82uXFKBK9HjbLg_aVk,5132
|
|
93
|
-
notionary/page/content/parser/parsers/caption.py,sha256=yd6ZVpKzVOxJzoT-S4nCuwjUiTSi_-hOXldflK8ajrs,2079
|
|
94
|
-
notionary/page/content/parser/parsers/code.py,sha256=kM0qfjTwFuFpdMQmUmtLgE8KYB9ZNYOqtd2n5DDFg4U,3529
|
|
95
|
-
notionary/page/content/parser/parsers/column.py,sha256=rrU3mT-QyhKTaGIXir7JvuLiRi9SzNo01Xu8ITrGwXU,4545
|
|
96
|
-
notionary/page/content/parser/parsers/column_list.py,sha256=g4i2lxwAtPCWND0sdRKx6GKV5WB4WJg7JT_gtPqWoXw,3352
|
|
97
|
-
notionary/page/content/parser/parsers/divider.py,sha256=gq1PdR6iZgoVvbyKNGLh-3blgjOa0F6_4Kn4uJfMK0g,1156
|
|
98
|
-
notionary/page/content/parser/parsers/embed.py,sha256=THzj9ofUWwK-lgo5Ov0IYkdeGVMdOkOJfauu4LwwQTc,1211
|
|
99
|
-
notionary/page/content/parser/parsers/equation.py,sha256=K9ZKEM64N_mIzD6mwlPRTiQf4LNRazMd5Xoj1zOJ8fc,2341
|
|
100
|
-
notionary/page/content/parser/parsers/file.py,sha256=vxuDZd5XlQJiQe4fKqU4CUKplV4iqi6uf_FOUMU_csQ,1357
|
|
101
|
-
notionary/page/content/parser/parsers/heading.py,sha256=SutNjgrp8oEN64CNkcsfi48L7weVMYsYeNA4N0INpZs,2076
|
|
102
|
-
notionary/page/content/parser/parsers/image.py,sha256=GF7hzx76uFeoKLzQKyuRxk-KiwYHIJtgn8dBfzTmspA,1365
|
|
103
|
-
notionary/page/content/parser/parsers/numbered_list.py,sha256=HcH4urqAN8CYLhjVa_4X4mfffKSbB5DbIUtaaOYZZtQ,1713
|
|
104
|
-
notionary/page/content/parser/parsers/paragraph.py,sha256=hy-iX7BA9fOp5pxldKIzomL3CUjtsmZNTTqpdlyVybE,1312
|
|
105
|
-
notionary/page/content/parser/parsers/pdf.py,sha256=9QwaAmfJVtV_vRuLx5mt0XFOKFdA_925ENCTCkXWXqI,1349
|
|
106
|
-
notionary/page/content/parser/parsers/quote.py,sha256=fDs_nVZyWpjLpGOJx44D3S9cjXE3gvDW7ikM06D7ti8,2481
|
|
107
|
-
notionary/page/content/parser/parsers/space.py,sha256=GpeNZ6b1fsThWS0zIDqZcUZnWav54QXLfuZKFZh1LnA,1282
|
|
108
|
-
notionary/page/content/parser/parsers/table.py,sha256=RE72rlaHK1KvrFj64SkZZKfUdXfooX_kZvBIW7Zd9Oo,5487
|
|
109
|
-
notionary/page/content/parser/parsers/table_of_contents.py,sha256=0HcMGtK_16vBuG2ecNDCywvH7NfHNlAMddZWop4vZFw,1213
|
|
110
|
-
notionary/page/content/parser/parsers/todo.py,sha256=vpzzRjDHImlntYviO-2oXCjv2vOfTNgMupcmfxNeusQ,2098
|
|
111
|
-
notionary/page/content/parser/parsers/toggle.py,sha256=Yn6qYlXe07MXhIy6ClHOQwFan6DREQeVHLeIVWRgYj0,5123
|
|
112
|
-
notionary/page/content/parser/parsers/toggleable_heading.py,sha256=ffqF33C8GbuiILAPtEm54wnpguGHQXeRP_IxPIYy5Qs,6129
|
|
113
|
-
notionary/page/content/parser/parsers/video.py,sha256=b9SJ9RSgXrmeM-haqo0HioCHVqaWBxzJyUoYrxr5vkU,1365
|
|
114
|
-
notionary/page/content/parser/post_processing/port.py,sha256=ZjTz9pIrk3R8Hy_NdRWmYTYrGScNyWyqgzcSUk_1BkI,248
|
|
115
|
-
notionary/page/content/parser/post_processing/service.py,sha256=Wp_30iCcqtB7qZdO__E6f_WjNKhkaOQML6q4dW33bJM,608
|
|
116
|
-
notionary/page/content/parser/post_processing/handlers/__init__.py,sha256=Io7Qw_bR6lDXCCuFWUZqR5QmmZwqKG-icE1hRoRivIk,144
|
|
117
|
-
notionary/page/content/parser/post_processing/handlers/rich_text_length.py,sha256=PQQ2tx0mkYhQ1Gw_Tm60ofVPaqvU1u1fvwAIM-hP6Zw,3478
|
|
118
|
-
notionary/page/content/parser/post_processing/handlers/rich_text_length_truncation.py,sha256=PQQ2tx0mkYhQ1Gw_Tm60ofVPaqvU1u1fvwAIM-hP6Zw,3478
|
|
119
|
-
notionary/page/content/parser/pre_processsing/service.py,sha256=moa5sHuNvzUQCVGe-4IvqrCEWtIaEMD6M7FMjLXENcM,507
|
|
120
|
-
notionary/page/content/parser/pre_processsing/handlers/__init__.py,sha256=cQX-LqiDdbFNWJaOA5UGQetTogYKxTGlXtLGc_P0gwk,236
|
|
121
|
-
notionary/page/content/parser/pre_processsing/handlers/column_syntax.py,sha256=v43YjZdGp9cZLLSEyN0el-e5WRp11b3ll28dHAj95OU,3409
|
|
122
|
-
notionary/page/content/parser/pre_processsing/handlers/port.py,sha256=Gm_GRGl1eGo1C8AM5CUfFdYAofe4Y0gAPScU2O1EcJo,153
|
|
123
|
-
notionary/page/content/parser/pre_processsing/handlers/whitespace.py,sha256=UEbMb2hL6VhY_Z7mFo8PqXFEYQXBSk0RXkBjhPirgmU,2299
|
|
124
|
-
notionary/page/content/renderer/context.py,sha256=NKhczcOnBN9D1ulMwpJ-AgZ0ehPJ0FiGhYN9ByXc1gE,1798
|
|
125
|
-
notionary/page/content/renderer/factory.py,sha256=uhnGee21DJWCywqqoY_8su7h8sMhaCGtthGfynaOqBQ,9340
|
|
126
|
-
notionary/page/content/renderer/service.py,sha256=llgxgijk6_rYGMLvYW9OdgcpLSk8xxg2mEELRK54CY0,1916
|
|
127
|
-
notionary/page/content/renderer/post_processing/port.py,sha256=VcfLsEyXd8EXMjYEf_uTX0-iq5RThwGvE7mgUsL6b8s,154
|
|
128
|
-
notionary/page/content/renderer/post_processing/service.py,sha256=dCc6GRRDkT3NmVHBerBf_TZfNjCIRbS8NdLJhaDQQsA,511
|
|
129
|
-
notionary/page/content/renderer/post_processing/handlers/__init__.py,sha256=-7mABesdUQjAwZoQulUED25Bwklz02Fs_MnqyPKzuI8,159
|
|
130
|
-
notionary/page/content/renderer/post_processing/handlers/numbered_list_placeholdere.py,sha256=A9-cVBy7eOMwmbsU0r8TrnsRr2d6NljqVCWDtlncDbc,2308
|
|
131
|
-
notionary/page/content/renderer/renderers/__init__.py,sha256=JKARJjRgrlWewaeEexqfPH6u_qb2ta9M56XEjtBLOpU,1729
|
|
132
|
-
notionary/page/content/renderer/renderers/audio.py,sha256=WfmY672zKhvykazxXPgOdiC3_DXJixBIGMezdlQpzRg,943
|
|
133
|
-
notionary/page/content/renderer/renderers/base.py,sha256=ipTUDOehw6AXA3HKc-FpHHsyDRpgc95waGKiOvr1mK4,1079
|
|
134
|
-
notionary/page/content/renderer/renderers/bookmark.py,sha256=rpd1SBDNO2uoCCRynGGHeqgudMzDXXNra-hTt3vxJdY,815
|
|
135
|
-
notionary/page/content/renderer/renderers/breadcrumb.py,sha256=M_Qlu73LmSwcCzsF1IJywZIekzOVBP1rd8md51dvfq8,782
|
|
136
|
-
notionary/page/content/renderer/renderers/bulleted_list.py,sha256=f-9eonJOPgDVefxOGhKl6XGMqVnAooeMIHvwiQb_QAY,2023
|
|
137
|
-
notionary/page/content/renderer/renderers/callout.py,sha256=qoDKu1RDsDJrTB9sO5vU1TRfUaKeB7YjbT3STJ1K_Ag,2769
|
|
138
|
-
notionary/page/content/renderer/renderers/captioned_block.py,sha256=cSM-QGp8DJYs4QM2LWRZW7ZbQSNQfRalKLsjKr4gJfc,2235
|
|
139
|
-
notionary/page/content/renderer/renderers/code.py,sha256=0ZJpzr-1noVxGQLUyqHfhqv2cWPVAeLmOn-cKwSv-PA,1269
|
|
140
|
-
notionary/page/content/renderer/renderers/column.py,sha256=TM7R2-s-blgu_QJlYlxxPp663IwHZGjo_UkCSC5iNac,1594
|
|
141
|
-
notionary/page/content/renderer/renderers/column_list.py,sha256=uA3MVObvYltuiywnnEJ1m9kzr6S47Z3pm-10lWv9B-Y,1206
|
|
142
|
-
notionary/page/content/renderer/renderers/divider.py,sha256=S6XvueUgihBC5I5y7_WHWeULfUq3ydvGNC8Mz72nNwQ,796
|
|
143
|
-
notionary/page/content/renderer/renderers/embed.py,sha256=v5Ycztt4koB-uboAn0b9hrvkM0SohBSQMFw_z75_cGw,794
|
|
144
|
-
notionary/page/content/renderer/renderers/equation.py,sha256=lLZ82s2y_K_0avrp6eX8LLvWXTnPX_9kI6bwhGFKe-g,1363
|
|
145
|
-
notionary/page/content/renderer/renderers/fallback.py,sha256=R-w6k5N3EmTQ5ytSzPNykpNwm9tq3dW71Xffchj4qXA,918
|
|
146
|
-
notionary/page/content/renderer/renderers/file.py,sha256=sLwRbScAwNSiGyVhY1DVTvRAg7vOAZ7_BoouCCQI-ec,1136
|
|
147
|
-
notionary/page/content/renderer/renderers/heading.py,sha256=Dr6CF__c7sVrDwomcOaCSC-YYsq-YR4-i4ugmmMVZZ4,2655
|
|
148
|
-
notionary/page/content/renderer/renderers/image.py,sha256=zcdEvS_csy1YymWVof1wiKDWCBq0TnL5Ky6PY3sdDbk,943
|
|
149
|
-
notionary/page/content/renderer/renderers/numbered_list.py,sha256=5GVRwpEIRMfP6HU3yjz6fsDqrD0ctadoIjNxFrlYMrw,1702
|
|
150
|
-
notionary/page/content/renderer/renderers/paragraph.py,sha256=srwCP13H9V22wM1Ned0UODWmYrSYlcn4FJgoPb1B4fM,1620
|
|
151
|
-
notionary/page/content/renderer/renderers/pdf.py,sha256=USeqVEHYnxiiCi-IL8VEDdbaQ8EtbKSkSHzDPWeZVS0,923
|
|
152
|
-
notionary/page/content/renderer/renderers/quote.py,sha256=0qar1-RUtTV1Z2-p35vXXe8atfrmRJ3B0pFPN6rwmbo,1995
|
|
153
|
-
notionary/page/content/renderer/renderers/table.py,sha256=CqmV9ii6MVbd8YJvJ18HXBPWXEaSM0i2ufgKJIbJlCo,4619
|
|
154
|
-
notionary/page/content/renderer/renderers/table_of_contents.py,sha256=pWlkz-jQ2jviI-it0XxJQsZ0G5I2ZtxZkC7pBSWnRBg,988
|
|
155
|
-
notionary/page/content/renderer/renderers/table_row.py,sha256=Zs1yFsU4hKIZizg4rGo8THGZ0VKrb3KNUQOT9ehmzFk,623
|
|
156
|
-
notionary/page/content/renderer/renderers/todo.py,sha256=EmW5V30unQVSq0kc1Uvr2SL-FSJ91RF6VQ_hXCUNgI0,2145
|
|
157
|
-
notionary/page/content/renderer/renderers/toggle.py,sha256=01kMW35ositTf1JK5Q-tWv-wqaYv14ADqWoN96_LwoI,2096
|
|
158
|
-
notionary/page/content/renderer/renderers/toggleable_heading.py,sha256=KSo43cxm0kC_8ns4zSkPv0NB4vIY1l-nIZlACeIbr9I,3150
|
|
159
|
-
notionary/page/content/renderer/renderers/video.py,sha256=2pKJFFkJheRl-G4qaXIJTvPvwBrUqk11RqqYrly2ptI,943
|
|
160
|
-
notionary/page/content/syntax/models.py,sha256=NOmjz3cwlhIwSpIInkfrejzk_dUi6cd2vDtECwJhsU4,1897
|
|
161
|
-
notionary/page/content/syntax/service.py,sha256=kWg_E51VkX_e4CLgeVvN3B9_SGTc1UygVivLW64K9s4,17831
|
|
162
|
-
notionary/page/properties/client.py,sha256=KJgGc_LJ9vVn6836Y7UwECwPRKeX1uF0qI3PwMzoDuI,6730
|
|
163
|
-
notionary/page/properties/factory.py,sha256=YnVWZ98RGYpV9iEY4Ufk7InIoeP9vWwMn5sSvcbSQ2k,1248
|
|
164
|
-
notionary/page/properties/models.py,sha256=wkEjdpwDPIoEXzLxFVVaYPlSkLhdyWXNfWv_XlcIq1o,8823
|
|
165
|
-
notionary/page/properties/service.py,sha256=sM5Wb0nusR-4jhm70a04R115Vi8vIp111blDmWJfC7k,12627
|
|
166
|
-
notionary/shared/entity/client.py,sha256=knblCIKwUHgoxJ_z7QtrRES9E8P9keHQTvr6CMc69gA,1181
|
|
167
|
-
notionary/shared/entity/dto_parsers.py,sha256=yaADwtL9S6mlQzLSNlW71trL0E3FPBmykgI6wuLNKKU,2086
|
|
168
|
-
notionary/shared/entity/entity_metadata_update_client.py,sha256=MKNT6W4ZUVffdB1BzXBqcWuTqaaBBqZ7Q9cRLrynKOI,1769
|
|
169
|
-
notionary/shared/entity/schemas.py,sha256=-NDlmw3dWANFx2Nw_x1WKhtmp_PmcuzpJ2Tsxx7O23c,1132
|
|
170
|
-
notionary/shared/entity/service.py,sha256=8Q_mABjEGZvfGh3h5F0r6MGfoHUoWKWYSgGMPThjCF4,6089
|
|
171
|
-
notionary/shared/models/cover.py,sha256=JExK6GSy-dSJ0jcL0Ab3b27V5szd8MzDKLkeAGpLSvM,487
|
|
172
|
-
notionary/shared/models/file.py,sha256=kU_hiLHEQDirBDoKkIKutXlRTSv3-hRJRfaoW-1hGtA,442
|
|
173
|
-
notionary/shared/models/icon.py,sha256=f1NVijUb4B_HhcGA7GtVsS1izycb8u8R7A3uy5qAu0o,603
|
|
174
|
-
notionary/shared/models/parent.py,sha256=fptJhWHot35jN9IH9BhsXNMZfNClc8av1G2TR6SqRmY,888
|
|
175
|
-
notionary/shared/properties/type.py,sha256=04KNeWGzphJ2hN6AbVhfDfF89XxtSGzcmnatcPHkEQI,780
|
|
176
|
-
notionary/user/__init__.py,sha256=O1sa9EPnJKZgpEAARJhzgh0ULqmwB-JNIgoPUCwDGMo,111
|
|
177
|
-
notionary/user/base.py,sha256=XwlVFGU6zh5NtQYpxBKYbeyCEFIq3t65Sf9BQdket9g,2816
|
|
178
|
-
notionary/user/bot.py,sha256=G093TD2ZNxwtKpCqKreHxGDa7jsBsAGq8yEqfR3nIT0,2585
|
|
179
|
-
notionary/user/client.py,sha256=CDevJlHfNnrfPE2OaaLWXeNro72J4ezCfwgdM_SJeAg,1410
|
|
180
|
-
notionary/user/person.py,sha256=8w0xMNVLen8xx2DSff-3Y9H7x9A0B3FLZUZJQZ_qe4g,1144
|
|
181
|
-
notionary/user/schemas.py,sha256=ZPKopqd6OepGFPnbK3B13PgNH6l4hLCGMxpk0eWe41s,1432
|
|
182
|
-
notionary/user/service.py,sha256=20DaDC4Eozfzr2sf0VP3z6sORRKmfb5PdtGG02rJews,2565
|
|
183
|
-
notionary/utils/async_retry.py,sha256=pkkBZvdX7MYB9vCv0OUgLGpkeAfJjmblnvsO4CMH0yM,1200
|
|
184
|
-
notionary/utils/date.py,sha256=HPwqmZoylTFKkyI8q4BJXT3q9B39nE55uVZAyG4JnDw,1729
|
|
185
|
-
notionary/utils/fuzzy.py,sha256=nUo5c0R7VMBacQihK6pwh6JT2irfGRN2rEny-1Ohqas,1544
|
|
186
|
-
notionary/utils/pagination.py,sha256=-G6zDgZJRZwMLdepQUB9wDeZuhV5ZwPvmvUiHqLY4SE,1367
|
|
187
|
-
notionary/utils/singleton.py,sha256=eNUWTVwOs0k5WDbXZ78nKJibGSrvhoNwsXHWS_KiLhk,321
|
|
188
|
-
notionary/utils/uuid_utils.py,sha256=ygTQdiKmdtyb2iY7d9kuYbo8uGSeuhiHH2PhUza6ZUw,579
|
|
189
|
-
notionary/utils/mixins/logging.py,sha256=udd-5VlAwGZSexX-P2Kq0CQd6iVnz1RnwoiHgjbDkw4,1355
|
|
190
|
-
notionary/workspace/__init__.py,sha256=hfC3MNMGKlxRsTBgtE0ORz91mgRPRXY4mCKEtinYGRU,71
|
|
191
|
-
notionary/workspace/client.py,sha256=a0yrTpBLQViZjBz2cEOmGyKC1FU1LiiNgLB8dA71KZ4,2294
|
|
192
|
-
notionary/workspace/schemas.py,sha256=uITRJpqHZD7LF7wOqZ6Cdx51a4Uk9rWZ110ib9EbIrA,562
|
|
193
|
-
notionary/workspace/service.py,sha256=7OM8GCYHwNYfaNxKHfSBZKelEeVMHbl0I8x2uQzEO8s,4524
|
|
194
|
-
notionary/workspace/query/builder.py,sha256=H2n9x7HKf5KG3wavugr-W5ouV8-atHQSk_CJkMBhJnY,1898
|
|
195
|
-
notionary/workspace/query/models.py,sha256=H9EwWObHR84GocMo_8HlYhUbAacmDw8fCYjHZjI0e94,1708
|
|
196
|
-
notionary/workspace/query/service.py,sha256=Ul2Vlrb-CantrMfkGZ9VcKiigPz9bkOKSNpDRJHmOzE,4246
|
|
197
|
-
notionary-0.2.28.dist-info/METADATA,sha256=SrK8LWeojpnPrK8gm_8cKBaqqm8hmD9gYqMf_-sIaNI,9049
|
|
198
|
-
notionary-0.2.28.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
199
|
-
notionary-0.2.28.dist-info/licenses/LICENSE,sha256=FLNy3l12swSnCggq3zOW_3gh4uaZ12DGZL1tR6Bc5Sk,1102
|
|
200
|
-
notionary-0.2.28.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|