figrecipe 0.6.0__py3-none-any.whl → 0.9.0__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 (269) hide show
  1. figrecipe/__init__.py +161 -1030
  2. figrecipe/__main__.py +12 -0
  3. figrecipe/_api/__init__.py +48 -0
  4. figrecipe/_api/_extract.py +108 -0
  5. figrecipe/_api/_notebook.py +61 -0
  6. figrecipe/_api/_panel.py +113 -0
  7. figrecipe/_api/_save.py +287 -0
  8. figrecipe/_api/_seaborn_proxy.py +34 -0
  9. figrecipe/_api/_style_manager.py +153 -0
  10. figrecipe/_api/_subplots.py +333 -0
  11. figrecipe/_api/_validate.py +82 -0
  12. figrecipe/_cli/__init__.py +7 -0
  13. figrecipe/_cli/_compose.py +87 -0
  14. figrecipe/_cli/_convert.py +117 -0
  15. figrecipe/_cli/_crop.py +82 -0
  16. figrecipe/_cli/_edit.py +70 -0
  17. figrecipe/_cli/_extract.py +128 -0
  18. figrecipe/_cli/_fonts.py +47 -0
  19. figrecipe/_cli/_info.py +67 -0
  20. figrecipe/_cli/_main.py +58 -0
  21. figrecipe/_cli/_reproduce.py +79 -0
  22. figrecipe/_cli/_style.py +77 -0
  23. figrecipe/_cli/_validate.py +66 -0
  24. figrecipe/_cli/_version.py +50 -0
  25. figrecipe/_composition/__init__.py +32 -0
  26. figrecipe/_composition/_alignment.py +452 -0
  27. figrecipe/_composition/_compose.py +179 -0
  28. figrecipe/_composition/_import_axes.py +127 -0
  29. figrecipe/_composition/_visibility.py +125 -0
  30. figrecipe/_dev/__init__.py +4 -93
  31. figrecipe/_dev/_plotters.py +76 -0
  32. figrecipe/_dev/_run_demos.py +56 -0
  33. figrecipe/_dev/browser/__init__.py +69 -0
  34. figrecipe/_dev/browser/_audio.py +240 -0
  35. figrecipe/_dev/browser/_caption.py +356 -0
  36. figrecipe/_dev/browser/_click_effect.py +146 -0
  37. figrecipe/_dev/browser/_cursor.py +196 -0
  38. figrecipe/_dev/browser/_highlight.py +105 -0
  39. figrecipe/_dev/browser/_narration.py +237 -0
  40. figrecipe/_dev/browser/_recorder.py +446 -0
  41. figrecipe/_dev/browser/_utils.py +178 -0
  42. figrecipe/_dev/browser/_video_trim/__init__.py +152 -0
  43. figrecipe/_dev/browser/_video_trim/_detection.py +223 -0
  44. figrecipe/_dev/browser/_video_trim/_markers.py +140 -0
  45. figrecipe/_dev/demo_plotters/__init__.py +35 -166
  46. figrecipe/_dev/demo_plotters/_categories.py +81 -0
  47. figrecipe/_dev/demo_plotters/_figure_creators.py +119 -0
  48. figrecipe/_dev/demo_plotters/_helpers.py +31 -0
  49. figrecipe/_dev/demo_plotters/_registry.py +50 -0
  50. figrecipe/_dev/demo_plotters/bar_categorical/__init__.py +4 -0
  51. figrecipe/_dev/demo_plotters/contour_surface/__init__.py +4 -0
  52. figrecipe/_dev/demo_plotters/distribution/__init__.py +4 -0
  53. figrecipe/_dev/demo_plotters/image_matrix/__init__.py +4 -0
  54. figrecipe/_dev/demo_plotters/line_curve/__init__.py +4 -0
  55. figrecipe/_dev/demo_plotters/{plot_plot.py → line_curve/plot_plot.py} +3 -2
  56. figrecipe/_dev/demo_plotters/scatter_points/__init__.py +4 -0
  57. figrecipe/_dev/demo_plotters/special/__init__.py +4 -0
  58. figrecipe/_dev/demo_plotters/{plot_pie.py → special/plot_pie.py} +5 -1
  59. figrecipe/_dev/demo_plotters/spectral_signal/__init__.py +4 -0
  60. figrecipe/_dev/demo_plotters/vector_flow/__init__.py +4 -0
  61. figrecipe/_editor/__init__.py +61 -13
  62. figrecipe/_editor/_bbox/__init__.py +43 -0
  63. figrecipe/_editor/_bbox/_collections.py +177 -0
  64. figrecipe/_editor/_bbox/_elements.py +159 -0
  65. figrecipe/_editor/_bbox/_extract.py +402 -0
  66. figrecipe/_editor/_bbox/_extract_axes.py +370 -0
  67. figrecipe/_editor/_bbox/_extract_text.py +466 -0
  68. figrecipe/_editor/_bbox/_lines.py +173 -0
  69. figrecipe/_editor/_bbox/_transforms.py +146 -0
  70. figrecipe/_editor/_call_overrides.py +183 -0
  71. figrecipe/_editor/_datatable_plot_handlers.py +249 -0
  72. figrecipe/_editor/_figure_layout.py +211 -0
  73. figrecipe/_editor/_flask_app.py +200 -1030
  74. figrecipe/_editor/_helpers.py +251 -0
  75. figrecipe/_editor/_hitmap/__init__.py +76 -0
  76. figrecipe/_editor/_hitmap/_artists/__init__.py +21 -0
  77. figrecipe/_editor/_hitmap/_artists/_collections.py +345 -0
  78. figrecipe/_editor/_hitmap/_artists/_images.py +68 -0
  79. figrecipe/_editor/_hitmap/_artists/_lines.py +107 -0
  80. figrecipe/_editor/_hitmap/_artists/_patches.py +163 -0
  81. figrecipe/_editor/_hitmap/_artists/_text.py +190 -0
  82. figrecipe/_editor/_hitmap/_colors.py +181 -0
  83. figrecipe/_editor/_hitmap/_detect.py +194 -0
  84. figrecipe/_editor/_hitmap/_restore.py +154 -0
  85. figrecipe/_editor/_hitmap_main.py +182 -0
  86. figrecipe/_editor/_overrides.py +4 -1
  87. figrecipe/_editor/_plot_types_registry.py +190 -0
  88. figrecipe/_editor/_preferences.py +135 -0
  89. figrecipe/_editor/_render_overrides.py +507 -0
  90. figrecipe/_editor/_renderer.py +81 -186
  91. figrecipe/_editor/_routes_annotation.py +114 -0
  92. figrecipe/_editor/_routes_axis.py +482 -0
  93. figrecipe/_editor/_routes_captions.py +130 -0
  94. figrecipe/_editor/_routes_composition.py +270 -0
  95. figrecipe/_editor/_routes_core.py +126 -0
  96. figrecipe/_editor/_routes_datatable.py +364 -0
  97. figrecipe/_editor/_routes_element.py +335 -0
  98. figrecipe/_editor/_routes_files.py +443 -0
  99. figrecipe/_editor/_routes_image.py +200 -0
  100. figrecipe/_editor/_routes_snapshot.py +94 -0
  101. figrecipe/_editor/_routes_style.py +243 -0
  102. figrecipe/_editor/_templates/__init__.py +116 -1
  103. figrecipe/_editor/_templates/_html.py +154 -64
  104. figrecipe/_editor/_templates/_html_components/__init__.py +13 -0
  105. figrecipe/_editor/_templates/_html_components/_composition_toolbar.py +79 -0
  106. figrecipe/_editor/_templates/_html_components/_file_browser.py +41 -0
  107. figrecipe/_editor/_templates/_html_datatable.py +92 -0
  108. figrecipe/_editor/_templates/_scripts/__init__.py +178 -0
  109. figrecipe/_editor/_templates/_scripts/_accordion.py +328 -0
  110. figrecipe/_editor/_templates/_scripts/_annotation_drag.py +504 -0
  111. figrecipe/_editor/_templates/_scripts/_api.py +228 -0
  112. figrecipe/_editor/_templates/_scripts/_canvas_context_menu.py +182 -0
  113. figrecipe/_editor/_templates/_scripts/_captions.py +231 -0
  114. figrecipe/_editor/_templates/_scripts/_colors.py +485 -0
  115. figrecipe/_editor/_templates/_scripts/_composition.py +283 -0
  116. figrecipe/_editor/_templates/_scripts/_core.py +493 -0
  117. figrecipe/_editor/_templates/_scripts/_datatable/__init__.py +59 -0
  118. figrecipe/_editor/_templates/_scripts/_datatable/_cell_edit.py +97 -0
  119. figrecipe/_editor/_templates/_scripts/_datatable/_clipboard.py +164 -0
  120. figrecipe/_editor/_templates/_scripts/_datatable/_context_menu.py +221 -0
  121. figrecipe/_editor/_templates/_scripts/_datatable/_core.py +150 -0
  122. figrecipe/_editor/_templates/_scripts/_datatable/_editable.py +511 -0
  123. figrecipe/_editor/_templates/_scripts/_datatable/_import.py +161 -0
  124. figrecipe/_editor/_templates/_scripts/_datatable/_plot.py +261 -0
  125. figrecipe/_editor/_templates/_scripts/_datatable/_selection.py +438 -0
  126. figrecipe/_editor/_templates/_scripts/_datatable/_table.py +256 -0
  127. figrecipe/_editor/_templates/_scripts/_datatable/_tabs.py +354 -0
  128. figrecipe/_editor/_templates/_scripts/_debug_snapshot.py +186 -0
  129. figrecipe/_editor/_templates/_scripts/_element_editor.py +325 -0
  130. figrecipe/_editor/_templates/_scripts/_files.py +429 -0
  131. figrecipe/_editor/_templates/_scripts/_files_context_menu.py +240 -0
  132. figrecipe/_editor/_templates/_scripts/_hitmap.py +512 -0
  133. figrecipe/_editor/_templates/_scripts/_image_drop.py +428 -0
  134. figrecipe/_editor/_templates/_scripts/_inspector.py +315 -0
  135. figrecipe/_editor/_templates/_scripts/_labels.py +464 -0
  136. figrecipe/_editor/_templates/_scripts/_legend_drag.py +270 -0
  137. figrecipe/_editor/_templates/_scripts/_modals.py +226 -0
  138. figrecipe/_editor/_templates/_scripts/_multi_select.py +198 -0
  139. figrecipe/_editor/_templates/_scripts/_overlays.py +292 -0
  140. figrecipe/_editor/_templates/_scripts/_panel_drag.py +505 -0
  141. figrecipe/_editor/_templates/_scripts/_panel_drag_snapshot.py +33 -0
  142. figrecipe/_editor/_templates/_scripts/_panel_position.py +463 -0
  143. figrecipe/_editor/_templates/_scripts/_panel_resize.py +230 -0
  144. figrecipe/_editor/_templates/_scripts/_panel_snap.py +307 -0
  145. figrecipe/_editor/_templates/_scripts/_region_select.py +255 -0
  146. figrecipe/_editor/_templates/_scripts/_selection.py +244 -0
  147. figrecipe/_editor/_templates/_scripts/_sync.py +242 -0
  148. figrecipe/_editor/_templates/_scripts/_tabs.py +89 -0
  149. figrecipe/_editor/_templates/_scripts/_undo_redo.py +348 -0
  150. figrecipe/_editor/_templates/_scripts/_view_mode.py +107 -0
  151. figrecipe/_editor/_templates/_scripts/_zoom.py +212 -0
  152. figrecipe/_editor/_templates/_styles/__init__.py +78 -0
  153. figrecipe/_editor/_templates/_styles/_base.py +111 -0
  154. figrecipe/_editor/_templates/_styles/_buttons.py +327 -0
  155. figrecipe/_editor/_templates/_styles/_color_input.py +123 -0
  156. figrecipe/_editor/_templates/_styles/_composition.py +87 -0
  157. figrecipe/_editor/_templates/_styles/_controls.py +430 -0
  158. figrecipe/_editor/_templates/_styles/_datatable/__init__.py +40 -0
  159. figrecipe/_editor/_templates/_styles/_datatable/_editable.py +203 -0
  160. figrecipe/_editor/_templates/_styles/_datatable/_panel.py +268 -0
  161. figrecipe/_editor/_templates/_styles/_datatable/_table.py +479 -0
  162. figrecipe/_editor/_templates/_styles/_datatable/_toolbar.py +384 -0
  163. figrecipe/_editor/_templates/_styles/_datatable/_vars.py +123 -0
  164. figrecipe/_editor/_templates/_styles/_dynamic_props.py +144 -0
  165. figrecipe/_editor/_templates/_styles/_file_browser.py +466 -0
  166. figrecipe/_editor/_templates/_styles/_forms.py +224 -0
  167. figrecipe/_editor/_templates/_styles/_hitmap.py +191 -0
  168. figrecipe/_editor/_templates/_styles/_inspector.py +90 -0
  169. figrecipe/_editor/_templates/_styles/_labels.py +118 -0
  170. figrecipe/_editor/_templates/_styles/_modals.py +127 -0
  171. figrecipe/_editor/_templates/_styles/_overlays.py +130 -0
  172. figrecipe/_editor/_templates/_styles/_preview.py +430 -0
  173. figrecipe/_editor/_templates/_styles/_selection.py +73 -0
  174. figrecipe/_editor/_templates/_styles/_spinner.py +117 -0
  175. figrecipe/_editor/static/audio/click.mp3 +0 -0
  176. figrecipe/_editor/static/click.mp3 +0 -0
  177. figrecipe/_editor/static/icons/favicon.ico +0 -0
  178. figrecipe/_integrations/__init__.py +17 -0
  179. figrecipe/_integrations/_scitex_stats.py +298 -0
  180. figrecipe/_params/_DECORATION_METHODS.py +8 -0
  181. figrecipe/_recorder.py +63 -109
  182. figrecipe/_recorder_utils.py +124 -0
  183. figrecipe/_reproducer/__init__.py +18 -0
  184. figrecipe/_reproducer/_core.py +509 -0
  185. figrecipe/_reproducer/_custom_plots.py +279 -0
  186. figrecipe/_reproducer/_seaborn.py +100 -0
  187. figrecipe/_reproducer/_violin.py +186 -0
  188. figrecipe/_signatures/_kwargs.py +273 -0
  189. figrecipe/_signatures/_loader.py +21 -423
  190. figrecipe/_signatures/_parsing.py +147 -0
  191. figrecipe/_utils/__init__.py +3 -0
  192. figrecipe/_utils/_bundle.py +205 -0
  193. figrecipe/_wrappers/_axes.py +252 -895
  194. figrecipe/_wrappers/_axes_helpers.py +136 -0
  195. figrecipe/_wrappers/_axes_plots.py +418 -0
  196. figrecipe/_wrappers/_axes_seaborn.py +157 -0
  197. figrecipe/_wrappers/_caption_generator.py +218 -0
  198. figrecipe/_wrappers/_figure.py +188 -1
  199. figrecipe/_wrappers/_panel_labels.py +127 -0
  200. figrecipe/_wrappers/_plot_helpers.py +143 -0
  201. figrecipe/_wrappers/_stat_annotation.py +274 -0
  202. figrecipe/_wrappers/_violin_helpers.py +180 -0
  203. figrecipe/styles/__init__.py +8 -6
  204. figrecipe/styles/_dotdict.py +72 -0
  205. figrecipe/styles/_finalize.py +134 -0
  206. figrecipe/styles/_fonts.py +77 -0
  207. figrecipe/styles/_kwargs_converter.py +178 -0
  208. figrecipe/styles/_plot_styles.py +209 -0
  209. figrecipe/styles/_style_applier.py +42 -480
  210. figrecipe/styles/_style_loader.py +16 -192
  211. figrecipe/styles/_themes.py +151 -0
  212. figrecipe/styles/presets/MATPLOTLIB.yaml +2 -1
  213. figrecipe/styles/presets/SCITEX.yaml +40 -28
  214. figrecipe-0.9.0.dist-info/METADATA +427 -0
  215. figrecipe-0.9.0.dist-info/RECORD +277 -0
  216. figrecipe-0.9.0.dist-info/entry_points.txt +2 -0
  217. figrecipe/_editor/_bbox.py +0 -978
  218. figrecipe/_editor/_hitmap.py +0 -937
  219. figrecipe/_editor/_templates/_scripts.py +0 -2778
  220. figrecipe/_editor/_templates/_styles.py +0 -1326
  221. figrecipe/_reproducer.py +0 -975
  222. figrecipe-0.6.0.dist-info/METADATA +0 -394
  223. figrecipe-0.6.0.dist-info/RECORD +0 -90
  224. /figrecipe/_dev/demo_plotters/{plot_bar.py → bar_categorical/plot_bar.py} +0 -0
  225. /figrecipe/_dev/demo_plotters/{plot_barh.py → bar_categorical/plot_barh.py} +0 -0
  226. /figrecipe/_dev/demo_plotters/{plot_contour.py → contour_surface/plot_contour.py} +0 -0
  227. /figrecipe/_dev/demo_plotters/{plot_contourf.py → contour_surface/plot_contourf.py} +0 -0
  228. /figrecipe/_dev/demo_plotters/{plot_tricontour.py → contour_surface/plot_tricontour.py} +0 -0
  229. /figrecipe/_dev/demo_plotters/{plot_tricontourf.py → contour_surface/plot_tricontourf.py} +0 -0
  230. /figrecipe/_dev/demo_plotters/{plot_tripcolor.py → contour_surface/plot_tripcolor.py} +0 -0
  231. /figrecipe/_dev/demo_plotters/{plot_triplot.py → contour_surface/plot_triplot.py} +0 -0
  232. /figrecipe/_dev/demo_plotters/{plot_boxplot.py → distribution/plot_boxplot.py} +0 -0
  233. /figrecipe/_dev/demo_plotters/{plot_ecdf.py → distribution/plot_ecdf.py} +0 -0
  234. /figrecipe/_dev/demo_plotters/{plot_hist.py → distribution/plot_hist.py} +0 -0
  235. /figrecipe/_dev/demo_plotters/{plot_hist2d.py → distribution/plot_hist2d.py} +0 -0
  236. /figrecipe/_dev/demo_plotters/{plot_violinplot.py → distribution/plot_violinplot.py} +0 -0
  237. /figrecipe/_dev/demo_plotters/{plot_hexbin.py → image_matrix/plot_hexbin.py} +0 -0
  238. /figrecipe/_dev/demo_plotters/{plot_imshow.py → image_matrix/plot_imshow.py} +0 -0
  239. /figrecipe/_dev/demo_plotters/{plot_matshow.py → image_matrix/plot_matshow.py} +0 -0
  240. /figrecipe/_dev/demo_plotters/{plot_pcolor.py → image_matrix/plot_pcolor.py} +0 -0
  241. /figrecipe/_dev/demo_plotters/{plot_pcolormesh.py → image_matrix/plot_pcolormesh.py} +0 -0
  242. /figrecipe/_dev/demo_plotters/{plot_spy.py → image_matrix/plot_spy.py} +0 -0
  243. /figrecipe/_dev/demo_plotters/{plot_errorbar.py → line_curve/plot_errorbar.py} +0 -0
  244. /figrecipe/_dev/demo_plotters/{plot_fill.py → line_curve/plot_fill.py} +0 -0
  245. /figrecipe/_dev/demo_plotters/{plot_fill_between.py → line_curve/plot_fill_between.py} +0 -0
  246. /figrecipe/_dev/demo_plotters/{plot_fill_betweenx.py → line_curve/plot_fill_betweenx.py} +0 -0
  247. /figrecipe/_dev/demo_plotters/{plot_stackplot.py → line_curve/plot_stackplot.py} +0 -0
  248. /figrecipe/_dev/demo_plotters/{plot_stairs.py → line_curve/plot_stairs.py} +0 -0
  249. /figrecipe/_dev/demo_plotters/{plot_step.py → line_curve/plot_step.py} +0 -0
  250. /figrecipe/_dev/demo_plotters/{plot_scatter.py → scatter_points/plot_scatter.py} +0 -0
  251. /figrecipe/_dev/demo_plotters/{plot_eventplot.py → special/plot_eventplot.py} +0 -0
  252. /figrecipe/_dev/demo_plotters/{plot_loglog.py → special/plot_loglog.py} +0 -0
  253. /figrecipe/_dev/demo_plotters/{plot_semilogx.py → special/plot_semilogx.py} +0 -0
  254. /figrecipe/_dev/demo_plotters/{plot_semilogy.py → special/plot_semilogy.py} +0 -0
  255. /figrecipe/_dev/demo_plotters/{plot_stem.py → special/plot_stem.py} +0 -0
  256. /figrecipe/_dev/demo_plotters/{plot_acorr.py → spectral_signal/plot_acorr.py} +0 -0
  257. /figrecipe/_dev/demo_plotters/{plot_angle_spectrum.py → spectral_signal/plot_angle_spectrum.py} +0 -0
  258. /figrecipe/_dev/demo_plotters/{plot_cohere.py → spectral_signal/plot_cohere.py} +0 -0
  259. /figrecipe/_dev/demo_plotters/{plot_csd.py → spectral_signal/plot_csd.py} +0 -0
  260. /figrecipe/_dev/demo_plotters/{plot_magnitude_spectrum.py → spectral_signal/plot_magnitude_spectrum.py} +0 -0
  261. /figrecipe/_dev/demo_plotters/{plot_phase_spectrum.py → spectral_signal/plot_phase_spectrum.py} +0 -0
  262. /figrecipe/_dev/demo_plotters/{plot_psd.py → spectral_signal/plot_psd.py} +0 -0
  263. /figrecipe/_dev/demo_plotters/{plot_specgram.py → spectral_signal/plot_specgram.py} +0 -0
  264. /figrecipe/_dev/demo_plotters/{plot_xcorr.py → spectral_signal/plot_xcorr.py} +0 -0
  265. /figrecipe/_dev/demo_plotters/{plot_barbs.py → vector_flow/plot_barbs.py} +0 -0
  266. /figrecipe/_dev/demo_plotters/{plot_quiver.py → vector_flow/plot_quiver.py} +0 -0
  267. /figrecipe/_dev/demo_plotters/{plot_streamplot.py → vector_flow/plot_streamplot.py} +0 -0
  268. {figrecipe-0.6.0.dist-info → figrecipe-0.9.0.dist-info}/WHEEL +0 -0
  269. {figrecipe-0.6.0.dist-info → figrecipe-0.9.0.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,277 @@
1
+ figrecipe/__init__.py,sha256=LpSFX3U9uNwd6Rn4zeVQKw3gWw0FTJB9rAtJnuqqtmA,12862
2
+ figrecipe/__main__.py,sha256=pAEzxmJEhqewiz5vOiODpu1RVO8ys8Cw44P0Y1StIRY,217
3
+ figrecipe/_recorder.py,sha256=RhYBoyWfocFzGbxMpGEDxXlekhD1ZkhF-Rd1WRMpb3Q,14862
4
+ figrecipe/_recorder_utils.py,sha256=jmZILX7d6Ew591rr1R8_RuCG9BSwXYkdV-3Bdi03Pdk,3505
5
+ figrecipe/_seaborn.py,sha256=H_yDpHCB0F-6goQ6eY_3oe7LA3EhGanC7i2ScBnwcKE,8327
6
+ figrecipe/_serializer.py,sha256=aNz-7SNjweFBcdK_9FXcptgLTd_jHFqG8q5E7gTVImE,6248
7
+ figrecipe/_validator.py,sha256=Aevecjk8mCX-yp92BQkz9F5hxEPev9n-yQuDRaEO3CE,5821
8
+ figrecipe/plt.py,sha256=rFmUE3dzCIVPm_kmHjMhj2u20u0gpinYO7HEooi3joE,280
9
+ figrecipe/pyplot.py,sha256=WVdPgm-0R5Nw-wwNUMbUe9F1jn89DrwgYPhK6vXhqIc,5686
10
+ figrecipe/_api/__init__.py,sha256=vBKJR3846Vm6omM4gqN4tWBTjsMHXGNcw7l-CH8PKho,1132
11
+ figrecipe/_api/_extract.py,sha256=zf-i5gwwyxMfUQeO6YLE1BahoJaPY8-A_ImGMYodvag,2692
12
+ figrecipe/_api/_notebook.py,sha256=LrcuofzlCHqmL8AUHHuT0JAFU04QyjQZFLCImyzWBNU,1800
13
+ figrecipe/_api/_panel.py,sha256=QzqSwMUGvDKO1sLSBwz730SsmR1PCNMmLi8W4TwLqas,2956
14
+ figrecipe/_api/_save.py,sha256=8phblzDWItfL9maJ2_ooz_JDZMzyGuMz5g30I2cnyW0,8429
15
+ figrecipe/_api/_seaborn_proxy.py,sha256=-SVjhXc6NsJ1A56Wuf4ZrfNm6rYOqERkwHzH95ZB4Gg,689
16
+ figrecipe/_api/_style_manager.py,sha256=9PnEVPKst5KPyz0BMiWLNqySZa4de1hLK12UII2O5Iw,3903
17
+ figrecipe/_api/_subplots.py,sha256=1tg891TI6XRH-7uEjrj0zzFroNR4JsGfjRAy0bXySaI,10423
18
+ figrecipe/_api/_validate.py,sha256=N3IH2EL-2kTnsZ4xRvfE8fv9djvbmrxquU8hwQJ4Z5E,2247
19
+ figrecipe/_cli/__init__.py,sha256=ewY--rGhwiCLAnCf9MaezOnQo3pq404HXmKCqubWm0U,152
20
+ figrecipe/_cli/_compose.py,sha256=d3tjT6hrbAYT5-vQujjKRa-YKsDytf1vSD9YyYVacPo,2167
21
+ figrecipe/_cli/_convert.py,sha256=Vlhqk6mS5UOkFAjjY73fxMleVPBbGkP5BB6sY1h3ncA,3024
22
+ figrecipe/_cli/_crop.py,sha256=PpfZULxXQ-9fMbp0SQWWWdAzVfvSLUalhehiuBck8-Y,1994
23
+ figrecipe/_cli/_edit.py,sha256=yBpTG9WEZnDz3kvljN0-B2vZK72mfPPR06Jcu0YvB4o,1636
24
+ figrecipe/_cli/_extract.py,sha256=o4wpY7wfL4m8396dXWur7asHZcQ3zQyhUSpCmsHgReg,3075
25
+ figrecipe/_cli/_fonts.py,sha256=A7cL3n4AsM9up10aPK_0Y7c252CyV1DfXUoYCR4p55E,1272
26
+ figrecipe/_cli/_info.py,sha256=pQbqDnCr5bLr63KDhimuXOw7d15hFPvne5--DYnEpM0,1956
27
+ figrecipe/_cli/_main.py,sha256=mFMsNGsVaYN9Wbu6v1rI9HBxHTPAZYXNbCXmEWBB7uA,1443
28
+ figrecipe/_cli/_reproduce.py,sha256=RbP7ulfeGv2fvfEQzBFUZQ79KUL8IJhqqj2BggB2xoA,1778
29
+ figrecipe/_cli/_style.py,sha256=p-eFgRwfplk9yyHjTpVa0Van-yY7VBOEasVyi6FCFBQ,1702
30
+ figrecipe/_cli/_validate.py,sha256=lhgUisWWW243JqtX3ObHLl6kwYFxku6t3TrexYF-rTQ,1535
31
+ figrecipe/_cli/_version.py,sha256=evKSWcUUJr_JsZ9TwkKgAT3hnNYAhW0lbozNfir_RSc,1179
32
+ figrecipe/_composition/__init__.py,sha256=HOGkPm-8m8NW03TPIVYpgMKbAcB0tFdrAd-1n_06_uY,848
33
+ figrecipe/_composition/_alignment.py,sha256=_GFfnO2KdCk8ZeHWwI_GQF_8I6Ov63p-VVoSxgFT9Cw,13513
34
+ figrecipe/_composition/_compose.py,sha256=KpfBATguRL6utTKiDi_6BYKkmPUOkgWGhL3xokhaiU0,4832
35
+ figrecipe/_composition/_import_axes.py,sha256=WVhXroepZifb0S05Hn0QU5kEe74yvy0BqPETAxK3UbI,3434
36
+ figrecipe/_composition/_visibility.py,sha256=lrm6B2QhkzT5AXKu9PrQ-gjPp6nRdFgtMraaTseMcSA,3342
37
+ figrecipe/_dev/__init__.py,sha256=VSr4GyuOYg4-o6pxhBq6VppKzaCOmlBwsIhXpvw98ck,715
38
+ figrecipe/_dev/_plotters.py,sha256=HuOsI-EYquOt3AH44ltALaZJSGL_5F_gZrQ-Ov_mTfg,1997
39
+ figrecipe/_dev/_run_demos.py,sha256=fmEJoHiuzvsqsw64XiX0rqNv-CQMSjLe4Dv-yXoX-Kw,1520
40
+ figrecipe/_dev/browser/__init__.py,sha256=UUbe5DlIGKmiM_tK3wrDRG-HnV--o5GniKcJS-gKjKQ,1742
41
+ figrecipe/_dev/browser/_audio.py,sha256=6dW01Vc1M58HiJxO5yqXVCmixQsM4m_kDf2iseFA6wE,6608
42
+ figrecipe/_dev/browser/_caption.py,sha256=AvBQdH2sQsqKwXgiMJ8zXdGiy7LK_Bac57j1p1Ympmc,10095
43
+ figrecipe/_dev/browser/_click_effect.py,sha256=dI9T_AzpiC4vvNSYuNkVQWKRJJihsSUuPW44b8cieU0,4121
44
+ figrecipe/_dev/browser/_cursor.py,sha256=mhF17K0si60X6ZnC2ruQPyVxR6KEI6id0xUssTP1-2Y,5180
45
+ figrecipe/_dev/browser/_highlight.py,sha256=1uSvHNhSwyxs0E_fX_5qnNZvM0SEFknhpL845fR_i-I,2922
46
+ figrecipe/_dev/browser/_narration.py,sha256=-XMDzCaETPITbMLdKBLmSAATeqjTes8OFnJiUMOZW4w,6246
47
+ figrecipe/_dev/browser/_recorder.py,sha256=RGATLpHBr6uhanwvvymOq4ErxRSOy4w_Y-x3-rcPNU0,13646
48
+ figrecipe/_dev/browser/_utils.py,sha256=pu-MGjdDioco_2T1D6rkj0KXJzYJ1joXS3F3lG1wBEE,4361
49
+ figrecipe/_dev/browser/_video_trim/__init__.py,sha256=GMNNcPm_vFdHJamvo0tisKNW-8dhB-Gj4wNnhfMLlKY,3958
50
+ figrecipe/_dev/browser/_video_trim/_detection.py,sha256=tmfCIV0Z5H4GZV9LN4UBUHOwqFwJCB5qHWLGf79unV4,6743
51
+ figrecipe/_dev/browser/_video_trim/_markers.py,sha256=waARTyKjCVzk2xiQWTip63sRcAtSKZO3ZRihDpHjbJE,3410
52
+ figrecipe/_dev/demo_plotters/__init__.py,sha256=ji4zInjZIHtNrfqinUZZTEkzsqGGKhcTDURF-Q5xdaA,1577
53
+ figrecipe/_dev/demo_plotters/_categories.py,sha256=QcTSstQl32KVzexKdYQZvOhdqwMYtt3TV5tebp94f34,2262
54
+ figrecipe/_dev/demo_plotters/_figure_creators.py,sha256=ZDAf3xSs8phM3m4Z-Pfum4DtuCkAEMiVZ6f6QXFYZ1k,3205
55
+ figrecipe/_dev/demo_plotters/_helpers.py,sha256=UBGfEcaUMwrQyFPwEEKHANxAdyRuE35ocyDy8tOCDik,792
56
+ figrecipe/_dev/demo_plotters/_registry.py,sha256=V8GdPpV08nYa_gXOXwb7kVFqBYsdZjIMD1M_tsV8EzI,1414
57
+ figrecipe/_dev/demo_plotters/bar_categorical/__init__.py,sha256=xTdpJeVZpVphru4REyWkwmVzpMXosTMotYpoH3F4UMI,98
58
+ figrecipe/_dev/demo_plotters/bar_categorical/plot_bar.py,sha256=yq0RRH9Gp7SXeaaekfNM0UqXTiFR882pWceUO05BrJ0,530
59
+ figrecipe/_dev/demo_plotters/bar_categorical/plot_barh.py,sha256=UvldSfn-vVu_YdsLccfEC8ujkWQ0fmZdEZRRS9iM47Q,558
60
+ figrecipe/_dev/demo_plotters/contour_surface/__init__.py,sha256=1FV1bxhDa-hM5gtHhdG2uyz3dmKl3ZwUii6GAiiWMIo,98
61
+ figrecipe/_dev/demo_plotters/contour_surface/plot_contour.py,sha256=SWz4aJnnz3BxzGD61kouXFM_x3rL75IFvPPXXGE5_zk,624
62
+ figrecipe/_dev/demo_plotters/contour_surface/plot_contourf.py,sha256=ZsuwNwfNbnlOwFMYFsrIkAM3rJ-QAmgT26wYxxfGmk0,621
63
+ figrecipe/_dev/demo_plotters/contour_surface/plot_tricontour.py,sha256=VkvwyPPKl_1GGWHxLbfeQrUCK-uPQ3t31DMmkyE_g3w,623
64
+ figrecipe/_dev/demo_plotters/contour_surface/plot_tricontourf.py,sha256=mHF0WFnlHji65dXV347VYWsUB_LBIN68wLvRW9FZdwo,643
65
+ figrecipe/_dev/demo_plotters/contour_surface/plot_tripcolor.py,sha256=UMFi9PETxs_En6Tzk54_bF9qUHjnQq8beCj8ZM6NARs,671
66
+ figrecipe/_dev/demo_plotters/contour_surface/plot_triplot.py,sha256=Rkc-Y6zito57X2we1wfeGqM-GB0yBJDg7gkB8Py8doY,532
67
+ figrecipe/_dev/demo_plotters/distribution/__init__.py,sha256=oXHR5km1doGSwGMVND7sL4hpMeJSH_R2nf6sv5rstJU,95
68
+ figrecipe/_dev/demo_plotters/distribution/plot_boxplot.py,sha256=_FGUZKpKsCN0QkY3x3iD0T6SWVWIilqXQfnEdERnKms,543
69
+ figrecipe/_dev/demo_plotters/distribution/plot_ecdf.py,sha256=hjosy8Z10XXGrFcmkrF9Z7mMlZ-y2Bfku54kpEGs014,498
70
+ figrecipe/_dev/demo_plotters/distribution/plot_hist.py,sha256=7KDdldxZZ1yw1e2IVw8JC6l7r-AxhGapxHvjmgiPN10,486
71
+ figrecipe/_dev/demo_plotters/distribution/plot_hist2d.py,sha256=XES4qLGaE9yiVgzUehhH18I5SAmRr0BE-rq0J_SNcxw,512
72
+ figrecipe/_dev/demo_plotters/distribution/plot_violinplot.py,sha256=ssxe8YdXSlgtrk8sMjiaeUHAePpt4WUnCP_DLNu26q8,597
73
+ figrecipe/_dev/demo_plotters/image_matrix/__init__.py,sha256=-tlOADZ834JT92ldwpHo5YcrYaIXQooxGIjSoxCbH_g,95
74
+ figrecipe/_dev/demo_plotters/image_matrix/plot_hexbin.py,sha256=dcA2clgNpCndb8H2D8aTUcgsgDlk-eotUCvrJ-HUK1s,522
75
+ figrecipe/_dev/demo_plotters/image_matrix/plot_imshow.py,sha256=z8N70pjwnMqud9g83wszRdudZWSbCt_MoLukaq_XLl4,464
76
+ figrecipe/_dev/demo_plotters/image_matrix/plot_matshow.py,sha256=6j_VzV0yMtd9CErvzXXUL7O615sWcPqGdsdufM6urwo,472
77
+ figrecipe/_dev/demo_plotters/image_matrix/plot_pcolor.py,sha256=-G3K1l1m8WtVI_c9aIo1OsROb2o6O5YkMDWNZm3wmCE,596
78
+ figrecipe/_dev/demo_plotters/image_matrix/plot_pcolormesh.py,sha256=MPAr9yTn41IeWP2ixiWkVVZWJnDi3qTrBr1tZkW_1J8,650
79
+ figrecipe/_dev/demo_plotters/image_matrix/plot_spy.py,sha256=lby0AHDpbXCec2EHbOWMg6EpBp4quHxfrvHMfgaBAH0,602
80
+ figrecipe/_dev/demo_plotters/line_curve/__init__.py,sha256=ulzlSoSrGWZHiZeVKwpe3mI07AGlLMY7vAHbMYtl1vY,93
81
+ figrecipe/_dev/demo_plotters/line_curve/plot_errorbar.py,sha256=TIH1JPUJkepmnsS6CKAGmx5C4Mi2ho1nHmDzT3I_eew,583
82
+ figrecipe/_dev/demo_plotters/line_curve/plot_fill.py,sha256=U3F6YF05Wl68MDCe9-zdLjmRfN864X9o9Ty2D0AJ60k,585
83
+ figrecipe/_dev/demo_plotters/line_curve/plot_fill_between.py,sha256=EhcUIiGbK_8oLnQ-KIKckptM_gtMviJPnXVphwdV5PE,688
84
+ figrecipe/_dev/demo_plotters/line_curve/plot_fill_betweenx.py,sha256=ap4S91Ny6XKzJdS-xUyCrnDsG5sShkKbG5HbcR1g_YU,624
85
+ figrecipe/_dev/demo_plotters/line_curve/plot_plot.py,sha256=JejHS8JnGhhg99sTTHAWsWOJ_7RjumhmQEkJhRNA4xY,576
86
+ figrecipe/_dev/demo_plotters/line_curve/plot_stackplot.py,sha256=WUqYL3bqLurRCAPaDPHtRWeAtaIUOMbWPVS2vWrVlsw,622
87
+ figrecipe/_dev/demo_plotters/line_curve/plot_stairs.py,sha256=os3Elybe_vNarMo6wWUoQgxkBPhstebe6M67aCWPigQ,566
88
+ figrecipe/_dev/demo_plotters/line_curve/plot_step.py,sha256=_qMs8H1Vj3EaG8FnAUOyiDgnRu_PpmQ9tB_mqqWY6nE,517
89
+ figrecipe/_dev/demo_plotters/scatter_points/__init__.py,sha256=X6IcN5-ifXSIU4I_mPEiUg_MyIrHUbvwFtalEjeIK3E,97
90
+ figrecipe/_dev/demo_plotters/scatter_points/plot_scatter.py,sha256=-ZZGsRbgZSOvqMMGU0CrHKQkojeTfQPciC6eSorON5U,514
91
+ figrecipe/_dev/demo_plotters/special/__init__.py,sha256=B8vuWe_8LK8rl3bNr2I-57juNZ5gkLz4RO9eAof7chs,90
92
+ figrecipe/_dev/demo_plotters/special/plot_eventplot.py,sha256=0UFjOzUeI2Y8-f5VD6RsKqzBZAFekXrFeKHLDz_qvZY,578
93
+ figrecipe/_dev/demo_plotters/special/plot_loglog.py,sha256=7IiBJeFDB865Ly7uVXbUyMX9PklpdrKUDX95kLWEFcs,513
94
+ figrecipe/_dev/demo_plotters/special/plot_pie.py,sha256=T9aMOc7LAOVyfBBndtnzCJ6mWhD-vGrFUJ41oQgPzEw,632
95
+ figrecipe/_dev/demo_plotters/special/plot_semilogx.py,sha256=aDfCCiuZrbTgfiYD4wcq_5q66VE0FzUOG1h4V2boUBo,544
96
+ figrecipe/_dev/demo_plotters/special/plot_semilogy.py,sha256=lqEuQHnI92eWrVhYTzExPUEkRZBrR02-Cgebnu1lXBE,542
97
+ figrecipe/_dev/demo_plotters/special/plot_stem.py,sha256=-F7AkHxwnizJ7_nkFj_Jw2PD4kgI2mN-RgSyIKkU_XI,504
98
+ figrecipe/_dev/demo_plotters/spectral_signal/__init__.py,sha256=EZ054RSdE5pVo6gLkBxchneXQLHU5TDSDJ-ZjlE8-ZU,98
99
+ figrecipe/_dev/demo_plotters/spectral_signal/plot_acorr.py,sha256=URj5y4BwUpsaCdLZ3Z3PEnos0kTZSSSM90VSTAqo0xU,505
100
+ figrecipe/_dev/demo_plotters/spectral_signal/plot_angle_spectrum.py,sha256=aRR6pE1UIAU7vEPOVryvX8TinDoAX-V8Y48dYqr3qEE,697
101
+ figrecipe/_dev/demo_plotters/spectral_signal/plot_cohere.py,sha256=v0eRGcSo1i6f_pl9w87p9kI1MX6ag7zV55xH1_c3ews,671
102
+ figrecipe/_dev/demo_plotters/spectral_signal/plot_csd.py,sha256=RMPSipAyF3tZjuA6QZYbptEbRmUUCqzLy-PzhCv5_Es,673
103
+ figrecipe/_dev/demo_plotters/spectral_signal/plot_magnitude_spectrum.py,sha256=TbAyoyJ7INaLy8Gj7K0C2i8kr6slIqjP3BV5jDIOEHU,699
104
+ figrecipe/_dev/demo_plotters/spectral_signal/plot_phase_spectrum.py,sha256=D8Gvt66yFg-NMr9pBhWSOHvZC00sr73pI6Q-qymo2bs,685
105
+ figrecipe/_dev/demo_plotters/spectral_signal/plot_psd.py,sha256=_5F0cQu1reUvx0dfXWYZ1BuKCjsg2jowNzEYRmvMmuc,672
106
+ figrecipe/_dev/demo_plotters/spectral_signal/plot_specgram.py,sha256=MyPjy3XVgD40zgD8sUIe6AkzkOD18JWKDMIDyhThP6s,670
107
+ figrecipe/_dev/demo_plotters/spectral_signal/plot_xcorr.py,sha256=BUDU5phnG88UkJUdc4v-TGMR2RoPHQUNzCLwNhI7YpI,544
108
+ figrecipe/_dev/demo_plotters/vector_flow/__init__.py,sha256=ROy0D0-QghzH84asQm-QYQPY_z7W6E-ldk0FuQUOAqM,94
109
+ figrecipe/_dev/demo_plotters/vector_flow/plot_barbs.py,sha256=if9EVceghVPREOSEvo9_qZQym3G74gFDV0zVsY6fWqI,625
110
+ figrecipe/_dev/demo_plotters/vector_flow/plot_quiver.py,sha256=e3okVGvjZt_sqCEM_noikyPJ4HIxunH-RZosPVmuXAY,609
111
+ figrecipe/_dev/demo_plotters/vector_flow/plot_streamplot.py,sha256=IulKlBfpK8SIIau_E_msZ3cNk2_nqDstMae6TEnl8uI,618
112
+ figrecipe/_editor/__init__.py,sha256=HZTceHFBNXhJ5QAIDhK2fHCJAlLUIcUPjpKVZeyYNwA,8518
113
+ figrecipe/_editor/_call_overrides.py,sha256=OQDcez0qTqEn__JJqatRer1fH_tLQQctK2XquPwcTbw,6737
114
+ figrecipe/_editor/_datatable_plot_handlers.py,sha256=c-fqqK1ZKEhPg7hv3aevMPHWMv81uMcEIg0AYeqdk7I,7858
115
+ figrecipe/_editor/_figure_layout.py,sha256=n2DR6QSSkAwIr616rdoXxKSOza_PHLn1FOsL7nWIAo8,6262
116
+ figrecipe/_editor/_flask_app.py,sha256=b9xCObPp2sfy-xaPgd8obUnkeJRJ1G6UESe8NAMC9K4,14336
117
+ figrecipe/_editor/_helpers.py,sha256=N0m_I4QoeJ3CLKUgUXf50fhrbTO0gDHhPK4xUCD5Zgk,8705
118
+ figrecipe/_editor/_hitmap_main.py,sha256=nafEMWb_cQrqEgNZ7KdplHPZjV95V-hyo54tw-RQsRk,5171
119
+ figrecipe/_editor/_overrides.py,sha256=P_L1w5IWCyj9FUL24-KxsX-ATyor9DaeLmdqyN2NNrE,9068
120
+ figrecipe/_editor/_plot_types_registry.py,sha256=2v6LYTsMD06x3oRU_7pD3o7tIK00ZaP9eQ_yOC7KW9E,6018
121
+ figrecipe/_editor/_preferences.py,sha256=410l4NLIiLG2p8VLDq0eMd-pE_xAaaGV9BZ2jsU5kjo,2834
122
+ figrecipe/_editor/_render_overrides.py,sha256=yWYJMA8_vXwLnJDS0Z7KmDQnI4jSuFq3Qnsm5PtTsco,17417
123
+ figrecipe/_editor/_renderer.py,sha256=mYqx38AsXe9wuumKdc6IV14LZp-MuqA8jbgTRlqw2X0,6857
124
+ figrecipe/_editor/_routes_annotation.py,sha256=vzVeCsDg1nl_nu-1WnLsdlRDYbm4Rfxd30SGe9ZCXfw,4062
125
+ figrecipe/_editor/_routes_axis.py,sha256=FQ_9m8o7yiamdBtE61ClmBBLas-8CC4S6hfK0hSI7eA,17433
126
+ figrecipe/_editor/_routes_captions.py,sha256=qoBR8uxvqGeOhnXf73WjGaEMt2cfvekdayy17Z5A_P0,4928
127
+ figrecipe/_editor/_routes_composition.py,sha256=DBakwE-9EYefW4-BiGOXYSHVK-q8SVZ4kQUJ43v-TZU,8545
128
+ figrecipe/_editor/_routes_core.py,sha256=ORJ_I1Jmbe0NGlw_CNlwA2L4LSbSEt_SyPpB694hwms,3848
129
+ figrecipe/_editor/_routes_datatable.py,sha256=AJfYSeVb6fhOE9picHGLk70uuTENJgnK50_8y1jcR3g,14269
130
+ figrecipe/_editor/_routes_element.py,sha256=VFsiw37tRtLvpAeqKEbgjD9CcNQ9TQIZwJGGGzL__zA,11736
131
+ figrecipe/_editor/_routes_files.py,sha256=EtwkZt52X925mdbc9813mTpiC7zqjvh3mmWky9BFj9E,15386
132
+ figrecipe/_editor/_routes_image.py,sha256=0z5fo50uSfXqANY8cy6GtpXwzETvvdw6-PM7ggelEC0,6658
133
+ figrecipe/_editor/_routes_snapshot.py,sha256=qF4VzMKdzXRxc4VN_euHGOnrNSwrtPCeOPvmGr-KifU,3164
134
+ figrecipe/_editor/_routes_style.py,sha256=2AbfZqZ01NsbHxXHdCQ3bWbN3-ls7v0sRd0waGupQyI,8271
135
+ figrecipe/_editor/_bbox/__init__.py,sha256=GDoT3GdUClIZVg-m127ni31RqFz38owQcp9TK9K_DKQ,1248
136
+ figrecipe/_editor/_bbox/_collections.py,sha256=GC7XXvlbbkAXe_Ucm_TY7N5gSZOY57CePD7zfb5cB1Y,5153
137
+ figrecipe/_editor/_bbox/_elements.py,sha256=2SkwQwqlYh1Gc67Z1VxUmUvEAzxPEyLDR5lfwm5vqtw,4317
138
+ figrecipe/_editor/_bbox/_extract.py,sha256=EB6Xk-dv3pdeeHrgIjAHqh4KfNovDVq2Yh4UDTpo6SM,10288
139
+ figrecipe/_editor/_bbox/_extract_axes.py,sha256=tv1Y8pntAZtCnvcOY3-zyo1X7rjRKzOtOc6RqtKDWxM,9989
140
+ figrecipe/_editor/_bbox/_extract_text.py,sha256=yjM6Ro7bSn9-AjHLhogUFxOVscFWn5XJZ9OhjNKjmQM,13459
141
+ figrecipe/_editor/_bbox/_lines.py,sha256=d_juASdeKD7emLb0_0EmLJIS3Ryqy3f3t54EPgZkp1s,4773
142
+ figrecipe/_editor/_bbox/_transforms.py,sha256=GRy-4pvuT5QW5TkhJg3bwRMfxD5gLEJ_O1SFHiddqb4,3850
143
+ figrecipe/_editor/_hitmap/__init__.py,sha256=gnJqTzXt4EJrY12Gj3norNlUVY3-iSXOcNBYn2PtkJA,1662
144
+ figrecipe/_editor/_hitmap/_colors.py,sha256=ycR7hs_Z5a6V6KOWkbvLB4jehaSJl0xXlYTOBsRo8hY,4270
145
+ figrecipe/_editor/_hitmap/_detect.py,sha256=526vdC_JRcfqdWMJ4anR3B6oflu8BNbY-bnKk010lJI,6362
146
+ figrecipe/_editor/_hitmap/_restore.py,sha256=sNgcfcLyOh3zD4Y96xi59vo2F_ey6HDZpPB4W-N9ZMI,4790
147
+ figrecipe/_editor/_hitmap/_artists/__init__.py,sha256=YSRIf44mgGWLpB4P0l6F65pBJkV_gHNAB9QLy7WVPhI,510
148
+ figrecipe/_editor/_hitmap/_artists/_collections.py,sha256=i6lA_TuZQuM15C0F7s84rK8nDecstPWhHWAzD4iHmUI,9763
149
+ figrecipe/_editor/_hitmap/_artists/_images.py,sha256=Lb1RX0EzhzFm6UIPFrt-URuOJWGo46tqT_ytV6KRKow,1659
150
+ figrecipe/_editor/_hitmap/_artists/_lines.py,sha256=ArMhY5U9UmIynG82viW7fzvQ7ftj9QUC9NWL_LD_DtE,3198
151
+ figrecipe/_editor/_hitmap/_artists/_patches.py,sha256=bX72IQwyp0eWQDEunez5Ur1Wwjr8EuT_KLy7dbGotz0,4429
152
+ figrecipe/_editor/_hitmap/_artists/_text.py,sha256=8Qif5Luw6o52CTiM2iiIOLdvem_rQhj6UY_Kovt0e70,5020
153
+ figrecipe/_editor/_templates/__init__.py,sha256=8vI1WRFiislZe7FLBczxX2ghobARunDflJSNaHsyz4E,7150
154
+ figrecipe/_editor/_templates/_html.py,sha256=HyoG55nTnZG5XCPyu6B_qtIZLtP-6GlcK56XSvDzQNQ,30783
155
+ figrecipe/_editor/_templates/_html_datatable.py,sha256=e8KoENtN66M3GLHzCLtLPiXzm4HTvbaOkMnoW3vpIjo,4146
156
+ figrecipe/_editor/_templates/_html_components/__init__.py,sha256=8xD-4b983sHioHdjNj-iAoBQA6P57jM59LFx94G8znA,262
157
+ figrecipe/_editor/_templates/_html_components/_composition_toolbar.py,sha256=wensceZzenlYGwfXfsQXgIdli-nbKn4jWBGPKVGNQIE,3756
158
+ figrecipe/_editor/_templates/_html_components/_file_browser.py,sha256=0uc3nucmLztj4k0mqoMfkECHa5W3-NEx__lJqOKdqAk,1885
159
+ figrecipe/_editor/_templates/_scripts/__init__.py,sha256=D8C3ZyzbAYtLyO44CI1e9dsSro102ufhn_IsH5TuLi0,6012
160
+ figrecipe/_editor/_templates/_scripts/_accordion.py,sha256=KkEmBSFzNi1hLodgySJslZPNXH0whreJScJj-yAAn30,12434
161
+ figrecipe/_editor/_templates/_scripts/_annotation_drag.py,sha256=e20kHiSavkbpVVx1LP2Fk2UCiT_jPjSxvYfEb4enMtI,20131
162
+ figrecipe/_editor/_templates/_scripts/_api.py,sha256=Ocl7vzvwKMsyr5ov43g_zueLXJ1p6HuspuIi5oCgrMw,6509
163
+ figrecipe/_editor/_templates/_scripts/_canvas_context_menu.py,sha256=LP4pI2Gel0ajvfgrQ5RxSN2GeWF244xwGIuWfzto5es,5745
164
+ figrecipe/_editor/_templates/_scripts/_captions.py,sha256=yUNECxYUYdPPirJc3UY6y6qvEEdUIqhgN_Hf4t_H8M8,7760
165
+ figrecipe/_editor/_templates/_scripts/_colors.py,sha256=QQxwlnkQLBFCEUfTtspSemruzqVK2zBznElWwiBRDTE,17825
166
+ figrecipe/_editor/_templates/_scripts/_composition.py,sha256=tPfQHz56lw_hMbxJXF5IVBoIdzI3pMRVj25V8nDPPyc,8697
167
+ figrecipe/_editor/_templates/_scripts/_core.py,sha256=2sp8n5Szywu3zOHAxJQmfT4u-ns8a41ram1ot-zPBJ0,16758
168
+ figrecipe/_editor/_templates/_scripts/_debug_snapshot.py,sha256=Sq9jfSdcD071tew3cx1kRZfh_VKgNfoJUyImJmdsieg,6831
169
+ figrecipe/_editor/_templates/_scripts/_element_editor.py,sha256=c83FhJGZjKBC1zLu9sZvimrUdG1-yxoOoozwLISCQdQ,11840
170
+ figrecipe/_editor/_templates/_scripts/_files.py,sha256=2VUIt8ZJ_WBG_rBVFHKFcahyiM0fFUSJ4OhQbnwjYuM,14209
171
+ figrecipe/_editor/_templates/_scripts/_files_context_menu.py,sha256=ZsMHllTNOzeIwbLx4h-vT9YmLHRB_uZynakXOj79XyU,7678
172
+ figrecipe/_editor/_templates/_scripts/_hitmap.py,sha256=cBs1G5GG4OzuZA9wwKcbrWkZGW9oJBebItLW873eFPA,21496
173
+ figrecipe/_editor/_templates/_scripts/_image_drop.py,sha256=UKbsxf-y_axaYNNN5uQVZvJP2Fhjv0cogOlVICRTc_o,13213
174
+ figrecipe/_editor/_templates/_scripts/_inspector.py,sha256=F31I8dQtbBIB-5XAZjMiXpaQTt-826RJImrgRQvGYdo,11381
175
+ figrecipe/_editor/_templates/_scripts/_labels.py,sha256=Hhj8oEtD2uCSiH88t0KDbaDUjxsI741EebtH-8in5Cg,15828
176
+ figrecipe/_editor/_templates/_scripts/_legend_drag.py,sha256=m1uyYBXpGLkgE2qNGzxp227IVQFxgNp0RTpPKSlpFCg,8520
177
+ figrecipe/_editor/_templates/_scripts/_modals.py,sha256=CCIAzvWB15QvvVL2PdPZuUmM7OQ522HWJ6mYu8IkJFk,7474
178
+ figrecipe/_editor/_templates/_scripts/_multi_select.py,sha256=dlEJ6iNtLj2X6zOWa-2l5bVGZleZgH_Z5u2vhhH8m9k,6544
179
+ figrecipe/_editor/_templates/_scripts/_overlays.py,sha256=Anne_bi1cIDMGcSsd05pB7RrO1jjs0t6f5ce9RnohxQ,9963
180
+ figrecipe/_editor/_templates/_scripts/_panel_drag.py,sha256=YgXnRkGrP2xmtlCs_rqnBSLQDsYG8ORlq0eRwD7U0Hg,18793
181
+ figrecipe/_editor/_templates/_scripts/_panel_drag_snapshot.py,sha256=chUgAMZ4j_UF33JSe7392oNTcFqRvyYcPSwkqK0gqDA,994
182
+ figrecipe/_editor/_templates/_scripts/_panel_position.py,sha256=-paQ1wBh0ZGBcJdH8mZ9P5-KSswk7buUuhXXOMNNjRg,15842
183
+ figrecipe/_editor/_templates/_scripts/_panel_resize.py,sha256=aNBiguskVgjJ1NCdHH_YH5kybn6qTmYmEtNM6QhUzec,7803
184
+ figrecipe/_editor/_templates/_scripts/_panel_snap.py,sha256=OZ5fsHct9f1iu_MSwOIqV6pHQz5diwgZ7j0WLyfaX-Y,11304
185
+ figrecipe/_editor/_templates/_scripts/_region_select.py,sha256=EB2dyoplRAsYf61k18kCLZi6Qh61McEuoTlXvz4AmxU,8720
186
+ figrecipe/_editor/_templates/_scripts/_selection.py,sha256=xQ-kJ-aV4ahgdcuJDGcEHCU33-DqqixWPha1u8jTfBY,8843
187
+ figrecipe/_editor/_templates/_scripts/_sync.py,sha256=QKz9I3F0kMpTzHl1nbm6wk5JNhMB0yCY1KMcDaw9nK4,9386
188
+ figrecipe/_editor/_templates/_scripts/_tabs.py,sha256=bC2K6-TBh2nk5RbAI3aeIvWCGGey1Xn3wFAo2XcV_00,3044
189
+ figrecipe/_editor/_templates/_scripts/_undo_redo.py,sha256=hHw6gelYbkddOyVjhwHRnLbX9K2cryIjeE6drk64uRc,12259
190
+ figrecipe/_editor/_templates/_scripts/_view_mode.py,sha256=KZQoaJplLPuk3JPtG-HD8pIZw2IrHKk5K14MI-rb-Dw,3701
191
+ figrecipe/_editor/_templates/_scripts/_zoom.py,sha256=MXDcg9n-x5WS6BV97byWOcOFgJ3elyZ1hZPQMetrno8,7292
192
+ figrecipe/_editor/_templates/_scripts/_datatable/__init__.py,sha256=VCxxyYgb_0Ww9QnTbVW9nIqchgxxrUiGwii1mbPXMoM,1708
193
+ figrecipe/_editor/_templates/_scripts/_datatable/_cell_edit.py,sha256=eb5VJi-oDfaNelQ_wTLmWskznVsZc7Jzv-2Q5LmrWZQ,3470
194
+ figrecipe/_editor/_templates/_scripts/_datatable/_clipboard.py,sha256=oS2nhov992SLg8m8cS00VenIb_9rLtNKNImQWjDB1ps,5882
195
+ figrecipe/_editor/_templates/_scripts/_datatable/_context_menu.py,sha256=GrSEMcHnT2K08mbZlu-YgkLIZ_5cbtV0MvhfBgp48ho,7383
196
+ figrecipe/_editor/_templates/_scripts/_datatable/_core.py,sha256=fsRbOw_qh4fvXjq__5fcj5rh-fheTshwK0eV6CjfsGc,5187
197
+ figrecipe/_editor/_templates/_scripts/_datatable/_editable.py,sha256=YQ6KNwmnl0x-hIRuzZPCHoCeQFaX19i3J2m4Qh-KFOE,18332
198
+ figrecipe/_editor/_templates/_scripts/_datatable/_import.py,sha256=PIGnBJI_ggENrdlOPZ3suq0DgojAMIbu_U94dbVb8ag,5064
199
+ figrecipe/_editor/_templates/_scripts/_datatable/_plot.py,sha256=WvBtFiL4XdRaOjkry8Q6O8tvFpszFZMTk3oEhUSliIM,9459
200
+ figrecipe/_editor/_templates/_scripts/_datatable/_selection.py,sha256=iPbbVNSpWCLpicNwA5EZu_QDTYxeEe8M-4-I-Yqlygs,14993
201
+ figrecipe/_editor/_templates/_scripts/_datatable/_table.py,sha256=y5XuFlJPId1Hi3T5rBqUdcjYcEmnCLY_uKy0hFh7nsU,9848
202
+ figrecipe/_editor/_templates/_scripts/_datatable/_tabs.py,sha256=G2UF6Jvz9wtoqjwluQJ2l-7atx361Q0u70vYACIho10,12921
203
+ figrecipe/_editor/_templates/_styles/__init__.py,sha256=mfEeca1IiqktWs5cOZTNdlMf95Mi7cMIlZx9qLxcS1Y,2135
204
+ figrecipe/_editor/_templates/_styles/_base.py,sha256=r9CG8mpbiocsrKoNL3fY_zorj34j_5avY8rIELalMUA,2620
205
+ figrecipe/_editor/_templates/_styles/_buttons.py,sha256=RErromdi9aB_Uh5wpHhEIEf9Mry9l_j5Bi4PgyYSMnI,6039
206
+ figrecipe/_editor/_templates/_styles/_color_input.py,sha256=wGtjZSFC8kF1gImFtEZCPPWgT8P4wIslZFHJCXr-4Cw,2169
207
+ figrecipe/_editor/_templates/_styles/_composition.py,sha256=iSeG7Qh2_BLJDqcXvBDdNApH5jpnSelXiOxQHu9R5Vs,1877
208
+ figrecipe/_editor/_templates/_styles/_controls.py,sha256=dN7MGCtm9UcP7E9evAMBPrmoZxhaVDmP_jD9QDMb_IM,8825
209
+ figrecipe/_editor/_templates/_styles/_dynamic_props.py,sha256=_XnRSDwmBIig_r1net01y5Un6_WdoEEDSBQfusaXGWo,2868
210
+ figrecipe/_editor/_templates/_styles/_file_browser.py,sha256=qY-BjDhh2J3W916bpYZ9DA3pN0zsvE4GP8gwA-v4XlU,9190
211
+ figrecipe/_editor/_templates/_styles/_forms.py,sha256=DdYtxHl2eyA6-8hODi5zEvXzt1PiV0xXDIIwqB5-bwc,4426
212
+ figrecipe/_editor/_templates/_styles/_hitmap.py,sha256=xKV4q_CgPOSGZLgjD5yp2zmYeNJvKZcHhKbWiO5tgP4,4738
213
+ figrecipe/_editor/_templates/_styles/_inspector.py,sha256=5_vQlFsNG234jPCehBdZz3ZNJ-lgOXzinrp2RwI6fWY,2183
214
+ figrecipe/_editor/_templates/_styles/_labels.py,sha256=1zMnKiJc-3d2igw37bC-_cWBgNO5EWvLxC_Xrb0gHxg,2222
215
+ figrecipe/_editor/_templates/_styles/_modals.py,sha256=B5yIqRRJYOH6ZkSQLkGG8_2b5TmRhwL3-epayXgB2lw,2369
216
+ figrecipe/_editor/_templates/_styles/_overlays.py,sha256=pJ74iq6_YE_1ZyLaxTMswMW5H3_XUaWqv2dGMCO5Kkk,2189
217
+ figrecipe/_editor/_templates/_styles/_preview.py,sha256=fTlwyRZ2hYssfjBAJVF0eeCJmpN2yvlVtBZX0Q9XH0M,9255
218
+ figrecipe/_editor/_templates/_styles/_selection.py,sha256=G4aesebVMM03C20Q8xwt1T_C726h-LyKlxfokKdUjzU,1630
219
+ figrecipe/_editor/_templates/_styles/_spinner.py,sha256=P1W4M7oN83TIM2mkzeOikARB47o8J1DwgH9iZYy1dOc,2398
220
+ figrecipe/_editor/_templates/_styles/_datatable/__init__.py,sha256=Wu7JukhBIOwLQ2alLfEdPwT-yTziLVUCubBYdMYPI4k,984
221
+ figrecipe/_editor/_templates/_styles/_datatable/_editable.py,sha256=bBrPwUunStBnLvE0Y2rA59zQMhlYR2E3DKCbYU0SlGs,4627
222
+ figrecipe/_editor/_templates/_styles/_datatable/_panel.py,sha256=KhNODDPhb4rdOwRqYbKKulhhcGfRKZnXZYoDVWI3-Ss,5675
223
+ figrecipe/_editor/_templates/_styles/_datatable/_table.py,sha256=HictxP1f3jkOGLEE1rZXbd7U170dBeu7mAtGkZebgmE,11455
224
+ figrecipe/_editor/_templates/_styles/_datatable/_toolbar.py,sha256=ad2V66HLfRYA5sT-gDw2YMILhItw__xz3c-Lo6bIA1M,7641
225
+ figrecipe/_editor/_templates/_styles/_datatable/_vars.py,sha256=PFVOYYWWSo9HAogafSJz6SX14m2yIJD3R6EoEwz7jS8,2483
226
+ figrecipe/_editor/static/click.mp3,sha256=6f2z7ZGNESwGplc_rhPCNrGNfG0iJauRcEjiCFHWD-s,33792
227
+ figrecipe/_editor/static/audio/click.mp3,sha256=6f2z7ZGNESwGplc_rhPCNrGNfG0iJauRcEjiCFHWD-s,33792
228
+ figrecipe/_editor/static/icons/favicon.ico,sha256=J2fyFrZVQL9rDAJxpsTLATJ2zfegxWbjqRGmW6q06Zc,6783
229
+ figrecipe/_integrations/__init__.py,sha256=nD0cRAEbow8UKVSlHX2J8z1mtaYFgydHQZRu_quOKIQ,343
230
+ figrecipe/_integrations/_scitex_stats.py,sha256=naPAxSBzfbRYBvpt6UkpqIbuSJ4Eco6q4W7JgtHgxag,8400
231
+ figrecipe/_params/_DECORATION_METHODS.py,sha256=4ybYrqGwjYnS7jMMGcumzRLGqV-Ezz--oI8nyeOk8rk,727
232
+ figrecipe/_params/_PLOTTING_METHODS.py,sha256=6S2SvXPQpQ0Y6ut-8kUjyheMNtiDEQCY1aB59XPq788,929
233
+ figrecipe/_params/__init__.py,sha256=EjlVg-n_DlASnSxQYW61kd8JnKeyo-1DMMusJUxm_io,245
234
+ figrecipe/_reproducer/__init__.py,sha256=2JwEbNz534S_C6pq9M8kCCDcW0u78EnlM9wwVOQMIsg,552
235
+ figrecipe/_reproducer/_core.py,sha256=XDGalusW34TRxX6UnA-H_2QkoNct_54SpV4o8uY0atw,16117
236
+ figrecipe/_reproducer/_custom_plots.py,sha256=hDiEZqHtQX29lLNxB6iI7G540C4TY90m7bMzgQblHPo,7636
237
+ figrecipe/_reproducer/_seaborn.py,sha256=ESgX7_ydI7ApSXNE9DDQM5g8KJFv2DlKO7v8eJKLMrk,2707
238
+ figrecipe/_reproducer/_violin.py,sha256=WJMKL6_uQRoLMW-yOmBA4iJxv_UCbIf-hskSaCPrM68,5686
239
+ figrecipe/_signatures/README.md,sha256=eDchfORRdfMAdlPBTKMP3PgcIQywhK3KB1yps3YIzYw,1085
240
+ figrecipe/_signatures/__init__.py,sha256=ekzkD0PG8dvRce7Rc3iRBo65GkOqYLP5hYBGIXfmaaQ,332
241
+ figrecipe/_signatures/_kwargs.py,sha256=eVvSXJd0oA5hfyD8_q-bAOKOVgiCyuqNX9aJIg2aMFk,10318
242
+ figrecipe/_signatures/_loader.py,sha256=HLiuD-rfF6-4pumTgCveugbJPHMwx-BXs0eX3-drwGw,6887
243
+ figrecipe/_signatures/_parsing.py,sha256=dehrhdTk8LtMPniTsi-UTiIrAqivnaVd99RCIvWCDyI,4300
244
+ figrecipe/_utils/__init__.py,sha256=56eEkEwVAb0EfljWBqZdB5rYYEWL6G2X1FgPb0POqMg,951
245
+ figrecipe/_utils/_bundle.py,sha256=N9S5z0BZ97gXbkySzeRxA6eInL4PtBXYJLds-9Bcxtc,5852
246
+ figrecipe/_utils/_crop.py,sha256=vOZuggtGIeJYYwRBugq5OebF3a5s5j0h_3STPtfhJjU,8474
247
+ figrecipe/_utils/_diff.py,sha256=cjRXjMrfXFKz6uZQOZ-XYifc0mzmHZyRXn_LY13K1SY,2354
248
+ figrecipe/_utils/_image_diff.py,sha256=LCXRbXqEtr_mI5Xpk1ju59Fw5B2UqNtvYZx_Uyh98Sw,5416
249
+ figrecipe/_utils/_numpy_io.py,sha256=YYUDtkyBEeXZ54iSpC_7CoxP33Yk1eoRbIabZYol-SY,4532
250
+ figrecipe/_utils/_units.py,sha256=EJiG4-Fle3C5oQ7vNIqG_Ms_vru_0NPj39ESEXO84ZY,4656
251
+ figrecipe/_wrappers/__init__.py,sha256=CcBUID5G6Mo_bNGpCaz5vbfB8CG7XtF-9lOm7kShQPw,214
252
+ figrecipe/_wrappers/_axes.py,sha256=T7HRhkJtUXhnc6eD6H8jQmeyI-DcAUpsy2l9adALynw,14136
253
+ figrecipe/_wrappers/_axes_helpers.py,sha256=ej6CkvtxVCLp8CIwGliYs6YV-fB4Cncc9BoVBpdIaf8,4143
254
+ figrecipe/_wrappers/_axes_plots.py,sha256=6FJY6gOnEDJ5w7UDdArLHVBEIZQqBF6nx3Y2SDeEPVA,11334
255
+ figrecipe/_wrappers/_axes_seaborn.py,sha256=IryjtLnoUC-ezf4sk9oe3ZzYUPC8PpGgxYkYBspj1s8,4837
256
+ figrecipe/_wrappers/_caption_generator.py,sha256=KeKtNqjvE-RbY14XSNFhvjqN2A4bouVVq3pVtktlLXI,5803
257
+ figrecipe/_wrappers/_figure.py,sha256=H0scMv5POi8AKkuf89ZPVunlcGky2L1dk2TwtZW9z2Y,16377
258
+ figrecipe/_wrappers/_panel_labels.py,sha256=EI3uySQ-rKe-H9IoFy6xh6_woAjGjPpU0O9zTSISNqE,3211
259
+ figrecipe/_wrappers/_plot_helpers.py,sha256=cwgVUTVyhNLZVMmzVopAcDopp0AoWlSndN6foJ2TTuQ,3613
260
+ figrecipe/_wrappers/_stat_annotation.py,sha256=cy2RdeU9zaeaJWoLO1pi5gn1-MdFWgCv50WGs1aq_Ho,8549
261
+ figrecipe/_wrappers/_violin_helpers.py,sha256=A8Z9MqHRmzT59eyUHuhQNfUOasA7N2GWv40fqoZB_aY,4496
262
+ figrecipe/styles/__init__.py,sha256=ex3pAljdQ3lwQ-u5aEc6wIRZfnxjRs8lJptfuArw16Y,1152
263
+ figrecipe/styles/_dotdict.py,sha256=z4nCFQQPZm4EZ-BXW86Uuhuz5wDqqEtJoDleMPterTk,2118
264
+ figrecipe/styles/_finalize.py,sha256=QddHTtaumyDrgZGd4Vguj7bPfn2Q-k8-v9pm5MNkIVA,4377
265
+ figrecipe/styles/_fonts.py,sha256=SmVkhWz_0d6Rg1uWbyqSjwzHBMIpWkwEv7vBgOR6ONs,1997
266
+ figrecipe/styles/_kwargs_converter.py,sha256=PGxjslnrSmGab20g0LXBOEdlBbjwa1VSonoQo3xKXGQ,7975
267
+ figrecipe/styles/_plot_styles.py,sha256=T19TAk0o8I7-ybMK4NnHKj6q2lvs2JjA7KalVrtOmTw,6353
268
+ figrecipe/styles/_style_applier.py,sha256=_CQBvh24lMEcRcVaNrFQAMFJuBAhDXmGdG6bCJB1l-w,9879
269
+ figrecipe/styles/_style_loader.py,sha256=5lqfzZHn7Q1cjjxp1i3CBDZ-7qJ6jGM-p8q3I98pWW8,11121
270
+ figrecipe/styles/_themes.py,sha256=vxXyR4uPZ7A9xbf7IJYsfmtMjwxB7_xVJni8b90dA84,5040
271
+ figrecipe/styles/presets/MATPLOTLIB.yaml,sha256=E1uap6XsmlY1_wvdb-8Adpal0zQejxS6zGR_5wZADmA,1839
272
+ figrecipe/styles/presets/SCITEX.yaml,sha256=_qQa_stHO6qAZQOjUHfCTYwaqb_GFFMRd-lm6F0xOBg,5394
273
+ figrecipe-0.9.0.dist-info/METADATA,sha256=YTnKn9f8lIFrDCvebdXS_1wPVwr57ebF6SVPZlbgOLA,14942
274
+ figrecipe-0.9.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
275
+ figrecipe-0.9.0.dist-info/entry_points.txt,sha256=jK1DdZ-DcseL9vqtlNLhfmDsV6kTc-7yKi4UAtdHOUA,50
276
+ figrecipe-0.9.0.dist-info/licenses/LICENSE,sha256=TfPDBt3ar0uv_f9cqCDMZ5rIzW3CY8anRRd4PkL6ejs,34522
277
+ figrecipe-0.9.0.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ figrecipe = figrecipe._cli:main