wordlift-sdk 2.9.0__py3-none-any.whl → 2.10.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.
- wordlift_sdk/__init__.py +1 -1
- wordlift_sdk/render/__init__.py +30 -0
- wordlift_sdk/render/browser.py +132 -0
- wordlift_sdk/render/cleanup_options.py +24 -0
- wordlift_sdk/render/html_renderer.py +86 -0
- wordlift_sdk/render/render_options.py +21 -0
- wordlift_sdk/render/rendered_page.py +13 -0
- wordlift_sdk/render/xhtml_cleaner.py +126 -0
- wordlift_sdk/structured_data/__init__.py +27 -0
- wordlift_sdk/structured_data/agent.py +49 -0
- wordlift_sdk/structured_data/agent_generator.py +12 -0
- wordlift_sdk/structured_data/batch.py +220 -0
- wordlift_sdk/structured_data/constants.py +1 -0
- wordlift_sdk/structured_data/dataset_resolver.py +32 -0
- wordlift_sdk/structured_data/debug.py +23 -0
- wordlift_sdk/structured_data/engine.py +2875 -0
- wordlift_sdk/structured_data/inputs.py +58 -0
- wordlift_sdk/structured_data/io.py +44 -0
- wordlift_sdk/structured_data/materialization.py +70 -0
- wordlift_sdk/structured_data/models.py +48 -0
- wordlift_sdk/structured_data/orchestrator.py +194 -0
- wordlift_sdk/structured_data/rendering.py +43 -0
- wordlift_sdk/structured_data/schema_guide.py +17 -0
- wordlift_sdk/structured_data/structured_data_engine.py +58 -0
- wordlift_sdk/structured_data/validation.py +31 -0
- wordlift_sdk/structured_data/yarrrml_pipeline.py +34 -0
- wordlift_sdk/url_source/__init__.py +7 -2
- wordlift_sdk/validation/__init__.py +7 -0
- wordlift_sdk/validation/generator.py +446 -0
- wordlift_sdk/validation/shacl.py +205 -0
- wordlift_sdk/validation/shacls/__init__.py +1 -0
- wordlift_sdk/validation/shacls/google-article.ttl +148 -0
- wordlift_sdk/validation/shacls/google-book.ttl +660 -0
- wordlift_sdk/validation/shacls/google-breadcrumb.ttl +33 -0
- wordlift_sdk/validation/shacls/google-carousel.ttl +37 -0
- wordlift_sdk/validation/shacls/google-carousels-beta.ttl +291 -0
- wordlift_sdk/validation/shacls/google-course.ttl +43 -0
- wordlift_sdk/validation/shacls/google-dataset.ttl +146 -0
- wordlift_sdk/validation/shacls/google-discussion-forum.ttl +247 -0
- wordlift_sdk/validation/shacls/google-education-qa.ttl +75 -0
- wordlift_sdk/validation/shacls/google-employer-rating.ttl +40 -0
- wordlift_sdk/validation/shacls/google-event.ttl +46 -0
- wordlift_sdk/validation/shacls/google-factcheck.ttl +86 -0
- wordlift_sdk/validation/shacls/google-faqpage.ttl +38 -0
- wordlift_sdk/validation/shacls/google-image-license-metadata.ttl +93 -0
- wordlift_sdk/validation/shacls/google-job-posting.ttl +74 -0
- wordlift_sdk/validation/shacls/google-local-business.ttl +483 -0
- wordlift_sdk/validation/shacls/google-loyalty-program.ttl +61 -0
- wordlift_sdk/validation/shacls/google-math-solvers.ttl +63 -0
- wordlift_sdk/validation/shacls/google-merchant-listing.ttl +435 -0
- wordlift_sdk/validation/shacls/google-movie.ttl +44 -0
- wordlift_sdk/validation/shacls/google-organization.ttl +180 -0
- wordlift_sdk/validation/shacls/google-paywalled-content.ttl +34 -0
- wordlift_sdk/validation/shacls/google-product-snippet.ttl +121 -0
- wordlift_sdk/validation/shacls/google-product-variants.ttl +64 -0
- wordlift_sdk/validation/shacls/google-profile-page.ttl +130 -0
- wordlift_sdk/validation/shacls/google-qapage.ttl +195 -0
- wordlift_sdk/validation/shacls/google-recipe.ttl +201 -0
- wordlift_sdk/validation/shacls/google-return-policy.ttl +122 -0
- wordlift_sdk/validation/shacls/google-review-snippet.ttl +87 -0
- wordlift_sdk/validation/shacls/google-shipping-policy.ttl +606 -0
- wordlift_sdk/validation/shacls/google-software-app.ttl +40 -0
- wordlift_sdk/validation/shacls/google-speakable.ttl +20 -0
- wordlift_sdk/validation/shacls/google-vacation-rental.ttl +278 -0
- wordlift_sdk/validation/shacls/google-video.ttl +149 -0
- wordlift_sdk/validation/shacls/schemaorg-grammar.ttl +20540 -0
- {wordlift_sdk-2.9.0.dist-info → wordlift_sdk-2.10.1.dist-info}/METADATA +1 -1
- {wordlift_sdk-2.9.0.dist-info → wordlift_sdk-2.10.1.dist-info}/RECORD +69 -5
- {wordlift_sdk-2.9.0.dist-info → wordlift_sdk-2.10.1.dist-info}/WHEEL +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
wordlift_sdk/__init__.py,sha256=
|
|
1
|
+
wordlift_sdk/__init__.py,sha256=ufb-eG1RquxgusF3_FupF1SsZx-oQC5_2hqwWzMoZEU,79
|
|
2
2
|
wordlift_sdk/client/__init__.py,sha256=-lCMSH8UmtjETZHaXwwjkk6ID3uVa64ryUZ-wlBVR9w,111
|
|
3
3
|
wordlift_sdk/client/client_configuration_factory.py,sha256=aDhiEYsxzKQUun3kFN_W7RJcfSbhGX9XeeKZPGeLfHo,799
|
|
4
4
|
wordlift_sdk/configuration/__init__.py,sha256=MOrZCRQCeeCae2rVcR9THy9yxK8n_Gpx1BobsDptbgQ,162
|
|
@@ -60,7 +60,32 @@ wordlift_sdk/protocol/graph/__init__.py,sha256=A1MUTCRR5o84pYvlPMZFXNxf5396SurHh
|
|
|
60
60
|
wordlift_sdk/protocol/graph/graph_queue.py,sha256=4q_uBSSC0Wv5bqOL-irQCPHIR4xm8HM2Z5ki1AKY8L4,2270
|
|
61
61
|
wordlift_sdk/protocol/load_override_class.py,sha256=mHsOL8u_uQpQ4GvK_Bvr1dtTY4t7IUZ7PjoUYT90GJA,866
|
|
62
62
|
wordlift_sdk/protocol/web_page_import_protocol.py,sha256=P5WU06fcUFvXO7Z2roU6A06e4r7LlerSVkHW7sQxMwY,577
|
|
63
|
-
wordlift_sdk/
|
|
63
|
+
wordlift_sdk/render/__init__.py,sha256=BfIL6kGO3XYdcKzegGN__sIBwxYQVzKksc9_VzxoyJw,746
|
|
64
|
+
wordlift_sdk/render/browser.py,sha256=GBTG6TxjcSDcNqW5-9zaNWNWj7K4-_2Qdr9xDRZn0ZA,4923
|
|
65
|
+
wordlift_sdk/render/cleanup_options.py,sha256=wmugNi1RecdguFQMdzpvH9KRRrlH4RorXodEFejJd1M,452
|
|
66
|
+
wordlift_sdk/render/html_renderer.py,sha256=2r73daLWLflM9JGqMR3-pPPlIT6CRD1OL-Pwc8v35Zs,2829
|
|
67
|
+
wordlift_sdk/render/render_options.py,sha256=jZQB0JyGGSHOPotK8RDKhnfg4WGIIc9YTnd4ArQfgZc,543
|
|
68
|
+
wordlift_sdk/render/rendered_page.py,sha256=YzGoXWL6LfhxuPv2n4h48OK6rfYvBASE1VYTIIUwToY,282
|
|
69
|
+
wordlift_sdk/render/xhtml_cleaner.py,sha256=llNL6lU-volpAulQH6V9R_x-g3O3QbXaT1M29hz9VoU,4603
|
|
70
|
+
wordlift_sdk/structured_data/__init__.py,sha256=u27a6UFHln9CywOVIESPQWw1SErWaPbUAObfydZ335I,832
|
|
71
|
+
wordlift_sdk/structured_data/agent.py,sha256=dnSj0LYRz0ivfx4ByBaE0yx0MG-Su5aKj76juCq50vM,1246
|
|
72
|
+
wordlift_sdk/structured_data/agent_generator.py,sha256=-EAsORhJQFIfCuuakaWqvfkzsoDfYrl4u-f6BW0mCBY,292
|
|
73
|
+
wordlift_sdk/structured_data/batch.py,sha256=CkAVx56m2Gt7tbqj7EKNHJBYImI_6npbAiUA585herY,9114
|
|
74
|
+
wordlift_sdk/structured_data/constants.py,sha256=p6i9suTX3_NZ7-f7dskaz4mwEEAuZFyexlzSOsRtsZU,45
|
|
75
|
+
wordlift_sdk/structured_data/dataset_resolver.py,sha256=5iyS9tjAc9tUhY8NkusXVMLkkzljPVHHAKhLnxGBXDo,913
|
|
76
|
+
wordlift_sdk/structured_data/debug.py,sha256=nFJIw4ZqfjxfEfNjXM8-SETMQmIRDs-tdJpzOoGqwOY,601
|
|
77
|
+
wordlift_sdk/structured_data/engine.py,sha256=1-ZNkFaaIOqnQCoPFFTeibu03xkQ7XUKYgUBrI6RrZ8,102773
|
|
78
|
+
wordlift_sdk/structured_data/inputs.py,sha256=_-RuL5xNYer2iCuSW7Tv0IoiQM2xp3yBZv9PUC_KDjU,1740
|
|
79
|
+
wordlift_sdk/structured_data/io.py,sha256=u12zwt-E1IFLEokIkJ4GF3lmy0vHLIR20NWsd_YSOQk,1343
|
|
80
|
+
wordlift_sdk/structured_data/materialization.py,sha256=fN1ahapJtUDjAlGsg5pYPBamuL5S2hiOBOJrALkRQ3Y,2034
|
|
81
|
+
wordlift_sdk/structured_data/models.py,sha256=sznqW57tuPpMevBXO7eO0SIGO6ocGa0rSFKSXOvmV1g,972
|
|
82
|
+
wordlift_sdk/structured_data/orchestrator.py,sha256=Cp0ofkRW3tSPtJ94jO-2l1okjp_BH_lnf-lYakp859U,6979
|
|
83
|
+
wordlift_sdk/structured_data/rendering.py,sha256=x-a_nGigEgcpEtGTeCTjK3N4qC3SHOl7eebWEq0mBXk,1376
|
|
84
|
+
wordlift_sdk/structured_data/schema_guide.py,sha256=WVMmiakXXTIc4y8Q_p3_blcalC0rkqK6RLrk7zAR0yk,477
|
|
85
|
+
wordlift_sdk/structured_data/structured_data_engine.py,sha256=0u6Jcmc2MXP6hwl0Oh8x5RPQvb_oySnwJkSS3uKIlho,2142
|
|
86
|
+
wordlift_sdk/structured_data/validation.py,sha256=NMwPUbM-hKvWZ7u_ezU9eObs9zaYqEmThBkhKFJfkEo,1018
|
|
87
|
+
wordlift_sdk/structured_data/yarrrml_pipeline.py,sha256=bze3nU1r0bOYNKjxLn5Tlrx1nO8Wc7oaRrwEkhjyTfQ,997
|
|
88
|
+
wordlift_sdk/url_source/__init__.py,sha256=VDrM1JoESAFGGYYH_nA5bacR-ozPEOBmfR-xgM9lm60,307
|
|
64
89
|
wordlift_sdk/url_source/google_sheets_url_source.py,sha256=tfBrPztpNi_J-i-akM6AFRiKyUw3SJHgloq759nIsVw,2020
|
|
65
90
|
wordlift_sdk/url_source/list_url_source.py,sha256=uhWFI_zF_id80JiEv_JbqC7HphkiXPDh0WgBNCid-v0,808
|
|
66
91
|
wordlift_sdk/url_source/new_or_changed_url_source.py,sha256=81ZEitfxxMof5-fcKuvTiEP3TFysNvFjka5qeO6MHh0,2129
|
|
@@ -77,6 +102,45 @@ wordlift_sdk/utils/delayed.py,sha256=uy-cQsLMprakx8CiQl6ZLL49bfYB1C6oQt4UObr5TwU
|
|
|
77
102
|
wordlift_sdk/utils/get_me.py,sha256=-mr0DscVWEDFvgBYtmgND3_gIuh2q7kfD-OiqrYwLJU,297
|
|
78
103
|
wordlift_sdk/utils/html_converter.py,sha256=MGdXQg2EAhI2K7CWtbIzZip08clVPUgL84Xt_xxa-h4,1945
|
|
79
104
|
wordlift_sdk/utils/import_url.py,sha256=KiUFkU4mRfd7YWFlLoz5bB13AgPURV8Km8H05LxevCI,1299
|
|
105
|
+
wordlift_sdk/validation/__init__.py,sha256=cR_8BggTFb6SYCFYGMESY12gYo0i8D6E8gMZcGwaPkw,203
|
|
106
|
+
wordlift_sdk/validation/generator.py,sha256=vdL1tT-TMK0Rdx88DuLVALrz1TU9wLnYXNxx4tdS518,14659
|
|
107
|
+
wordlift_sdk/validation/shacl.py,sha256=tWBde7KUMhW2ectmAP1cEBcsIBGQ3Z1sQrANESDU__M,6299
|
|
108
|
+
wordlift_sdk/validation/shacls/__init__.py,sha256=5YWoHfTB4SKFDKz3KXqFnDrxqDy-YACu0zIn_GkT6Mk,29
|
|
109
|
+
wordlift_sdk/validation/shacls/google-article.ttl,sha256=FpAu-0CZsmDb8hswN45YU6l0QPng6hqU-JX7VSDiUyU,3774
|
|
110
|
+
wordlift_sdk/validation/shacls/google-book.ttl,sha256=Tdfr9TNWTv_ttH2wFYHt20K4KaIaCJpcj_RXAWy2BYI,13517
|
|
111
|
+
wordlift_sdk/validation/shacls/google-breadcrumb.ttl,sha256=rCeUoTQ3OwtIMjW94oEno33xhHOsKv5tGc8Sr1zG5Og,807
|
|
112
|
+
wordlift_sdk/validation/shacls/google-carousel.ttl,sha256=5_8yUGidwsGqg7gjbLRCArfmZf6f78RRiGRJhuDEeN0,858
|
|
113
|
+
wordlift_sdk/validation/shacls/google-carousels-beta.ttl,sha256=TKevYHEaK1s0bZ1hr03TbcDpfD1nJcQpWFOQtEa5tro,7189
|
|
114
|
+
wordlift_sdk/validation/shacls/google-course.ttl,sha256=J3SEn5nVaeNIqTf3cp8WZYRSMR5Q6Scjds4a7mZsgqw,1010
|
|
115
|
+
wordlift_sdk/validation/shacls/google-dataset.ttl,sha256=-hdkj1umQNJduaRvSKhl9LZ5A6j7i0sJqhH7ZEbUX3U,3758
|
|
116
|
+
wordlift_sdk/validation/shacls/google-discussion-forum.ttl,sha256=YbIKCyguK_stBsjjJs8WD7l72wt1HsXYiLeWdhgTfSs,6086
|
|
117
|
+
wordlift_sdk/validation/shacls/google-education-qa.ttl,sha256=YrH1Xh4nP9gGjDhay8U1_h0r43WIC_43cRgD2goXekI,1814
|
|
118
|
+
wordlift_sdk/validation/shacls/google-employer-rating.ttl,sha256=Joclv8hp2NP86U8Ydpr8ZY2-7LmUyQ20pIXoLB2ZVYs,1086
|
|
119
|
+
wordlift_sdk/validation/shacls/google-event.ttl,sha256=SjGF4khM5fTfam172o6JZ3AqfVcA7PMC5c8_MLpbHjI,1166
|
|
120
|
+
wordlift_sdk/validation/shacls/google-factcheck.ttl,sha256=MM1Cbj0_iulpOw_xolhYnHRC7m1FHrhJJ9rkHV6yQzI,2102
|
|
121
|
+
wordlift_sdk/validation/shacls/google-faqpage.ttl,sha256=ZO8AUz4ZPe4sx2NXUgVX2awcWpcVkGXLhVdaWT6KekU,863
|
|
122
|
+
wordlift_sdk/validation/shacls/google-image-license-metadata.ttl,sha256=QhcEqtQPSuLqXce8XuGguBMnVbdbUb2aIs6k01U03qg,2410
|
|
123
|
+
wordlift_sdk/validation/shacls/google-job-posting.ttl,sha256=epJUcCMPsGEgV69Db94zfRiOSZAh_54UcaSSOsnrdec,1971
|
|
124
|
+
wordlift_sdk/validation/shacls/google-local-business.ttl,sha256=4u9BBHQrEg0lQVWgocis3D2SO_H6x_GN5VofyE-SnTM,12084
|
|
125
|
+
wordlift_sdk/validation/shacls/google-loyalty-program.ttl,sha256=jUA5MiTD2GLiBW5PHwC-fGD0KehbUGWXfHPXyglsgQo,1547
|
|
126
|
+
wordlift_sdk/validation/shacls/google-math-solvers.ttl,sha256=IsFdXnW2_2PA6tHDN14RCKsU3Mp7LOaMsHtAjEulyQw,1529
|
|
127
|
+
wordlift_sdk/validation/shacls/google-merchant-listing.ttl,sha256=nFuNfV_RyDwVvBT0Iheg9ByERTMBhV7G67K9mZ67I8k,10554
|
|
128
|
+
wordlift_sdk/validation/shacls/google-movie.ttl,sha256=1kVRTPg4YMDXQ2T3nEPjvG3E8dPSDI7heTia736DMdI,1178
|
|
129
|
+
wordlift_sdk/validation/shacls/google-organization.ttl,sha256=r3srUP-_x3ZP9YGty3-vlSus2Oq46cc8ha2TYcfdALM,4859
|
|
130
|
+
wordlift_sdk/validation/shacls/google-paywalled-content.ttl,sha256=O2yNGcrRYF0aBw-SJ9qWBTMfgme8vc0am8hO2d8BFjw,989
|
|
131
|
+
wordlift_sdk/validation/shacls/google-product-snippet.ttl,sha256=pg6ThnFNzF78NDOLAC8P80Ig_u2jLuTCMBqNcWjWutg,2973
|
|
132
|
+
wordlift_sdk/validation/shacls/google-product-variants.ttl,sha256=T2h3ZaX5UYoUlik3cUAt-CCfNERmEAHB4UQj8W7QGBw,1757
|
|
133
|
+
wordlift_sdk/validation/shacls/google-profile-page.ttl,sha256=ta0ZsfChHf2dpApJth9kM1bCT2Wl-zSI5B15bvgzrN0,3409
|
|
134
|
+
wordlift_sdk/validation/shacls/google-qapage.ttl,sha256=Lwd_Rd5yY0ezvEI35b4yZzBQSzlYMcf4rjgnQmCk1Qo,4736
|
|
135
|
+
wordlift_sdk/validation/shacls/google-recipe.ttl,sha256=32I5YuJAJKWxpfhtFy-nE108NwUm1YFhPrUNfX8TXv8,4737
|
|
136
|
+
wordlift_sdk/validation/shacls/google-return-policy.ttl,sha256=ckAStDp4VwS2tS_34qX4j-JKa8-MzFd6KBAFRitPQ04,3588
|
|
137
|
+
wordlift_sdk/validation/shacls/google-review-snippet.ttl,sha256=SK6-IAxQ_lBdF1W40JxywSi0ZtXrMQ_cZlPda4Yj8Lk,2055
|
|
138
|
+
wordlift_sdk/validation/shacls/google-shipping-policy.ttl,sha256=KzmFTgjhudHoqSwlJgnhq7MaCtVd6oTRIrL9EtpahLQ,15085
|
|
139
|
+
wordlift_sdk/validation/shacls/google-software-app.ttl,sha256=hG3HCTPWHTKOjFJj53qWDs-KKcu-37qZreylRR2guzk,1074
|
|
140
|
+
wordlift_sdk/validation/shacls/google-speakable.ttl,sha256=tLxSEePZSuvBbwfQsQdAbJT-am4zucQkOHvgjS7jFjE,573
|
|
141
|
+
wordlift_sdk/validation/shacls/google-vacation-rental.ttl,sha256=EHhj2GG7PKOLOsdbrQ-v1A8eN7-VwNZeuTpJl5FQo2U,7221
|
|
142
|
+
wordlift_sdk/validation/shacls/google-video.ttl,sha256=9oVL6Xxh_7hUhG3Z6B-n2EZixpRZBeAC22m5qtrwxgw,3442
|
|
143
|
+
wordlift_sdk/validation/shacls/schemaorg-grammar.ttl,sha256=-4vBi2hMDZmzUx5bKmv_QBBxhGlQJkzSjULTxISRMwc,647297
|
|
80
144
|
wordlift_sdk/wordlift/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
145
|
wordlift_sdk/wordlift/entity_gaps/__init__.py,sha256=PMtdyBoUD-oiTE-7Izr6fuod7OxGOQIhFSasZG_SafM,109
|
|
82
146
|
wordlift_sdk/wordlift/entity_gaps/create_entity_gaps_factory.py,sha256=LfU8ebaN14vXiwDcLEpJQnrZaxJj7EUWC0zs-qDvj2g,1841
|
|
@@ -98,6 +162,6 @@ wordlift_sdk/workflow/url_handler/default_url_handler.py,sha256=irMoJftx9Gyq-8HQ
|
|
|
98
162
|
wordlift_sdk/workflow/url_handler/search_console_url_handler.py,sha256=uOwD4t009-cA9JI7ZtbYhCGRwjhLzDpBNTWHERPnNqI,2698
|
|
99
163
|
wordlift_sdk/workflow/url_handler/url_handler.py,sha256=meyOpWVhLk2NcbtUOO_V0z6_T9q-D3pD7kWQCRioYh0,129
|
|
100
164
|
wordlift_sdk/workflow/url_handler/web_page_import_url_handler.py,sha256=xQiy-fgFj_dWKFFBNWeodAGhIMJQereSPdgnjK-Crmo,3529
|
|
101
|
-
wordlift_sdk-2.
|
|
102
|
-
wordlift_sdk-2.
|
|
103
|
-
wordlift_sdk-2.
|
|
165
|
+
wordlift_sdk-2.10.1.dist-info/METADATA,sha256=kvVVEm1JTkqdUiTjKA6J2Aq2jM58ljH0j3LDM7aK2s0,5099
|
|
166
|
+
wordlift_sdk-2.10.1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
167
|
+
wordlift_sdk-2.10.1.dist-info/RECORD,,
|
|
File without changes
|