boris-behav-obs 8.9.16__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 (129) hide show
  1. boris/__init__.py +1 -1
  2. boris/__main__.py +1 -1
  3. boris/about.py +36 -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 +161 -77
  24. boris/config_file.py +63 -83
  25. boris/connections.py +112 -57
  26. boris/converters.py +13 -37
  27. boris/converters_ui.py +187 -110
  28. boris/cooccurence.py +250 -0
  29. boris/core.py +2511 -1824
  30. boris/core_qrc.py +15895 -10185
  31. boris/core_ui.py +946 -792
  32. boris/db_functions.py +21 -41
  33. boris/dev.py +134 -0
  34. boris/dialog.py +505 -244
  35. boris/duration_widget.py +15 -20
  36. boris/edit_event.py +84 -28
  37. boris/edit_event_ui.py +214 -78
  38. boris/event_operations.py +517 -415
  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 +213 -583
  43. boris/export_observation.py +98 -611
  44. boris/external_processes.py +156 -97
  45. boris/geometric_measurement.py +652 -287
  46. boris/gui_utilities.py +91 -14
  47. boris/image_overlay.py +9 -9
  48. boris/import_observations.py +190 -98
  49. boris/ipc_mpv.py +325 -0
  50. boris/irr.py +26 -63
  51. boris/latency.py +34 -25
  52. boris/measurement_widget.py +14 -18
  53. boris/media_file.py +52 -84
  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 +655 -310
  60. boris/observation_operations.py +1036 -404
  61. boris/observation_ui.py +584 -356
  62. boris/observations_list.py +71 -53
  63. boris/otx_parser.py +74 -80
  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 +43 -46
  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 +685 -228
  81. boris/project.py +448 -293
  82. boris/project_functions.py +689 -254
  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 -199
  89. boris/select_subj_behav.py +67 -39
  90. boris/state_events.py +53 -37
  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 +766 -266
  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 +125 -28
  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.9.16.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/boris_ui.py +0 -886
  111. boris/converters.ui +0 -289
  112. boris/core.qrc +0 -35
  113. boris/core.ui +0 -1543
  114. boris/edit_event.ui +0 -175
  115. boris/icons/logo_eye.ico +0 -0
  116. boris/map_creator.py +0 -850
  117. boris/observation.ui +0 -773
  118. boris/param_panel.ui +0 -379
  119. boris/preferences.ui +0 -537
  120. boris/project.ui +0 -1069
  121. boris/project_server.py +0 -236
  122. boris/vlc.py +0 -10343
  123. boris/vlc_local.py +0 -90
  124. boris_behav_obs-8.9.16.dist-info/LICENSE.TXT +0 -674
  125. boris_behav_obs-8.9.16.dist-info/METADATA +0 -129
  126. boris_behav_obs-8.9.16.dist-info/RECORD +0 -108
  127. boris_behav_obs-8.9.16.dist-info/entry_points.txt +0 -2
  128. {boris → boris_behav_obs-9.7.6.dist-info/licenses}/LICENSE.TXT +0 -0
  129. {boris_behav_obs-8.9.16.dist-info → boris_behav_obs-9.7.6.dist-info}/top_level.txt +0 -0
@@ -1,129 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: boris-behav-obs
3
- Version: 8.9.16
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
- License-File: LICENSE.TXT
26
- Requires-Dist: exifread (>=3.0.0)
27
- Requires-Dist: numpy (>=1.21)
28
- Requires-Dist: matplotlib (>=3.3.3)
29
- Requires-Dist: pandas (>=1.3.5)
30
- Requires-Dist: tablib[cli,html,ods,pandas,xls,xlsx] (>=3)
31
- Requires-Dist: pyqt5 (>=5.15)
32
- Requires-Dist: pyreadr
33
-
34
- ===============================================================
35
- Behavioral Observation Research Interactive Software (BORIS)
36
- ===============================================================
37
-
38
- .. image:: https://github.com/olivierfriard/BORIS/blob/master/boris/icons/logo_boris.png?raw=true
39
- :target: https://www.boris.unito.it
40
-
41
-
42
- BORIS is an easy-to-use event logging software for video/audio coding or live observations.
43
-
44
- 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>`_.
45
-
46
- It provides also some analysis tools like time budget.
47
-
48
- The BORIS paper has more than `1000 citations in peer-reviewed scientific publications <http://www.boris.unito.it/pages/citations.html>`_.
49
-
50
- See http://www.boris.unito.it
51
-
52
-
53
- .. image:: https://img.shields.io/badge/Made%20with-Python-1f425f.svg
54
- :target: https://www.python.org/
55
-
56
- .. image:: https://static.pepy.tech/personalized-badge/boris-behav-obs?period=total&units=international_system&left_color=black&right_color=orange&left_text=Downloads
57
- :target: https://pepy.tech/project/boris-behav-obs
58
-
59
-
60
- .. image:: https://img.shields.io/pypi/v/boris-behav-obs.svg
61
- :target: https://pypi.org/project/boris-behav-obs/
62
-
63
-
64
-
65
-
66
- Documentation
67
- -----------------------------------------------------------------------
68
-
69
-
70
- The documentation provides a good starting point for learning how to use BORIS: http://boris.readthedocs.io/
71
-
72
- Some video tutorials are available: http://www.boris.unito.it/pages/video_tutorials.html
73
-
74
-
75
-
76
-
77
-
78
- Bug reports and feature requests
79
- -----------------------------------------------------------------------
80
-
81
- To search for bugs, report them or request a feature, please use the github tracker:
82
- https://github.com/olivierfriard/BORIS/issues
83
-
84
-
85
-
86
-
87
-
88
- Citing BORIS
89
- -----------------------------------------------------------------------
90
-
91
- Please acknowledge and cite the use of this software and its authors when
92
- results are used in publications or published elsewhere. You can use the
93
- following BibTex entry
94
-
95
- ::
96
-
97
- @article {MEE3:MEE312584,
98
- author = {Friard, Olivier and Gamba, Marco},
99
- title = {BORIS: a free, versatile open-source event-logging software for video/audio coding and live observations},
100
- journal = {Methods in Ecology and Evolution},
101
- issn = {2041-210X},
102
- url = {http://dx.doi.org/10.1111/2041-210X.12584},
103
- doi = {10.1111/2041-210X.12584},
104
- pages = {1324--1330},
105
- keywords = {behavioural analysis, behaviour coding, coding scheme, ethology, observational data, ttime-budget},
106
- year = {2016},
107
- }
108
-
109
-
110
-
111
-
112
-
113
-
114
-
115
-
116
-
117
- Licence
118
- -----------------------------------------------------------------------
119
-
120
- Distributed with a `GPL v.3 license <LICENSE.TXT>`_
121
-
122
-
123
- Copyright (C) 2012-2023 Olivier Friard
124
-
125
-
126
-
127
-
128
-
129
-
@@ -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=XkaKapCEFCDl6tvQF1WT_q2N9OsGARcaE8e_ZYfA7uM,5492
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/boris_ui.py,sha256=oGTwPbJafFrHKTk-blVY_gvUz8wUwuJFSs9GKhVR3oQ,61681
15
- boris/cmd_arguments.py,sha256=B5Lqi3y03GP1J-AFHc8B28seBCBwmfgM9eKQWvL-znY,1605
16
- boris/coding_pad.py,sha256=G3Dd3utmnl0gucUlj5Ispisb7KueJ-zW8PJ0sGYnQ0Y,10576
17
- boris/config.py,sha256=N7X-suUNckWhEF_zdp-RUFciHqUhoObpwKafHMyT_1c,15179
18
- boris/config_file.py,sha256=BSLyQFPK6xVdwf6BkMQ5KaWUbyDOba0goaqnb5_uJd4,13907
19
- boris/connections.py,sha256=26h3euMmkx_JTJ_QrBkASPuMo-QxjLBiI_qYgYEaTKo,16920
20
- boris/converters.py,sha256=_sFFJKC1MoOoD5rcIvO0gAyhB1wyYprwDUhuyPdMw4Y,11967
21
- boris/converters.ui,sha256=hOcg0QkCMdnLf3a9DR3O2gZBl7EbX495VGndWnQVE4E,7400
22
- boris/converters_ui.py,sha256=firMWVgS3c492FF-YFv3FehOBLsbBHKaLEaVcoVctgc,8745
23
- boris/core.py,sha256=S8Xj4Tt0gK05uDPZbcq9F6TD__h0dpPm_LG-Uxq89Go,199870
24
- boris/core.qrc,sha256=ieE4KLZv6OtKAHRlImTct72mhwtE6vRJxcBjC-31Lwg,2028
25
- boris/core.ui,sha256=pczMSO2zzvHWpalqjaEGq7-6a3RYP2m5GhC_lIPElas,45337
26
- boris/core_qrc.py,sha256=U9pQa-Z1qVMdc4t4-oWIpHV-Ig6HPc5aCh4mDd5JQnA,663721
27
- boris/core_ui.py,sha256=ZI1Jtb700grqf50nQ67fYwsZNYmxIE5M9Z_AZWfTjQc,67401
28
- boris/db_functions.py,sha256=PN7FGendzzq7PEc5u05p8ne9tIoMEuOpjuK6YnpkMRA,13456
29
- boris/dialog.py,sha256=WaGkQ9whr0pF5PYrwYB8L4ZAUpd_WEfGnW1i2dMmY8o,25535
30
- boris/duration_widget.py,sha256=lRmkAsen3c0BGz_DxEEGhH-1kPA7NbGCu1fjMoRl4KE,6962
31
- boris/edit_event.py,sha256=lIT3KBI3kLU4UWZQ3OvPW9G7SMgTP-h7x04647u1Fwc,5771
32
- boris/edit_event.ui,sha256=iaEU1kKtQMYlX_uC_Pva_VCY_BYtTZfOjCUBNi5iV-0,4637
33
- boris/edit_event_ui.py,sha256=IEmrzE44Yo07uCQBb-ybb-Q3wDoxbpitjLGbKLoKXtc,5003
34
- boris/event_operations.py,sha256=rjf3nbzhOJPa-PGEIE2Mfwjna2iKdb1kG84CipHJ3Qw,36955
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=gk9hp5oYqpTDFar7Fq8uv-_e4rDs8BXi9vx0h8Ra-J8,50452
39
- boris/export_observation.py,sha256=fHnvoZfDWRfHNMko9nipBWUfXrH_4mQhGMVR9Qdwu9c,67525
40
- boris/external_processes.py,sha256=x5e-bdgj-1cdh6QZ9MoH1KaJP89o4gQ0UxOVF4Iknyk,10385
41
- boris/geometric_measurement.py,sha256=aFG9sQRKdgImsmTBoFktUGhnOXaKm5r5Dtyr4EoOD9U,20367
42
- boris/gui_utilities.py,sha256=CcXbkg9q1JEMAx1RGCvRHcOk6pr0pYQmgQCu0X0jLNk,2088
43
- boris/image_overlay.py,sha256=FzB8awJhIep0Hs5HHXbdOaRtErSI9yOAq9mHqpB-uu8,2482
44
- boris/import_observations.py,sha256=nXopMWzo_mW7xjVDA0zPMWc0L9YZb-lrLY0IRrJZqJg,6129
45
- boris/irr.py,sha256=FApXr3PGnrWLMGFAHPGv0lLzGGMuvxwH2ETgU3pOUc8,22704
46
- boris/latency.py,sha256=CJwEYlqTr0O8oDZ585SK5p52cwmZEbZPZQQSxyJ6ZHA,9446
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=5W8jgrlqfJ1A2qL504E5Sj0E-HPTuINWpb06I5VKV7Y,6581
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=Q7d6MOYUnycCEZ67H-zYN7ddmi7oEUuuFWhR6WdDUzY,43492
55
- boris/observation.ui,sha256=g-ItYbtrm8IhoLuFdi-qWEjYe01OvjQLGDyflkWLB1M,24553
56
- boris/observation_operations.py,sha256=2_wQpQFe_DPulhnqyJoDjIoDGa15NiCWdRpZMXqGbSk,75853
57
- boris/observation_ui.py,sha256=f2zKjRKA9gT26j6uGEW-BwJvWo_hNoFXoJ_ZuEOIwqg,27726
58
- boris/observations_list.py,sha256=oySXWqI6E0-Q2fHc4b7_rfJvyTfhoUmxZ3QD5J_UlXM,10217
59
- boris/otx_parser.py,sha256=PX-9uy_Hm8-jIzUnl8xiouoEHt-xMaH2lsh2pByfz_A,15438
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=N7YQFWRzrrIVfc6eXe_Y44jUIK4nyOGpxiVtCGOX7io,16369
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=kqA-utNwZFFzgVfwndS-l3FdZfwvsaMZNvVs7wJwcQ8,17557
71
- boris/preferences_ui.py,sha256=8bDX6NAO6o28cIohTsuK-qlKeAzuzx6BAMz1J-oQ6SM,19812
72
- boris/project.py,sha256=UM4uc4T9IHZ4NLUbHfy-AVR2xur20SHg470PqTQF50A,76679
73
- boris/project.ui,sha256=bmyVhdqjHQslzVDxI47b0VZ29OR74jdq9i5J0msTWcs,35853
74
- boris/project_functions.py,sha256=R_qS5MgvKTbsA_y5SZOTqQ6YIn5k_JyVDjozhIkYigU,66170
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=fPFrESVfplqHd3Sx_swE5sreRtXIcRdHH55ChExlqUY,14711
82
- boris/select_subj_behav.py,sha256=FRxKYYS_DanGNAKHRcdlHoW1Mh9HYhIescrtlI9BHos,10202
83
- boris/state_events.py,sha256=8UF5zECCSaI95SD-h7icXqR_C_7zYLSJBEVhfwVSSNg,6909
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=gYhoSWxf25bJ_X1Z-dcEmfgEAOUfrgaEMvm9dxWTgRw,39791
90
- boris/version.py,sha256=xlK7Bn1k8m8nNHNxoSK09eRXOhan61pfuJfGJX0HM90,788
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=V4cHa-gC9NsECul4bpc6wO79CM3WZeZQ84otZh_kAys,7334
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.9.16.dist-info/LICENSE.TXT,sha256=WJ7YI-moTFb-uVrFjnzzhGJrnL9P2iqQe8NuED3hutI,35141
104
- boris_behav_obs-8.9.16.dist-info/METADATA,sha256=Blg2uma2k0VuJ9Td5hL3FsTUk38g4w62ZGsAdtOgSTU,4141
105
- boris_behav_obs-8.9.16.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
106
- boris_behav_obs-8.9.16.dist-info/entry_points.txt,sha256=fuO7JxKFLOm6xp6m3JHRA1UO_QW1dYU-F0IooA1NqQs,37
107
- boris_behav_obs-8.9.16.dist-info/top_level.txt,sha256=fJSgm62S7WesiwTorGbOO4nNN0yzgZ3klgfGi3Px4qI,6
108
- boris_behav_obs-8.9.16.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- boris = boris:main