boris-behav-obs 8.16.5__py3-none-any.whl → 9.7.12__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.
- boris/__init__.py +1 -1
- boris/__main__.py +1 -1
- boris/about.py +28 -40
- boris/add_modifier.py +88 -80
- boris/add_modifier_ui.py +266 -144
- boris/advanced_event_filtering.py +23 -29
- boris/analysis_plugins/__init__.py +0 -0
- boris/analysis_plugins/_export_to_feral.py +225 -0
- boris/analysis_plugins/_latency.py +59 -0
- boris/analysis_plugins/irr_cohen_kappa.py +109 -0
- boris/analysis_plugins/irr_cohen_kappa_with_modifiers.py +112 -0
- boris/analysis_plugins/irr_weighted_cohen_kappa.py +157 -0
- boris/analysis_plugins/irr_weighted_cohen_kappa_with_modifiers.py +162 -0
- boris/analysis_plugins/list_of_dataframe_columns.py +22 -0
- boris/analysis_plugins/number_of_occurences.py +22 -0
- boris/analysis_plugins/number_of_occurences_by_independent_variable.py +54 -0
- boris/analysis_plugins/time_budget.py +61 -0
- boris/behav_coding_map_creator.py +235 -236
- boris/behavior_binary_table.py +33 -50
- boris/behaviors_coding_map.py +17 -18
- boris/boris_cli.py +6 -25
- boris/cmd_arguments.py +12 -1
- boris/coding_pad.py +19 -36
- boris/config.py +109 -50
- boris/config_file.py +58 -67
- boris/connections.py +105 -58
- boris/converters.py +13 -37
- boris/converters_ui.py +187 -110
- boris/cooccurence.py +250 -0
- boris/core.py +2174 -1303
- boris/core_qrc.py +15892 -10829
- boris/core_ui.py +941 -806
- boris/db_functions.py +17 -42
- boris/dev.py +27 -7
- boris/dialog.py +461 -242
- boris/duration_widget.py +9 -14
- boris/edit_event.py +61 -31
- boris/edit_event_ui.py +208 -97
- boris/event_operations.py +405 -281
- boris/events_cursor.py +25 -17
- boris/events_snapshots.py +36 -82
- boris/exclusion_matrix.py +4 -9
- boris/export_events.py +180 -203
- boris/export_observation.py +60 -73
- boris/external_processes.py +123 -98
- boris/geometric_measurement.py +427 -218
- boris/gui_utilities.py +91 -14
- boris/image_overlay.py +4 -4
- boris/import_observations.py +190 -98
- boris/ipc_mpv.py +325 -0
- boris/irr.py +20 -57
- boris/latency.py +31 -24
- boris/measurement_widget.py +14 -18
- boris/media_file.py +17 -19
- boris/menu_options.py +16 -6
- boris/modifier_coding_map_creator.py +1013 -0
- boris/modifiers_coding_map.py +7 -9
- boris/mpv2.py +128 -35
- boris/observation.py +501 -211
- boris/observation_operations.py +1037 -393
- boris/observation_ui.py +573 -363
- boris/observations_list.py +51 -58
- boris/otx_parser.py +74 -68
- boris/param_panel.py +45 -59
- boris/param_panel_ui.py +254 -138
- boris/player_dock_widget.py +91 -56
- boris/plot_data_module.py +20 -53
- boris/plot_events.py +56 -153
- boris/plot_events_rt.py +16 -30
- boris/plot_spectrogram_rt.py +83 -56
- boris/plot_waveform_rt.py +27 -49
- boris/plugins.py +468 -0
- boris/portion/__init__.py +18 -8
- boris/portion/const.py +35 -18
- boris/portion/dict.py +5 -5
- boris/portion/func.py +2 -2
- boris/portion/interval.py +21 -41
- boris/portion/io.py +41 -32
- boris/preferences.py +307 -123
- boris/preferences_ui.py +686 -227
- boris/project.py +294 -271
- boris/project_functions.py +626 -537
- boris/project_import_export.py +204 -213
- boris/project_ui.py +673 -441
- boris/qrc_boris.py +6 -3
- boris/qrc_boris5.py +6 -3
- boris/select_modifiers.py +62 -90
- boris/select_observations.py +19 -197
- boris/select_subj_behav.py +67 -39
- boris/state_events.py +51 -33
- boris/subjects_pad.py +7 -9
- boris/synthetic_time_budget.py +42 -26
- boris/time_budget_functions.py +169 -169
- boris/time_budget_widget.py +77 -89
- boris/transitions.py +41 -41
- boris/utilities.py +594 -226
- boris/version.py +3 -3
- boris/video_equalizer.py +16 -14
- boris/video_equalizer_ui.py +199 -130
- boris/video_operations.py +86 -28
- boris/view_df.py +104 -0
- boris/view_df_ui.py +75 -0
- boris/write_event.py +240 -136
- boris_behav_obs-9.7.12.dist-info/METADATA +139 -0
- boris_behav_obs-9.7.12.dist-info/RECORD +110 -0
- {boris_behav_obs-8.16.5.dist-info → boris_behav_obs-9.7.12.dist-info}/WHEEL +1 -1
- boris_behav_obs-9.7.12.dist-info/entry_points.txt +2 -0
- boris/README.TXT +0 -22
- boris/add_modifier.ui +0 -323
- boris/converters.ui +0 -289
- boris/core.qrc +0 -37
- boris/core.ui +0 -1571
- boris/edit_event.ui +0 -233
- boris/icons/logo_eye.ico +0 -0
- boris/map_creator.py +0 -982
- boris/observation.ui +0 -814
- boris/param_panel.ui +0 -379
- boris/preferences.ui +0 -537
- boris/project.ui +0 -1074
- boris/vlc_local.py +0 -90
- boris_behav_obs-8.16.5.dist-info/LICENSE.TXT +0 -674
- boris_behav_obs-8.16.5.dist-info/METADATA +0 -134
- boris_behav_obs-8.16.5.dist-info/RECORD +0 -107
- boris_behav_obs-8.16.5.dist-info/entry_points.txt +0 -2
- {boris → boris_behav_obs-9.7.12.dist-info/licenses}/LICENSE.TXT +0 -0
- {boris_behav_obs-8.16.5.dist-info → boris_behav_obs-9.7.12.dist-info}/top_level.txt +0 -0
|
@@ -1,134 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: boris-behav-obs
|
|
3
|
-
Version: 8.16.5
|
|
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
|
-
BORIS (Behavioral Observation Research Interactive Software)
|
|
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://img.shields.io/pypi/pyversions/boris-behav-obs
|
|
57
|
-
|
|
58
|
-
.. image:: https://img.shields.io/pypi/l/boris-behav-obs
|
|
59
|
-
|
|
60
|
-
.. image:: https://static.pepy.tech/personalized-badge/boris-behav-obs?period=total&units=international_system&left_color=black&right_color=orange&left_text=Downloads
|
|
61
|
-
:target: https://pepy.tech/project/boris-behav-obs
|
|
62
|
-
|
|
63
|
-
.. image:: https://img.shields.io/github/commit-activity/m/olivierfriard/BORIS
|
|
64
|
-
|
|
65
|
-
.. image:: https://img.shields.io/pypi/v/boris-behav-obs.svg
|
|
66
|
-
:target: https://pypi.org/project/boris-behav-obs/
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
Documentation
|
|
72
|
-
-----------------------------------------------------------------------
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
The documentation provides a good starting point for learning how to use BORIS: http://boris.readthedocs.io/
|
|
76
|
-
|
|
77
|
-
Some video tutorials are available: http://www.boris.unito.it/pages/video_tutorials.html
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
Bug reports and feature requests
|
|
84
|
-
-----------------------------------------------------------------------
|
|
85
|
-
|
|
86
|
-
To search for bugs, report them or request a feature, please use the github tracker:
|
|
87
|
-
https://github.com/olivierfriard/BORIS/issues
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
Citing BORIS
|
|
94
|
-
-----------------------------------------------------------------------
|
|
95
|
-
|
|
96
|
-
Please acknowledge and cite the use of this software and its authors when
|
|
97
|
-
results are used in publications or published elsewhere. You can use the
|
|
98
|
-
following BibTex entry
|
|
99
|
-
|
|
100
|
-
::
|
|
101
|
-
|
|
102
|
-
@article {MEE3:MEE312584,
|
|
103
|
-
author = {Friard, Olivier and Gamba, Marco},
|
|
104
|
-
title = {BORIS: a free, versatile open-source event-logging software for video/audio coding and live observations},
|
|
105
|
-
journal = {Methods in Ecology and Evolution},
|
|
106
|
-
issn = {2041-210X},
|
|
107
|
-
url = {http://dx.doi.org/10.1111/2041-210X.12584},
|
|
108
|
-
doi = {10.1111/2041-210X.12584},
|
|
109
|
-
pages = {1324--1330},
|
|
110
|
-
keywords = {behavioural analysis, behaviour coding, coding scheme, ethology, observational data, ttime-budget},
|
|
111
|
-
year = {2016},
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
Licence
|
|
123
|
-
-----------------------------------------------------------------------
|
|
124
|
-
|
|
125
|
-
Distributed with a `GPL v.3 license <LICENSE.TXT>`_
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
Copyright (C) 2012-2023 Olivier Friard
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
@@ -1,107 +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=yc9SLqm-kUMa-M9TF404n3z-rwMNzbK1ROYcM5lxp5w,5795
|
|
6
|
-
boris/add_modifier.py,sha256=kOScuovxHuT_S6bjXP9hU1OlSfIAduI9MW4C7Lb7gnc,25169
|
|
7
|
-
boris/add_modifier.ui,sha256=HiaX_TO0qzbEE0CsezuKKqJKwZ2e1c8R_J4D2KaKg5w,9389
|
|
8
|
-
boris/add_modifier_ui.py,sha256=QovmV97MPoyX9Mb1OnIKxR6x5tXn2Z9FVi6qfwRwouw,10248
|
|
9
|
-
boris/advanced_event_filtering.py,sha256=KnN4pJFo0ulxdRh_yvWgLyGryy9FG-BjnRgNB4wQBP4,15401
|
|
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=ybpJajI5ejZLkWpceKuVL4cd-f2T9snxWRvvBGNfq4s,11154
|
|
16
|
-
boris/config.py,sha256=mYc6juXuFQjGx4uMWHgIFNlbnBq7EIr7xO4jREIWLbg,15941
|
|
17
|
-
boris/config_file.py,sha256=50khxjDdToocIjNPCR--BaCjF1PxR0J0jaUJgC2OY10,13387
|
|
18
|
-
boris/connections.py,sha256=MZKD7xIASuDq18SeeOHqTgN8IgSYX2HyH622fq5dRJI,17338
|
|
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=rVY7SI8SLE9eF3zngnnyCHEXVkCa-FE72E3vI7LHeQ8,192304
|
|
23
|
-
boris/core.qrc,sha256=yRd0vJk6al3ZnieQi6h0c-ybb0Fg_JXABL-Z8C3DMlo,2194
|
|
24
|
-
boris/core.ui,sha256=toDSV3Qp1w0guMRFS97Sr9ROQ6Z82Urx_xD9ntwVZ_U,46164
|
|
25
|
-
boris/core_qrc.py,sha256=Mjigugya2Oonqmk4SbNT4fgRXjRvU520ecOlrtp5Poo,705771
|
|
26
|
-
boris/core_ui.py,sha256=cuYus6Zuc92OHLn-o8HAAE8duPyHIJI_Irr6YIMkmzk,68710
|
|
27
|
-
boris/db_functions.py,sha256=-w8tvEVi46ixXEuhk9HQoqlh0-CHtpHRt6bDdoyo_UM,13771
|
|
28
|
-
boris/dev.py,sha256=kXd0CkARGOrZIw5aWdbtZdGCEldh9H17EbvW-mp6mgE,3109
|
|
29
|
-
boris/dialog.py,sha256=ggj5yx5hHh8WrVfrRD059Imim9_oUUptnhWMt98XWRk,26730
|
|
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=Paaze-9UyKxkxwmmtICrrln6EPQmcRV9FOc4L7Ptt78,35253
|
|
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=nO3mnoSbs2hdf77-Bw8PTlTOq9mYIpJyk_9bHpe2gSk,38564
|
|
39
|
-
boris/export_observation.py,sha256=mwzblWeCsCJvfBWaSDH_6xQWWIFpqU-1JPCxRhavpmw,50240
|
|
40
|
-
boris/external_processes.py,sha256=PSKpFuzTy7EPpcASxIAsr2BEK8i9OB1j4PrxWSje54o,11660
|
|
41
|
-
boris/geometric_measurement.py,sha256=dwDwJS6ERqYI9GNx0Wq4yl--EZ0hqLtNj5YkLnmulOg,25989
|
|
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=eW7AVc27hKWczHufs7U2Yc-j0hjJeaqX4ZvZC2pKM-Q,30590
|
|
48
|
-
boris/measurement_widget.py,sha256=fkE6en2Ygsmml-Z2Q57Tyz287mXf4AIpA3cSZ3TdKYM,4540
|
|
49
|
-
boris/media_file.py,sha256=yOBGmBgFeFqfokweipKRN2zpQL1Ig5oFEDvBLjchss4,4619
|
|
50
|
-
boris/menu_options.py,sha256=3cWdpEdaWhsRy7GzcgU4lIFf2nZx9DBJrkFZ4xn4P6I,6714
|
|
51
|
-
boris/modifiers_coding_map.py,sha256=C8EIrpVS-4MykkBUTjVIKKMIrx2O846q9agUTJCoWGo,4568
|
|
52
|
-
boris/mpv.py,sha256=EfzIHjPbgewG4w3smEtqEUPZoVwYmMQkL4Q8ZyW-a58,76410
|
|
53
|
-
boris/mpv2.py,sha256=Ou-mQLcaXok_EAOXtpqy7sSc_JECik_Txtk-l17XsBk,88054
|
|
54
|
-
boris/observation.py,sha256=y3h1KclTlFPNBfs7oiGotrWY7PrshyZ0AX6ggkQ83D4,45551
|
|
55
|
-
boris/observation.ui,sha256=w_3V9K-Xlx49zkzYoc5y_VczSZz7OqTNHbJeOdgswIA,25872
|
|
56
|
-
boris/observation_operations.py,sha256=ryXWfifq_L6lAO0WIbGqVQxGhfZTuPMLucixOS61XXQ,76318
|
|
57
|
-
boris/observation_ui.py,sha256=HvV-gkD9wfNlTAjByR_yoddcNDPZzAoH6uQLm-PnE-4,28971
|
|
58
|
-
boris/observations_list.py,sha256=DT8PeloC85xSo-EpIVvprLfpxffa1x9daXCiGXSovjE,10567
|
|
59
|
-
boris/otx_parser.py,sha256=91BORt4surEe5uDCSkagqkj-aRTYPnRYRfQ29LfaOu0,15231
|
|
60
|
-
boris/param_panel.py,sha256=sLe0F21xeGedQrQ92Lrpy_oHOiRLHasVooKyIxqUmMo,7899
|
|
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=6i1E3AaHqC8VHo7q2FvtZjyTtPUtnpm8oBvzclEa854,4690
|
|
64
|
-
boris/plot_data_module.py,sha256=381asZnR1DvMeXO8gMu6_pORrQrlaIpqP7tC_un9prA,16956
|
|
65
|
-
boris/plot_events.py,sha256=iDxVwITj5u6BLqpCxrsmicRl2fsigIRAuOOF-tgVAUI,25430
|
|
66
|
-
boris/plot_events_rt.py,sha256=bNEluGzI_sJ3Vpta3c0xw0RXoK3_X7iaQFz4EjEFYX4,8476
|
|
67
|
-
boris/plot_spectrogram_rt.py,sha256=mao5gD4gmor47hNerQxG2xH7oqDNoc6fIxwLYM3YVbA,8737
|
|
68
|
-
boris/plot_waveform_rt.py,sha256=a-NH0RVIKNM4NFJ0361IbV64RF2FPjctvIZr-luj_qU,7847
|
|
69
|
-
boris/preferences.py,sha256=rfMJx5g2RmOd8vi0dQztMF1WRVNVUtsPjvPFuw7Ymqw,11260
|
|
70
|
-
boris/preferences.ui,sha256=MlqVY1Kb0I7BIvFYCA5I5OLqXgeADPSE8Y4NM3_evF8,17564
|
|
71
|
-
boris/preferences_ui.py,sha256=SxCK2bL3JqRE7XcVqaIL5cVvHvTTR7uPnBkueXcf_xk,19861
|
|
72
|
-
boris/project.py,sha256=uBrOmkkaR42F6w3UjT2hz7ykJaKV5vVPs9MWffDE8UU,82479
|
|
73
|
-
boris/project.ui,sha256=vx3hS6Uf8xsBDTOk5ruiY-tyJx0-WEFvAqQx-EXEGBM,36009
|
|
74
|
-
boris/project_functions.py,sha256=GzCo_4cDDipxEwg8p5zmSSbWhoGRqJQ5C6KkSIWYTeM,74158
|
|
75
|
-
boris/project_import_export.py,sha256=qabk3Gkp0pVmSpWTSsmyNVfc8sJlRDo1iSna9vqKXao,37684
|
|
76
|
-
boris/project_ui.py,sha256=swIouF3kBZ_juncbOC2MZIiG9s0Ltz5aeCosMMWyj-M,35897
|
|
77
|
-
boris/qrc_boris.py,sha256=4U2cD_fIBTtsTPhirOl9I3kTArOhXWYvfuO_A0M9N0I,675001
|
|
78
|
-
boris/qrc_boris5.py,sha256=6bwT8OVtIr84nVIYp2ldUL7XL6WJi9zgJow6kgRxuIQ,161601
|
|
79
|
-
boris/select_modifiers.py,sha256=Q3rdX8q3RyEBm6vmjucml5KtC8JKkCL98lthAY_H00E,13975
|
|
80
|
-
boris/select_observations.py,sha256=rr5f-q8YIvJ7zP-wOq4VtsgNljUxOit4XXezexVi8Do,14556
|
|
81
|
-
boris/select_subj_behav.py,sha256=FRxKYYS_DanGNAKHRcdlHoW1Mh9HYhIescrtlI9BHos,10202
|
|
82
|
-
boris/state_events.py,sha256=vR8m8XvMjGqYlBv7swlwxrnqVT4bheKQ6fTyLCUf9Nc,6905
|
|
83
|
-
boris/subjects_pad.py,sha256=RC1M6SlGXthd5Mf5XPgbOV-0koIKlpFHstsCI50v_NE,3555
|
|
84
|
-
boris/synthetic_time_budget.py,sha256=eiWP_DvD8Qi2mdt74sk5LulDnOawzo1D74hbd_xcrWg,9798
|
|
85
|
-
boris/time_budget_functions.py,sha256=V__kSe_9Ee4eMJY5ZkONC3QUxXTzQNx7Zx5J3xx3ebE,49912
|
|
86
|
-
boris/time_budget_widget.py,sha256=jrw2yryxAF_GqDxxsfX-T4BkWPx599tsc_MK6O0nQko,42748
|
|
87
|
-
boris/transitions.py,sha256=4A1DRNPwJEUQGp-IwUIDiNlcb-mRba_AfZ8JboAUeLk,12154
|
|
88
|
-
boris/utilities.py,sha256=cxTspG6Ico9mK0V1qT_ziAPWKV12NrL2YI8lL6C_GjI,44412
|
|
89
|
-
boris/version.py,sha256=o0lZiPVV_O_M8cgbWa4yF87dpTIBD-FjKSKCsUmEFvo,788
|
|
90
|
-
boris/video_equalizer.py,sha256=veuaFfuAVyF98hSEjyE449HGkdAjBUjCHuKiVq9cVsM,5725
|
|
91
|
-
boris/video_equalizer_ui.py,sha256=A2_Sz9AAVnJygTRUeK_YXxf-WWQpxSSlFw0MjkxiwSg,9762
|
|
92
|
-
boris/video_operations.py,sha256=hGT49KjQDBt5I39yu57ZjOCQhlHlf2FcaynYCHXBNJQ,9089
|
|
93
|
-
boris/vlc_local.py,sha256=GPsUSaoKEmux54Yr2cQLWxODmu6yEbicX5FFi2n_SK8,3120
|
|
94
|
-
boris/write_event.py,sha256=Xsbp-KFbmpoKt8MSZB653vN621GYccI2Hx916Gt44w0,17687
|
|
95
|
-
boris/icons/logo_eye.ico,sha256=pGgNoNXijGOuv6c_iaFR9OsjJ1GBqvrtzxNtfCLv_sc,45470
|
|
96
|
-
boris/portion/__init__.py,sha256=ZBUG4I7YWhRkeWdP-JEpxhxldJlUYQkeaJseTjdhtJE,602
|
|
97
|
-
boris/portion/const.py,sha256=hEp26BKcEg1Js4DfZsBHmDtJJts83Tl1HWQ0CNJNwEc,1588
|
|
98
|
-
boris/portion/dict.py,sha256=SyHxc7PfDw2ufNLFQycwJtzmRfL48rDp4UrM2KN7IWc,11282
|
|
99
|
-
boris/portion/func.py,sha256=3TkQtFKLfsqntwd27HSGHceFhnXHmT-EbNMqktElC5Q,2174
|
|
100
|
-
boris/portion/interval.py,sha256=bAdUiJjGeUAPgsBAImwNeviiwfQq5odfhFZccAWzOTA,20299
|
|
101
|
-
boris/portion/io.py,sha256=ppNeRpiLNrocF1yzGeuEUIhYMf2LfsR-cji3d0nmvUs,6371
|
|
102
|
-
boris_behav_obs-8.16.5.dist-info/LICENSE.TXT,sha256=WJ7YI-moTFb-uVrFjnzzhGJrnL9P2iqQe8NuED3hutI,35141
|
|
103
|
-
boris_behav_obs-8.16.5.dist-info/METADATA,sha256=gHp6WLSN7ywmrko-8EKFsvksVCn8VFdjbtXBHUdjQuw,4345
|
|
104
|
-
boris_behav_obs-8.16.5.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
105
|
-
boris_behav_obs-8.16.5.dist-info/entry_points.txt,sha256=fuO7JxKFLOm6xp6m3JHRA1UO_QW1dYU-F0IooA1NqQs,37
|
|
106
|
-
boris_behav_obs-8.16.5.dist-info/top_level.txt,sha256=fJSgm62S7WesiwTorGbOO4nNN0yzgZ3klgfGi3Px4qI,6
|
|
107
|
-
boris_behav_obs-8.16.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|