boris-behav-obs 8.12__py3-none-any.whl → 9.7.6__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.

Potentially problematic release.


This version of boris-behav-obs might be problematic. Click here for more details.

Files changed (128) hide show
  1. boris/__init__.py +1 -1
  2. boris/__main__.py +1 -1
  3. boris/about.py +28 -39
  4. boris/add_modifier.py +122 -109
  5. boris/add_modifier_ui.py +239 -135
  6. boris/advanced_event_filtering.py +81 -45
  7. boris/analysis_plugins/__init__.py +0 -0
  8. boris/analysis_plugins/_latency.py +59 -0
  9. boris/analysis_plugins/irr_cohen_kappa.py +109 -0
  10. boris/analysis_plugins/irr_cohen_kappa_with_modifiers.py +112 -0
  11. boris/analysis_plugins/irr_weighted_cohen_kappa.py +157 -0
  12. boris/analysis_plugins/irr_weighted_cohen_kappa_with_modifiers.py +162 -0
  13. boris/analysis_plugins/list_of_dataframe_columns.py +22 -0
  14. boris/analysis_plugins/number_of_occurences.py +22 -0
  15. boris/analysis_plugins/number_of_occurences_by_independent_variable.py +54 -0
  16. boris/analysis_plugins/time_budget.py +61 -0
  17. boris/behav_coding_map_creator.py +228 -229
  18. boris/behavior_binary_table.py +33 -50
  19. boris/behaviors_coding_map.py +17 -18
  20. boris/boris_cli.py +6 -25
  21. boris/cmd_arguments.py +12 -1
  22. boris/coding_pad.py +42 -49
  23. boris/config.py +141 -65
  24. boris/config_file.py +58 -67
  25. boris/connections.py +107 -61
  26. boris/converters.py +13 -37
  27. boris/converters_ui.py +187 -110
  28. boris/cooccurence.py +250 -0
  29. boris/core.py +2373 -1786
  30. boris/core_qrc.py +15895 -10743
  31. boris/core_ui.py +943 -798
  32. boris/db_functions.py +17 -42
  33. boris/dev.py +109 -8
  34. boris/dialog.py +482 -236
  35. boris/duration_widget.py +9 -14
  36. boris/edit_event.py +61 -31
  37. boris/edit_event_ui.py +208 -97
  38. boris/event_operations.py +408 -293
  39. boris/events_cursor.py +25 -17
  40. boris/events_snapshots.py +36 -82
  41. boris/exclusion_matrix.py +4 -9
  42. boris/export_events.py +184 -223
  43. boris/export_observation.py +74 -100
  44. boris/external_processes.py +123 -98
  45. boris/geometric_measurement.py +644 -290
  46. boris/gui_utilities.py +91 -14
  47. boris/image_overlay.py +4 -4
  48. boris/import_observations.py +190 -98
  49. boris/ipc_mpv.py +325 -0
  50. boris/irr.py +20 -57
  51. boris/latency.py +31 -24
  52. boris/measurement_widget.py +14 -18
  53. boris/media_file.py +17 -19
  54. boris/menu_options.py +17 -6
  55. boris/modifier_coding_map_creator.py +1013 -0
  56. boris/modifiers_coding_map.py +7 -9
  57. boris/mpv.py +1 -0
  58. boris/mpv2.py +732 -705
  59. boris/observation.py +533 -221
  60. boris/observation_operations.py +1025 -390
  61. boris/observation_ui.py +572 -362
  62. boris/observations_list.py +71 -53
  63. boris/otx_parser.py +74 -68
  64. boris/param_panel.py +31 -16
  65. boris/param_panel_ui.py +254 -138
  66. boris/player_dock_widget.py +90 -60
  67. boris/plot_data_module.py +25 -33
  68. boris/plot_events.py +127 -90
  69. boris/plot_events_rt.py +17 -31
  70. boris/plot_spectrogram_rt.py +95 -30
  71. boris/plot_waveform_rt.py +32 -21
  72. boris/plugins.py +431 -0
  73. boris/portion/__init__.py +18 -8
  74. boris/portion/const.py +35 -18
  75. boris/portion/dict.py +5 -5
  76. boris/portion/func.py +2 -2
  77. boris/portion/interval.py +21 -41
  78. boris/portion/io.py +41 -32
  79. boris/preferences.py +306 -83
  80. boris/preferences_ui.py +684 -227
  81. boris/project.py +448 -293
  82. boris/project_functions.py +671 -238
  83. boris/project_import_export.py +213 -222
  84. boris/project_ui.py +674 -438
  85. boris/qrc_boris.py +6 -3
  86. boris/qrc_boris5.py +6 -3
  87. boris/select_modifiers.py +74 -48
  88. boris/select_observations.py +20 -198
  89. boris/select_subj_behav.py +67 -39
  90. boris/state_events.py +52 -35
  91. boris/subjects_pad.py +6 -9
  92. boris/synthetic_time_budget.py +45 -28
  93. boris/time_budget_functions.py +171 -171
  94. boris/time_budget_widget.py +84 -114
  95. boris/transitions.py +41 -47
  96. boris/utilities.py +627 -236
  97. boris/version.py +3 -3
  98. boris/video_equalizer.py +16 -14
  99. boris/video_equalizer_ui.py +199 -130
  100. boris/video_operations.py +95 -29
  101. boris/view_df.py +104 -0
  102. boris/view_df_ui.py +75 -0
  103. boris/write_event.py +538 -0
  104. boris_behav_obs-9.7.6.dist-info/METADATA +139 -0
  105. boris_behav_obs-9.7.6.dist-info/RECORD +109 -0
  106. {boris_behav_obs-8.12.dist-info → boris_behav_obs-9.7.6.dist-info}/WHEEL +1 -1
  107. boris_behav_obs-9.7.6.dist-info/entry_points.txt +2 -0
  108. boris/README.TXT +0 -22
  109. boris/add_modifier.ui +0 -323
  110. boris/converters.ui +0 -289
  111. boris/core.qrc +0 -36
  112. boris/core.ui +0 -1556
  113. boris/edit_event.ui +0 -233
  114. boris/icons/logo_eye.ico +0 -0
  115. boris/map_creator.py +0 -850
  116. boris/observation.ui +0 -814
  117. boris/param_panel.ui +0 -379
  118. boris/preferences.ui +0 -537
  119. boris/project.ui +0 -1069
  120. boris/project_server.py +0 -236
  121. boris/vlc.py +0 -10343
  122. boris/vlc_local.py +0 -90
  123. boris_behav_obs-8.12.dist-info/LICENSE.TXT +0 -674
  124. boris_behav_obs-8.12.dist-info/METADATA +0 -128
  125. boris_behav_obs-8.12.dist-info/RECORD +0 -108
  126. boris_behav_obs-8.12.dist-info/entry_points.txt +0 -3
  127. {boris → boris_behav_obs-9.7.6.dist-info/licenses}/LICENSE.TXT +0 -0
  128. {boris_behav_obs-8.12.dist-info → boris_behav_obs-9.7.6.dist-info}/top_level.txt +0 -0
@@ -1,128 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: boris-behav-obs
3
- Version: 8.12
4
- Summary: BORIS - Behavioral Observation Research Interactive Software
5
- Home-page: http://www.boris.unito.it
6
- Author: Olivier Friard - Marco Gamba
7
- Author-email: olivier.friard@unito.it
8
- License: UNKNOWN
9
- Project-URL: Documentation, https://boris.readthedocs.io/en/latest/
10
- Project-URL: Changelog, https://github.com/olivierfriard/BORIS/wiki/BORIS-change-log-v.8
11
- Project-URL: Source code, https://github.com/olivierfriard/BORIS
12
- Project-URL: Issues, https://github.com/olivierfriard/BORIS/issues
13
- Platform: UNKNOWN
14
- Classifier: Topic :: Scientific/Engineering
15
- Classifier: Intended Audience :: Science/Research
16
- Classifier: Intended Audience :: Education
17
- Classifier: Programming Language :: Python :: 3.8
18
- Classifier: Programming Language :: Python :: 3.9
19
- Classifier: Programming Language :: Python :: 3.10
20
- Classifier: Programming Language :: Python :: 3.11
21
- Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
22
- Classifier: Operating System :: OS Independent
23
- Requires-Python: >=3.8
24
- Description-Content-Type: text/x-rst
25
- Requires-Dist: exifread (>=3.0.0)
26
- Requires-Dist: numpy (>=1.21)
27
- Requires-Dist: matplotlib (>=3.3.3)
28
- Requires-Dist: pandas (>=1.3.5)
29
- Requires-Dist: tablib[cli,html,ods,pandas,xls,xlsx] (>=3)
30
- Requires-Dist: pyqt5 (>=5.15)
31
- Requires-Dist: pyreadr
32
-
33
- ===============================================================
34
- Behavioral Observation Research Interactive Software (BORIS)
35
- ===============================================================
36
-
37
- .. image:: https://github.com/olivierfriard/BORIS/blob/master/boris/icons/logo_boris.png?raw=true
38
- :target: https://www.boris.unito.it
39
-
40
-
41
- BORIS is an easy-to-use event logging software for video/audio coding or live observations.
42
-
43
- BORIS is a free and open-source software available for GNU/Linux and Windows. You can run an `old version of BORIS on MacOS <http://www.boris.unito.it/pages/download_mac>`_.
44
-
45
- It provides also some analysis tools like time budget.
46
-
47
- The BORIS paper has more than `1000 citations in peer-reviewed scientific publications <http://www.boris.unito.it/pages/citations.html>`_.
48
-
49
- See http://www.boris.unito.it
50
-
51
-
52
- .. image:: https://img.shields.io/badge/Made%20with-Python-1f425f.svg
53
- :target: https://www.python.org/
54
-
55
- .. image:: https://static.pepy.tech/personalized-badge/boris-behav-obs?period=total&units=international_system&left_color=black&right_color=orange&left_text=Downloads
56
- :target: https://pepy.tech/project/boris-behav-obs
57
-
58
-
59
- .. image:: https://img.shields.io/pypi/v/boris-behav-obs.svg
60
- :target: https://pypi.org/project/boris-behav-obs/
61
-
62
-
63
-
64
-
65
- Documentation
66
- -----------------------------------------------------------------------
67
-
68
-
69
- The documentation provides a good starting point for learning how to use BORIS: http://boris.readthedocs.io/
70
-
71
- Some video tutorials are available: http://www.boris.unito.it/pages/video_tutorials.html
72
-
73
-
74
-
75
-
76
-
77
- Bug reports and feature requests
78
- -----------------------------------------------------------------------
79
-
80
- To search for bugs, report them or request a feature, please use the github tracker:
81
- https://github.com/olivierfriard/BORIS/issues
82
-
83
-
84
-
85
-
86
-
87
- Citing BORIS
88
- -----------------------------------------------------------------------
89
-
90
- Please acknowledge and cite the use of this software and its authors when
91
- results are used in publications or published elsewhere. You can use the
92
- following BibTex entry
93
-
94
- ::
95
-
96
- @article {MEE3:MEE312584,
97
- author = {Friard, Olivier and Gamba, Marco},
98
- title = {BORIS: a free, versatile open-source event-logging software for video/audio coding and live observations},
99
- journal = {Methods in Ecology and Evolution},
100
- issn = {2041-210X},
101
- url = {http://dx.doi.org/10.1111/2041-210X.12584},
102
- doi = {10.1111/2041-210X.12584},
103
- pages = {1324--1330},
104
- keywords = {behavioural analysis, behaviour coding, coding scheme, ethology, observational data, ttime-budget},
105
- year = {2016},
106
- }
107
-
108
-
109
-
110
-
111
-
112
-
113
-
114
-
115
-
116
- Licence
117
- -----------------------------------------------------------------------
118
-
119
- Distributed with a `GPL v.3 license <LICENSE.TXT>`_
120
-
121
-
122
- Copyright (C) 2012-2023 Olivier Friard
123
-
124
-
125
-
126
-
127
-
128
-
@@ -1,108 +0,0 @@
1
- boris/LICENSE.TXT,sha256=WJ7YI-moTFb-uVrFjnzzhGJrnL9P2iqQe8NuED3hutI,35141
2
- boris/README.TXT,sha256=hFZVHLLrHU5Wcua2UWKavo9jC4tH6mHMNBMNXLronbE,788
3
- boris/__init__.py,sha256=Te-HmZBlcO6x0iErfuGvuteodkikd81yujpohPh_Us8,773
4
- boris/__main__.py,sha256=khQ4ugAHO2-qWjkEX3dC7UcdWtiezLhyXTXZir1nZak,764
5
- boris/about.py,sha256=wejcM8QnKnVw6hFcUjcAOEIKkLQpN_Yydg0uqhQkB8I,5751
6
- boris/add_modifier.py,sha256=nWAfkS8Uy6k2LQJCpOyzBYS8Ehs7CFjIjJqR8LcHYgo,24935
7
- boris/add_modifier.ui,sha256=vd6LEry_FOBw9Oix7XxXyMTxq6vowRSel896Pd5N4JI,9388
8
- boris/add_modifier_ui.py,sha256=8NZ0UEHicjhuR3krddKGHxGiByUXygUwiUH3VU4mCzc,10237
9
- boris/advanced_event_filtering.py,sha256=FuxcHye_XpfMzP9bYEpIzfmVkw7A7MAS0dTl7eLHbTc,14242
10
- boris/behav_coding_map_creator.py,sha256=ryNMqBAuEe7Igm0E9PbnYh4kPBjS36IZzSf0bDHhbKg,38313
11
- boris/behavior_binary_table.py,sha256=wjv4xw_aa5sVIc9IVjd9ats0L7mnOtxRjDVUw8lK7_I,12033
12
- boris/behaviors_coding_map.py,sha256=YO2kRJB7lje3TmUKKFujWC7dputE4G8AqVfMMzid1vo,7214
13
- boris/boris_cli.py,sha256=SrVduhf7K2MMWFTgRRgovW8jHGoNKoAE9-PAESsX1QE,13359
14
- boris/cmd_arguments.py,sha256=B5Lqi3y03GP1J-AFHc8B28seBCBwmfgM9eKQWvL-znY,1605
15
- boris/coding_pad.py,sha256=G3Dd3utmnl0gucUlj5Ispisb7KueJ-zW8PJ0sGYnQ0Y,10576
16
- boris/config.py,sha256=MKJGvROGomFyxyHWSfTj_fNf6TDzIFCr3Pn8QMi9zCY,15570
17
- boris/config_file.py,sha256=50khxjDdToocIjNPCR--BaCjF1PxR0J0jaUJgC2OY10,13387
18
- boris/connections.py,sha256=H1bAHtCfZ-vwCDoRXJoqFNmK271QgdKEErUOfy2yEaA,17368
19
- boris/converters.py,sha256=_sFFJKC1MoOoD5rcIvO0gAyhB1wyYprwDUhuyPdMw4Y,11967
20
- boris/converters.ui,sha256=hOcg0QkCMdnLf3a9DR3O2gZBl7EbX495VGndWnQVE4E,7400
21
- boris/converters_ui.py,sha256=firMWVgS3c492FF-YFv3FehOBLsbBHKaLEaVcoVctgc,8745
22
- boris/core.py,sha256=M-hxeG2G-L6PhSKB7vogNPVXJcmjgBUhFMLf7D2hK1U,203223
23
- boris/core.qrc,sha256=pjIziXdzmENE13qhKSgCVZtPoc7uaNcgaSMWpBTNRtY,2119
24
- boris/core.ui,sha256=Hdgx9ezjIqdiWi2INAHcQVkm-4TD9LBIaeWbwP4-PLk,45751
25
- boris/core_qrc.py,sha256=AOi-sCPU6yBYO9nwpCuRZ5i-9_kGEoipNDUnjMOPL3o,700225
26
- boris/core_ui.py,sha256=qW3-sYGIguZER9AZWWXBddhdiHnKFAwQBB5l4sGVkcw,68106
27
- boris/db_functions.py,sha256=-w8tvEVi46ixXEuhk9HQoqlh0-CHtpHRt6bDdoyo_UM,13771
28
- boris/dev.py,sha256=p_l3q-frz4Tp438Y6SfbcjbmqQHupnNQZdl1T9QRc-8,707
29
- boris/dialog.py,sha256=hbNA4DZqj-lwDzotXY49hY79qaM2MbUwUMSvKLlKPvI,26066
30
- boris/duration_widget.py,sha256=_9aNlRGPdplUZu0uRUlytS5x0RF8O6PVzNRqjPvptqc,6943
31
- boris/edit_event.py,sha256=a_Up-qRdEg0glE-TZaUhlsLDhvlGlxl59d4XD8dJcpE,6714
32
- boris/edit_event.ui,sha256=l454RWpwsWqArrDI45I9QwyZWOySuf2TYDtyy2nC-q0,5755
33
- boris/edit_event_ui.py,sha256=TBNTY2ca97Zp-KIGq5dnxPO_38Ow05xm8WCiFa2bt-M,6648
34
- boris/event_operations.py,sha256=C1LHFRAf_73nrS0B6cZrw8O1HvJlGi5h4zP9vM5BxSE,35133
35
- boris/events_cursor.py,sha256=kSh1UzItXERYr3SQuQkIiuZOjXAGdmQjxn9ex_WDNRo,2008
36
- boris/events_snapshots.py,sha256=6QMxoYDoDMGrckP4e_OK37TfGOABTRuLgMALGxexTDY,28491
37
- boris/exclusion_matrix.py,sha256=2ZFM7todT5ytYDT6wqp7Fo60_MymjBv9EUI1cJ7v7zg,5378
38
- boris/export_events.py,sha256=H-447qwYgTGHpiz_7o_ThOb2kJI46OvKj1Weiu09tbU,38696
39
- boris/export_observation.py,sha256=ry_yrDrs3xmDbH_ewbZhFvFsAPatwry0ehYm1AAZGjM,50106
40
- boris/external_processes.py,sha256=PSKpFuzTy7EPpcASxIAsr2BEK8i9OB1j4PrxWSje54o,11660
41
- boris/geometric_measurement.py,sha256=KgT_K3kARoUfN0j59GgaJbQ9lkIab0N9vmrA5uA2CWA,20776
42
- boris/gui_utilities.py,sha256=CcXbkg9q1JEMAx1RGCvRHcOk6pr0pYQmgQCu0X0jLNk,2088
43
- boris/image_overlay.py,sha256=ffunMcRaiIvIsH4rLN_sj207q0lBDKyiPwOe3lQU_F0,2512
44
- boris/import_observations.py,sha256=nXopMWzo_mW7xjVDA0zPMWc0L9YZb-lrLY0IRrJZqJg,6129
45
- boris/irr.py,sha256=2Ni_CqcCapPsC7QctLn9xsWlaI9vmklygrDskb6dkLI,22660
46
- boris/latency.py,sha256=vSngETFnguJLod0sbj8QFBB8d7iW-JDosGGC-K027g8,9516
47
- boris/map_creator.py,sha256=_HS_5IF5m2XlgNhMBfq65V6f9uoUZ-hhu880QuJclCM,28326
48
- boris/measurement_widget.py,sha256=fkE6en2Ygsmml-Z2Q57Tyz287mXf4AIpA3cSZ3TdKYM,4540
49
- boris/media_file.py,sha256=yOBGmBgFeFqfokweipKRN2zpQL1Ig5oFEDvBLjchss4,4619
50
- boris/menu_options.py,sha256=qsSSXbsntNIUYtE5E8p7uvZAApHmwmGRSXn3aNto6A0,6673
51
- boris/modifiers_coding_map.py,sha256=C8EIrpVS-4MykkBUTjVIKKMIrx2O846q9agUTJCoWGo,4568
52
- boris/mpv.py,sha256=_5N3BCgih62OYEK29jATW30fA61pwPeQIDJpVq2cBm0,76409
53
- boris/mpv2.py,sha256=kkEJhiUjtySoPHpt-ZVaurm1JLb32SaUHdI8yrQzSjE,82561
54
- boris/observation.py,sha256=_qtMKeC8gJIWTxcoND848xIrnqSjzd--TyFGMgQuOg8,44807
55
- boris/observation.ui,sha256=94gTi0MhKiRgudW2dPPyLG6AYmJ_eGtaiQNo6Bl6zNg,25868
56
- boris/observation_operations.py,sha256=ryXWfifq_L6lAO0WIbGqVQxGhfZTuPMLucixOS61XXQ,76318
57
- boris/observation_ui.py,sha256=gv3XQEY6vbiO9XvWMaznRmv0nljZENMHeX8eXaIGCQo,28961
58
- boris/observations_list.py,sha256=oySXWqI6E0-Q2fHc4b7_rfJvyTfhoUmxZ3QD5J_UlXM,10217
59
- boris/otx_parser.py,sha256=91BORt4surEe5uDCSkagqkj-aRTYPnRYRfQ29LfaOu0,15231
60
- boris/param_panel.py,sha256=6P_urO4_i-L2mZZxAN1MnM2AO2a0ShcDt4oELaZ6mWk,7542
61
- boris/param_panel.ui,sha256=RHcf_MvWO4qPC3pB_L4ow4l_qTX21yRfrZvePhCSLsE,11013
62
- boris/param_panel_ui.py,sha256=R6Yfxd7m41_Mo5XCD9wlyAprrEKdCyBZm0jicwh_cGk,11704
63
- boris/player_dock_widget.py,sha256=CtDo4teZT5UxyZh_b2H_MV28AH13QZjsgXb47-OXOJc,4865
64
- boris/plot_data_module.py,sha256=ezEj0gV1I5D0a0ZHWlEnWcBgAK-h5QGfG_Fz4jUw5Zg,16628
65
- boris/plot_events.py,sha256=txlokA5xTemtvnryC3JoP-m2RLQzv6pFUuyq5UddmoY,22155
66
- boris/plot_events_rt.py,sha256=aJ5zc7CMEO9sDdIHRk7UBK4sPVaIksOCLx_rbBJfA1M,8451
67
- boris/plot_spectrogram_rt.py,sha256=fL5VmPjDHzOfDdn30UU1z1U8r1RGGxfQ_6FDT3uO50w,8141
68
- boris/plot_waveform_rt.py,sha256=McoWeoo1UtiQk-imGAu1cK7Bs6b_ORQLtyCJlZRRY-s,7212
69
- boris/preferences.py,sha256=jnSzCiPzABl8HFG_KmNz_VBgJD1fr-XQmKcaNOmecNA,10817
70
- boris/preferences.ui,sha256=MlqVY1Kb0I7BIvFYCA5I5OLqXgeADPSE8Y4NM3_evF8,17564
71
- boris/preferences_ui.py,sha256=SxCK2bL3JqRE7XcVqaIL5cVvHvTTR7uPnBkueXcf_xk,19861
72
- boris/project.py,sha256=UM4uc4T9IHZ4NLUbHfy-AVR2xur20SHg470PqTQF50A,76679
73
- boris/project.ui,sha256=bmyVhdqjHQslzVDxI47b0VZ29OR74jdq9i5J0msTWcs,35853
74
- boris/project_functions.py,sha256=f4n8hCzHxJuX-X4-Upt9YGfYZ1_X8bVppVW5my4aU7Y,66144
75
- boris/project_import_export.py,sha256=gAN7UBbjltlUXT762ICSjk4PRl68RYFLbSnGREpydsc,37804
76
- boris/project_server.py,sha256=3-ouajy5V0tBF4HAny9xdOHymNxd7SfBGHgHIgjDx34,7742
77
- boris/project_ui.py,sha256=ttim-xSAelDDtn5zHUAYRYQuXP0ANQoRE2Me8E5aGE0,35683
78
- boris/qrc_boris.py,sha256=4U2cD_fIBTtsTPhirOl9I3kTArOhXWYvfuO_A0M9N0I,675001
79
- boris/qrc_boris5.py,sha256=6bwT8OVtIr84nVIYp2ldUL7XL6WJi9zgJow6kgRxuIQ,161601
80
- boris/select_modifiers.py,sha256=HY27jb3jXCY4_005b5_nfTjAnsIjZERVxNzNyycyTzM,12238
81
- boris/select_observations.py,sha256=YaWCX5vQu0pPGWbSlsFgGv-KLbF4YVYGc-RRq9FilcU,14568
82
- boris/select_subj_behav.py,sha256=FRxKYYS_DanGNAKHRcdlHoW1Mh9HYhIescrtlI9BHos,10202
83
- boris/state_events.py,sha256=M1RNU6I9gAKqpBW3IxVNa9-uz3wB97gIJwUpzNB2OeA,6912
84
- boris/subjects_pad.py,sha256=sfBDanhswESr3kjBCpaG912i9xba6ZDZzgv_zlp5CkA,3508
85
- boris/synthetic_time_budget.py,sha256=-io6VLrjkkO10m8ShHbG59psBeG_z9PbGhBq6Kbw3P0,9785
86
- boris/time_budget_functions.py,sha256=qFJsNIITcjsJDBeDnv9ZoukAay2GXwN63MRucIaqqF0,49795
87
- boris/time_budget_widget.py,sha256=7zkfaEfDSb0qwqTkzXHJrqhKK-2s5QSDymROs21m88E,42750
88
- boris/transitions.py,sha256=qLA88SkGztDFvmuAdfeIJ-QSNwoyceSL0ElIi0hJTVM,12188
89
- boris/utilities.py,sha256=VAL0-TdFrJGJC5mGX3Vhna8cKV5_K3RxrgkIYhXCrVs,43175
90
- boris/version.py,sha256=0D30pTxEvdp2rPrawik3rDzyiKmOm91A_kD8bgmdIRU,786
91
- boris/video_equalizer.py,sha256=veuaFfuAVyF98hSEjyE449HGkdAjBUjCHuKiVq9cVsM,5725
92
- boris/video_equalizer_ui.py,sha256=A2_Sz9AAVnJygTRUeK_YXxf-WWQpxSSlFw0MjkxiwSg,9762
93
- boris/video_operations.py,sha256=GeUcaCgSqbVzJiIIQTiIohZIRD54aPagoLpqE-o8NZE,8780
94
- boris/vlc.py,sha256=DKdMvyfqwv6fApTLhunEtESDL_T0ggvKxLQkehELRs8,372633
95
- boris/vlc_local.py,sha256=GPsUSaoKEmux54Yr2cQLWxODmu6yEbicX5FFi2n_SK8,3120
96
- boris/icons/logo_eye.ico,sha256=pGgNoNXijGOuv6c_iaFR9OsjJ1GBqvrtzxNtfCLv_sc,45470
97
- boris/portion/__init__.py,sha256=ZBUG4I7YWhRkeWdP-JEpxhxldJlUYQkeaJseTjdhtJE,602
98
- boris/portion/const.py,sha256=hEp26BKcEg1Js4DfZsBHmDtJJts83Tl1HWQ0CNJNwEc,1588
99
- boris/portion/dict.py,sha256=SyHxc7PfDw2ufNLFQycwJtzmRfL48rDp4UrM2KN7IWc,11282
100
- boris/portion/func.py,sha256=3TkQtFKLfsqntwd27HSGHceFhnXHmT-EbNMqktElC5Q,2174
101
- boris/portion/interval.py,sha256=bAdUiJjGeUAPgsBAImwNeviiwfQq5odfhFZccAWzOTA,20299
102
- boris/portion/io.py,sha256=ppNeRpiLNrocF1yzGeuEUIhYMf2LfsR-cji3d0nmvUs,6371
103
- boris_behav_obs-8.12.dist-info/LICENSE.TXT,sha256=WJ7YI-moTFb-uVrFjnzzhGJrnL9P2iqQe8NuED3hutI,35141
104
- boris_behav_obs-8.12.dist-info/METADATA,sha256=qjJU2hNMdRmNzbr8F2XWwU67mrICmLBASiHR17CwKF8,4113
105
- boris_behav_obs-8.12.dist-info/WHEEL,sha256=EVRjI69F5qVjm_YgqcTXPnTAv3BfSUr0WVAHuSP3Xoo,92
106
- boris_behav_obs-8.12.dist-info/entry_points.txt,sha256=Cev0Tg399BeXkVborpJzni52QJTSflmkmgfaahYSCao,38
107
- boris_behav_obs-8.12.dist-info/top_level.txt,sha256=fJSgm62S7WesiwTorGbOO4nNN0yzgZ3klgfGi3Px4qI,6
108
- boris_behav_obs-8.12.dist-info/RECORD,,
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- boris = boris:main
3
-