├── LICENSE ├── jupyter.csv └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Blaine Mooers and the University of Oklahoma Board of Regents 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /jupyter.csv: -------------------------------------------------------------------------------- 1 | line magic list magics,%lsmagic 2 | line magic alias,%alias 3 | line magic autocall,%autocall 4 | line magic automagic,%automagic 5 | line magic autosave,%autosave 6 | line magic change directory,%cd 7 | line magic colors,%colors 8 | line magic configure Ipython,%config 9 | line magic conda,%conda 10 | line magic dhist,%dhist 11 | line magic dirs,%dirs 12 | line magic doc test mode,%doctest_mode 13 | line magic editor,%edit 14 | line magic debug,%debug 15 | line magic clear screen,%cls 16 | line magic history,%history 17 | line magic kill backgropund jobs,%killbgjobs 18 | line magic load code,%load 19 | line magic load external ,%load_ext 20 | line magic log off,%logoff 21 | line magic log on,%logon 22 | line magic log start,%logstart 23 | line magic log state,%logstate 24 | line magic log stop,%logstop 25 | line magic macro ,%macro 26 | line magic magic ,%magic 27 | line magic mamba,%mamba 28 | line magic matplotlib inline mode,%matplotlib 29 | line magic micro mamba,%micromamba 30 | line magic notebook,%notebook 31 | line magic page,%page 32 | line magic pdb,%pdb 33 | line magic pdef,%pdef 34 | line magic pdoc,%pdoc 35 | line magic pinfo,%pinfo 36 | line magic pfile,%pfile 37 | line magic pinfo2,%pinfo2 38 | line magic pip,%pip 39 | line magic popd,%popd 40 | line magic pprint,%pprint 41 | line magic precision,%precision 42 | line magic prun,%prun 43 | line magic psource,%psource 44 | line magic pushd,%pushd 45 | line magic pwd,%pwd 46 | line magic pycat,%pycat 47 | line magic pylab,%pylab 48 | line magic quickref,%quickref 49 | line magic recall,%recall 50 | line magic rehasx,%rehashx 51 | line magic reload_ext,%reload_ext 52 | line magic reset,%reset 53 | line magic reset seletive,%reset_selective 54 | line magic rm,%rm 55 | line magic run,%run 56 | line magic save,%save 57 | line magic set env,%set_env 58 | line magic shell command,!! 59 | line magic system command,! 60 | line magic print traceback, %tb 61 | line magic time,%time 62 | line magic timeit,%timeit 63 | line magic unalias,%unalias 64 | line magic unload extension,%unload_ext 65 | line magic who,%who 66 | line magic who list,%who_ls 67 | line magic whos,%whos 68 | line magic xdel,%xdel 69 | line magic xmode,%xmode 70 | cell magic bash,%%bash 71 | cell magic capture output,%%capture 72 | cell magic html,%%html 73 | cell magic latex,%%latex 74 | cell magic javascript,%%javascript 75 | cell magic js,%%js 76 | cell magic markdown,%%markdown 77 | cell magic python,%%python 78 | cell magic python2,%%python2 79 | cell magic python3,%%python3 80 | cell magic ruby,%%ruby 81 | cell magic pypy,%%pypy 82 | cell magic script,%%script 83 | cell magic sh,%%sh 84 | cell magic svg,%%svg 85 | cell magic writefile,%%writefile 86 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Version](https://img.shields.io/static/v1?label=jupyter-voice-in&message=0.2&color=brightcolor) 2 | [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) 3 | 4 | 5 | # Voice In Plus snippets for use in Jupyter notebooks 6 | 7 | ## Purpose 8 | 9 | To ease voice computing in Jupyter notebooks with the Voice-In Plus plugin. 10 | 11 | ## Contents 12 | 13 | - 69 line magics 14 | - 15 cell magics 15 | 16 | ## Usage 17 | 18 | - Open the *jupyter.csv* file in a text editor or in the raw view on GitHub. 19 | - Select all, copy, and paste into the text area exposed upon clicking on the **bulk add** window in Voice-In Plus. 20 | - Hit the **Add Commands** button to add the new commands. 21 | - Activate Voice In Plus in Google Chrome or Microsoft Edge. 22 | - Speak the voice command (in the left column of the CSV file) with the cursor in a code cell in a Jupyter Notebook or in a Python script file that has been opened for editing inside Jupyter Lab. 23 | 24 | 25 | ## Related projects 26 | 27 | - [markdown-jupyter-voice-in](https://github.com/MooersLab/markdown-jupyter-voice-in) 28 | - [jupyter-voice-in](https://github.com/MooersLab/jupyter-voice-in) 29 | - [voice-in-basics-quiz](https://github.com/MooersLab/voice-in-basics-quiz) 30 | - [arviz-voice-in](https://github.com/MooersLab/arviz-voice-in) 31 | - [matplotlib-voice-in](https://github.com/MooersLab/matplotlib-voice-in) 32 | - [pandas-voice-in](https://github.com/MooersLab/pandas-voice-in) 33 | - [numpy-voice-in](https://github.com/MooersLab/numpy-voice-in) 34 | - [statsmodels-voice-in](https://github.com/MooersLab/statsmodels-voice-in) 35 | - [python-voice-in](https://github.com/MooersLab/python-voice-in) 36 | - [cmdstanpy-voice-in](https://github.com/MooersLab/cmdstanpy-voice-in) 37 | - [scipy-voice-in](https://github.com/MooersLab/scipy-voice-in) 38 | 39 | 40 | 41 | ## Update history 42 | 43 | |Version | Changes | Date | 44 | |:-----------|:------------------------------------------------------------------------------------------------------------------------------------------|:--------------------| 45 | | Version 0.1 | Initiated project with 85 Ipython line and cell magics. | 2024 April 23 | 46 | | Version 0.2 | Added usage and related projects subsections to the README.md file. | 2024 August 8 | 47 | 48 | ## Funding 49 | - NIH: R01 CA242845, R01 AI088011 50 | - NIH: P30 CA225520 (PI: R. Mannel); P20GM103640 and P30GM145423 (PI: A. West) 51 | --------------------------------------------------------------------------------