gogadget


Namegogadget JSON
Version 0.3.1 PyPI version JSON
download
home_pageNone
Summarygogadget is a toolkit for producing immersion and priming materials for language learning. It is capable of downloading audio and video files, automatically transcribing subtitles from videos and podcasts, and automatically producing filtered Anki decks with sentence audio / translations / screenshots / definitions.
upload_time2024-12-04 09:32:45
maintainerNone
docs_urlNone
authorJonathan Fox
requires_python<3.13,>=3.10
licenseNone
keywords anki frequency analysis language learning priming whisper yt-dlp
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h3 align="center">
   <a href="https://gogadget.jfox.io"><img src="https://gogadget.jfox.io/img/header_black.svg" alt="gogadget" /></a>
   <p>
   Language Learning Toolkit
   </p>
   <a href="https://github.com/jonathanfox5/gogadget/releases"><img src="https://img.shields.io/github/v/tag/jonathanfox5/gogadget?label=download&color=blue" alt="Download" /></a>
   <a href="https://gogadget.jfox.io"><img src="https://img.shields.io/badge/view-documentation-brightgreen" alt="Documentation" /></a>
   <a href="https://pypi.org/project/gogadget/"><img src="https://img.shields.io/pypi/v/gogadget?color=%23BA55D3" alt="PyPI" /></a>
</h3>

## Overview

`gogadget` is a toolkit for producing immersion and priming materials for language learning.

- It tries to solve the problem that many of the most powerful tools available are hard to install, difficult to use or require lots of effort to configure for optimal results.
- It is capable of downloading audio and video files, automatically transcribing subtitles from videos and podcasts, and automatically producing filtered Anki decks with sentence audio / translations / screenshots / definitions.

## Quick start

Full documentation is available in the [manual](https://gogadget.jfox.io/). If you want to dive straight in, you may find the following useful:

- **[Installation instructions](https://gogadget.jfox.io/getting_started/installation/)**: An installer is available for Windows and simple terminal commands are available for macOS
- **[Example commands](https://gogadget.jfox.io/getting_started/example_commands/)**: Simple examples of the most common commands.
- **[Detailed command reference](https://gogadget.jfox.io/reference/command_reference/)**: Every command listed with all possible parameters and examples. Warning - could be overwhelming!
- **[Video tutorial](https://gogadget.jfox.io/getting_started/video_tutorial/)**: A video tutorial covering the installation of the tool and an overview of its functions.
- **[Getting help with problems](https://gogadget.jfox.io/misc/getting_help)**: How to get help with problems if you can't find the answer in the [manual](https://gogadget.jfox.io/).

## Video tutorial

Click on the image below to view a tutorial covering the installation of the tool and the use of its key functions. Alternatively, click [here](https://gogadget.jfox.io/) to read the manual.

[![Youtube Tutorial](https://img.youtube.com/vi/xV4T6LT-_mc/maxresdefault.jpg)](https://www.youtube.com/watch?v=xV4T6LT-_mc)

## Key features

- Simple, well documented interface that is consistent across each of its tools.
- Download video, audio and subtitle files.
- Automatic generation of subtitles from video and audio files.
- Produce filtered Anki decks from subtitles that:
  - Contain images and sentence audio from the source video / audio files.
  - Automatically filter out common and known words to reduce Anki review load.
  - Prioritises words that are the most frequent in the source media.
  - Include automatic translations of sentences and definitions of words.
  - Can be built for an individual episode or a whole season.
- Create word frequency analyses for priming purposes.
- [One click installer](https://github.com/jonathanfox5/gogadget/releases/) for Windows and [simple installation steps](https://gogadget.jfox.io/getting_started/installation/) for macOS and Linux.
- Ability to save defaults so that commands can be kept as short and memorable as possible.
- It supports 19 [languages](https://gogadget.jfox.io/getting_started/supported_languages/) fully with partial support for many more.
- Once you have installed the resources for your language, all modules apart from `gogadget download` are fully offline. This makes it useful for travelling or for processing personal conversations as there is no server involved.

## Example commands

You may prefer to watch the [Youtube Tutorial](https://gogadget.jfox.io/getting_started/video_tutorial/) for demonstrations of the features, including configuration for more advanced users.

### Download media

Download video from a website.

```sh
gogadget download --url "https://www.videosite.com/watch?v=videoid"
```

Note: The commands `gogadget download-audio` and `gogadget download-subtitles` are also available.

### Generate subtitles

Automatically generate subtitles for a video / folder of videos that are in English (`en`):

```sh
gogadget transcribe --input "your folder or filename" --language en
```

Note: If you have followed the steps in [the installation instructions](https://gogadget.jfox.io/getting_started/installation/) to enable GPU transcription, add `--gpu` to the end of the command to significantly speed up the transcription.

### Create Anki deck

Generate Anki cards from a full season of an Italian (`it`) program. Include images / audio on the cards, translate the sentences to the default language (English) and exclude the 1000 most common Italian words:

```sh
gogadget anki-deck --input "folder name" --language it --excluded-words "ita_top_1000_words.xlsx"
```

See [the manual](https://gogadget.jfox.io/getting_started/getting_resources/) for details on how to obtain dictionaries, exclude word spreadsheets and word audio to use with this command.

Note: You can set default parameters using `gogadget set-defaults --custom`. Once you have set up your defaults, this would allow you use this shortened version of the command:

```sh
gogadget anki-deck --input "folder name"
```

An example for setting defaults can be found [in the manual](https://gogadget.jfox.io/getting_started/example_use_case/).

## Installation

### Windows

Installation instructions for Windows:

1. Download the latest version of the gogadget installer from [this page](https://github.com/jonathanfox5/gogadget/releases).

2. Run the installer. It's highly recommended that you accept all of the default settings unless you know what you are doing!

3. You can run gogadget from the desktop shortcut, from the start menu or by right clicking inside a folder and selecting "Open gogadget here".

4. _[Optional]_ You can install all of the models required for your chosen language. Type the following to get the instructions:

```sh
gogadget install
```

Note: If you want to enable GPU transcription of subtitles, please tick the "CUDA" checkbox in the installer. For more information, please see [here](https://gogadget.jfox.io/getting_started/installation/#enabling-gpu-powered-transcription).

### macOS

Installation instructions for macOS:

1. Install homebrew if you haven't already got it installed by pasting the following line into the Terminal app and hitting enter.

   ```sh
   /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
   ```

2. Install the required support packages, using Terminal:

   ```sh
   brew install ffmpeg uv
   ```

3. Install gogadget, using Terminal:

   ```sh
   uv tool install gogadget --python 3.12 --upgrade
   ```

4. You can then run the tool by typing the following command into Terminal:

   ```sh
   gogadget
   ```

5. _[Optional]_ You can install all of the models required for your chosen language. Type the following into Terminal to get the instructions:

   ```sh
   gogadget install
   ```

### Linux

Installation instructions for Linux:

1. Install uv using the following terminal command. uv is a python package manager that is used to keep gogadget packages separate so that they don't interfere with your existing python installation.

   ```sh
   curl -LsSf https://astral.sh/uv/install.sh | sh
   ```

2. Install required packages (if you don't already have them) using your package manager. This will depend on your distribution. For example:

   - Ubuntu based distributions: `sudo apt install ffmpeg build-essential python3-dev`
   - Fedora based distributions: `sudo dnf install ffmpeg @development-tools python3-devel`
   - Arch based distributions: `sudo pacman -S ffmpeg base-devel`

3. Configure your paths if they aren't already set up:

   ```sh
   source $HOME/.local/bin/env
   ```

4. Install gogadget using uv. Note that we are using Python 3.10 instead of Python 3.12 that the other platforms are using. This is to ensure that all dependencies build correctly on ARM CPUs.

   ```sh
   uv tool install gogadget --python 3.10 --upgrade
   ```

5. You can then run the tool by typing the following command into your terminal:

   ```sh
   gogadget
   ```

6. _[Optional]_ You can install all of the models required for your chosen language. Type the following to get the instructions:

   ```sh
   gogadget install
   ```

7. _[Optional]_ If you wish to use your GPU instead of your CPU and your system is configured for CUDA. **AFTER** you run:

   ```sh
   uv tool install gogadget --python 3.10 --upgrade
   ```

You can **THEN** run:

```sh
uv tool install gogadget --python 3.10 --with 'torch==2.5.1+cu124' --with 'torchaudio==2.5.1+cu124' --index 'https://download.pytorch.org/whl/cu124'
```

Note that **BOTH** commands are required, in this order!

For more information on using your GPU, please see [here](https://gogadget.jfox.io/getting_started/installation/#enabling-gpu-powered-transcription).

### Enabling GPU powered transcription

#### Requirements

To enable GPU powered transcription of subtitles, you will need:

- A CUDA enabled NVIDIA gpu with a decent amount of VRAM (>=8 GB)
- Windows or Linux
- Up to date GPU drivers installed

These requirements are the same for most Whisper based transcription tools. Therefore, there will be plenty of guides to help you if you get stuck!

If you are using **Windows**, you will need to make sure that you tick "CUDA" in the installer.

If you are running **Linux** or are **manually** configuring it on Windows, you will need to follow the final step of the [Linux](#linux) installation instructions.

#### Running with GPU enabled

You will need to specify `--gpu` when running any transcription tasks e.g.:

```sh
gogadget transcribe -i "input file or folder" -l "code for your language" --gpu
```

Alternatively, you can change the value of `whisper_use_gpu` in the settings file to `"True"`. You can access the settings by running:

```sh
gogadget set-defaults --custom
```

## More information

Full documentation is available in the [manual](https://gogadget.jfox.io/).

## Acknowledgements

[gogadget](https://github.com/jonathanfox5/gogadget) is Copyright © 2024 Jonathan Fox.

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.

All materials in this repository are covered by the aforementioned license, unless specifically noted below:

- [src/gogadget/ytdlp_cli_to_api.py](https://github.com/jonathanfox5/gogadget/blob/main/gogadget/ytdlp_cli_to_api.py) has been directly reproduced from [yt-dlp's github page](https://github.com/yt-dlp/yt-dlp/blob/master/devscripts/cli_to_api.py) ([license](https://raw.githubusercontent.com/yt-dlp/yt-dlp/refs/heads/master/LICENSE)) without modification.
- The Windows installer bundles the binaries for both [FFMPEG](https://ffmpeg.org) ([license](https://ffmpeg.org/legal.html)) and [uv](https://github.com/astral-sh/uv) ([license](https://github.com/astral-sh/uv/blob/main/LICENSE-MIT)).
- The [Bootstrap framework](https://getbootstrap.com) javascript and CSS files stored within [src/gogadget/resources/html/bootstrap](https://github.com/jonathanfox5/gogadget/tree/main/src/gogadget/resources/html/bootstrap) have been directly reproduced without modification ([license](https://github.com/twbs/bootstrap/blob/main/LICENSE)).
- Portions of [src/gogadget/resources/html/anki/](https://github.com/jonathanfox5/gogadget/tree/main/src/gogadget/resources/html/anki) have been based upon the formatting of Refold's [excellent decks](https://refold.la/category/decks/). These are APLGv3 licensed, based upon the included code from [Ankitects](https://github.com/ankitects/anki) ([license](https://github.com/ankitects/anki/blob/main/LICENSE)). Please see the individual source files for specific licensing information.

`LICENSE` files for each of the python dependencies will be included with the installation. For convenience, you can view an auto-generated table of each of the licenses and authors [here](https://gogadget.jfox.io/license_info/full_license_info/).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "gogadget",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.13,>=3.10",
    "maintainer_email": null,
    "keywords": "anki, frequency analysis, language learning, priming, whisper, yt-dlp",
    "author": "Jonathan Fox",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/19/c4/5f933cc6892c46a0350b0501381bacd881cc6d0699fb368340871c43d727/gogadget-0.3.1.tar.gz",
    "platform": null,
    "description": "<h3 align=\"center\">\n   <a href=\"https://gogadget.jfox.io\"><img src=\"https://gogadget.jfox.io/img/header_black.svg\" alt=\"gogadget\" /></a>\n   <p>\n   Language Learning Toolkit\n   </p>\n   <a href=\"https://github.com/jonathanfox5/gogadget/releases\"><img src=\"https://img.shields.io/github/v/tag/jonathanfox5/gogadget?label=download&color=blue\" alt=\"Download\" /></a>\n   <a href=\"https://gogadget.jfox.io\"><img src=\"https://img.shields.io/badge/view-documentation-brightgreen\" alt=\"Documentation\" /></a>\n   <a href=\"https://pypi.org/project/gogadget/\"><img src=\"https://img.shields.io/pypi/v/gogadget?color=%23BA55D3\" alt=\"PyPI\" /></a>\n</h3>\n\n## Overview\n\n`gogadget` is a toolkit for producing immersion and priming materials for language learning.\n\n- It tries to solve the problem that many of the most powerful tools available are hard to install, difficult to use or require lots of effort to configure for optimal results.\n- It is capable of downloading audio and video files, automatically transcribing subtitles from videos and podcasts, and automatically producing filtered Anki decks with sentence audio / translations / screenshots / definitions.\n\n## Quick start\n\nFull documentation is available in the [manual](https://gogadget.jfox.io/). If you want to dive straight in, you may find the following useful:\n\n- **[Installation instructions](https://gogadget.jfox.io/getting_started/installation/)**: An installer is available for Windows and simple terminal commands are available for macOS\n- **[Example commands](https://gogadget.jfox.io/getting_started/example_commands/)**: Simple examples of the most common commands.\n- **[Detailed command reference](https://gogadget.jfox.io/reference/command_reference/)**: Every command listed with all possible parameters and examples. Warning - could be overwhelming!\n- **[Video tutorial](https://gogadget.jfox.io/getting_started/video_tutorial/)**: A video tutorial covering the installation of the tool and an overview of its functions.\n- **[Getting help with problems](https://gogadget.jfox.io/misc/getting_help)**: How to get help with problems if you can't find the answer in the [manual](https://gogadget.jfox.io/).\n\n## Video tutorial\n\nClick on the image below to view a tutorial covering the installation of the tool and the use of its key functions. Alternatively, click [here](https://gogadget.jfox.io/) to read the manual.\n\n[![Youtube Tutorial](https://img.youtube.com/vi/xV4T6LT-_mc/maxresdefault.jpg)](https://www.youtube.com/watch?v=xV4T6LT-_mc)\n\n## Key features\n\n- Simple, well documented interface that is consistent across each of its tools.\n- Download video, audio and subtitle files.\n- Automatic generation of subtitles from video and audio files.\n- Produce filtered Anki decks from subtitles that:\n  - Contain images and sentence audio from the source video / audio files.\n  - Automatically filter out common and known words to reduce Anki review load.\n  - Prioritises words that are the most frequent in the source media.\n  - Include automatic translations of sentences and definitions of words.\n  - Can be built for an individual episode or a whole season.\n- Create word frequency analyses for priming purposes.\n- [One click installer](https://github.com/jonathanfox5/gogadget/releases/) for Windows and [simple installation steps](https://gogadget.jfox.io/getting_started/installation/) for macOS and Linux.\n- Ability to save defaults so that commands can be kept as short and memorable as possible.\n- It supports 19 [languages](https://gogadget.jfox.io/getting_started/supported_languages/) fully with partial support for many more.\n- Once you have installed the resources for your language, all modules apart from `gogadget download` are fully offline. This makes it useful for travelling or for processing personal conversations as there is no server involved.\n\n## Example commands\n\nYou may prefer to watch the [Youtube Tutorial](https://gogadget.jfox.io/getting_started/video_tutorial/) for demonstrations of the features, including configuration for more advanced users.\n\n### Download media\n\nDownload video from a website.\n\n```sh\ngogadget download --url \"https://www.videosite.com/watch?v=videoid\"\n```\n\nNote: The commands `gogadget download-audio` and `gogadget download-subtitles` are also available.\n\n### Generate subtitles\n\nAutomatically generate subtitles for a video / folder of videos that are in English (`en`):\n\n```sh\ngogadget transcribe --input \"your folder or filename\" --language en\n```\n\nNote: If you have followed the steps in [the installation instructions](https://gogadget.jfox.io/getting_started/installation/) to enable GPU transcription, add `--gpu` to the end of the command to significantly speed up the transcription.\n\n### Create Anki deck\n\nGenerate Anki cards from a full season of an Italian (`it`) program. Include images / audio on the cards, translate the sentences to the default language (English) and exclude the 1000 most common Italian words:\n\n```sh\ngogadget anki-deck --input \"folder name\" --language it --excluded-words \"ita_top_1000_words.xlsx\"\n```\n\nSee [the manual](https://gogadget.jfox.io/getting_started/getting_resources/) for details on how to obtain dictionaries, exclude word spreadsheets and word audio to use with this command.\n\nNote: You can set default parameters using `gogadget set-defaults --custom`. Once you have set up your defaults, this would allow you use this shortened version of the command:\n\n```sh\ngogadget anki-deck --input \"folder name\"\n```\n\nAn example for setting defaults can be found [in the manual](https://gogadget.jfox.io/getting_started/example_use_case/).\n\n## Installation\n\n### Windows\n\nInstallation instructions for Windows:\n\n1. Download the latest version of the gogadget installer from [this page](https://github.com/jonathanfox5/gogadget/releases).\n\n2. Run the installer. It's highly recommended that you accept all of the default settings unless you know what you are doing!\n\n3. You can run gogadget from the desktop shortcut, from the start menu or by right clicking inside a folder and selecting \"Open gogadget here\".\n\n4. _[Optional]_ You can install all of the models required for your chosen language. Type the following to get the instructions:\n\n```sh\ngogadget install\n```\n\nNote: If you want to enable GPU transcription of subtitles, please tick the \"CUDA\" checkbox in the installer. For more information, please see [here](https://gogadget.jfox.io/getting_started/installation/#enabling-gpu-powered-transcription).\n\n### macOS\n\nInstallation instructions for macOS:\n\n1. Install homebrew if you haven't already got it installed by pasting the following line into the Terminal app and hitting enter.\n\n   ```sh\n   /bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"\n   ```\n\n2. Install the required support packages, using Terminal:\n\n   ```sh\n   brew install ffmpeg uv\n   ```\n\n3. Install gogadget, using Terminal:\n\n   ```sh\n   uv tool install gogadget --python 3.12 --upgrade\n   ```\n\n4. You can then run the tool by typing the following command into Terminal:\n\n   ```sh\n   gogadget\n   ```\n\n5. _[Optional]_ You can install all of the models required for your chosen language. Type the following into Terminal to get the instructions:\n\n   ```sh\n   gogadget install\n   ```\n\n### Linux\n\nInstallation instructions for Linux:\n\n1. Install uv using the following terminal command. uv is a python package manager that is used to keep gogadget packages separate so that they don't interfere with your existing python installation.\n\n   ```sh\n   curl -LsSf https://astral.sh/uv/install.sh | sh\n   ```\n\n2. Install required packages (if you don't already have them) using your package manager. This will depend on your distribution. For example:\n\n   - Ubuntu based distributions: `sudo apt install ffmpeg build-essential python3-dev`\n   - Fedora based distributions: `sudo dnf install ffmpeg @development-tools python3-devel`\n   - Arch based distributions: `sudo pacman -S ffmpeg base-devel`\n\n3. Configure your paths if they aren't already set up:\n\n   ```sh\n   source $HOME/.local/bin/env\n   ```\n\n4. Install gogadget using uv. Note that we are using Python 3.10 instead of Python 3.12 that the other platforms are using. This is to ensure that all dependencies build correctly on ARM CPUs.\n\n   ```sh\n   uv tool install gogadget --python 3.10 --upgrade\n   ```\n\n5. You can then run the tool by typing the following command into your terminal:\n\n   ```sh\n   gogadget\n   ```\n\n6. _[Optional]_ You can install all of the models required for your chosen language. Type the following to get the instructions:\n\n   ```sh\n   gogadget install\n   ```\n\n7. _[Optional]_ If you wish to use your GPU instead of your CPU and your system is configured for CUDA. **AFTER** you run:\n\n   ```sh\n   uv tool install gogadget --python 3.10 --upgrade\n   ```\n\nYou can **THEN** run:\n\n```sh\nuv tool install gogadget --python 3.10 --with 'torch==2.5.1+cu124' --with 'torchaudio==2.5.1+cu124' --index 'https://download.pytorch.org/whl/cu124'\n```\n\nNote that **BOTH** commands are required, in this order!\n\nFor more information on using your GPU, please see [here](https://gogadget.jfox.io/getting_started/installation/#enabling-gpu-powered-transcription).\n\n### Enabling GPU powered transcription\n\n#### Requirements\n\nTo enable GPU powered transcription of subtitles, you will need:\n\n- A CUDA enabled NVIDIA gpu with a decent amount of VRAM (>=8 GB)\n- Windows or Linux\n- Up to date GPU drivers installed\n\nThese requirements are the same for most Whisper based transcription tools. Therefore, there will be plenty of guides to help you if you get stuck!\n\nIf you are using **Windows**, you will need to make sure that you tick \"CUDA\" in the installer.\n\nIf you are running **Linux** or are **manually** configuring it on Windows, you will need to follow the final step of the [Linux](#linux) installation instructions.\n\n#### Running with GPU enabled\n\nYou will need to specify `--gpu` when running any transcription tasks e.g.:\n\n```sh\ngogadget transcribe -i \"input file or folder\" -l \"code for your language\" --gpu\n```\n\nAlternatively, you can change the value of `whisper_use_gpu` in the settings file to `\"True\"`. You can access the settings by running:\n\n```sh\ngogadget set-defaults --custom\n```\n\n## More information\n\nFull documentation is available in the [manual](https://gogadget.jfox.io/).\n\n## Acknowledgements\n\n[gogadget](https://github.com/jonathanfox5/gogadget) is Copyright \u00a9 2024 Jonathan Fox.\n\nThis program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.\n\nAll materials in this repository are covered by the aforementioned license, unless specifically noted below:\n\n- [src/gogadget/ytdlp_cli_to_api.py](https://github.com/jonathanfox5/gogadget/blob/main/gogadget/ytdlp_cli_to_api.py) has been directly reproduced from [yt-dlp's github page](https://github.com/yt-dlp/yt-dlp/blob/master/devscripts/cli_to_api.py) ([license](https://raw.githubusercontent.com/yt-dlp/yt-dlp/refs/heads/master/LICENSE)) without modification.\n- The Windows installer bundles the binaries for both [FFMPEG](https://ffmpeg.org) ([license](https://ffmpeg.org/legal.html)) and [uv](https://github.com/astral-sh/uv) ([license](https://github.com/astral-sh/uv/blob/main/LICENSE-MIT)).\n- The [Bootstrap framework](https://getbootstrap.com) javascript and CSS files stored within [src/gogadget/resources/html/bootstrap](https://github.com/jonathanfox5/gogadget/tree/main/src/gogadget/resources/html/bootstrap) have been directly reproduced without modification ([license](https://github.com/twbs/bootstrap/blob/main/LICENSE)).\n- Portions of [src/gogadget/resources/html/anki/](https://github.com/jonathanfox5/gogadget/tree/main/src/gogadget/resources/html/anki) have been based upon the formatting of Refold's [excellent decks](https://refold.la/category/decks/). These are APLGv3 licensed, based upon the included code from [Ankitects](https://github.com/ankitects/anki) ([license](https://github.com/ankitects/anki/blob/main/LICENSE)). Please see the individual source files for specific licensing information.\n\n`LICENSE` files for each of the python dependencies will be included with the installation. For convenience, you can view an auto-generated table of each of the licenses and authors [here](https://gogadget.jfox.io/license_info/full_license_info/).\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "gogadget is a toolkit for producing immersion and priming materials for language learning. It is capable of downloading audio and video files, automatically transcribing subtitles from videos and podcasts, and automatically producing filtered Anki decks with sentence audio / translations / screenshots / definitions.",
    "version": "0.3.1",
    "project_urls": {
        "documentation": "https://jonathanfox5.github.io/gogadget",
        "download": "https://github.com/jonathanfox5/gogadget/releases",
        "homepage": "https://gogadget.jfox.io/",
        "repository": "https://github.com/jonathanfox5/gogadget"
    },
    "split_keywords": [
        "anki",
        " frequency analysis",
        " language learning",
        " priming",
        " whisper",
        " yt-dlp"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "588b420a5c73900a8c0f8d687d5636f5a1e5d073123609a150994de5eec8fbb7",
                "md5": "9556684ffc08021bf53e4243d68b81e0",
                "sha256": "e02ea9963c764412d7d2f9cccabc0ad5204d75686fd9cd4dbfe9b865bfa1fc76"
            },
            "downloads": -1,
            "filename": "gogadget-0.3.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9556684ffc08021bf53e4243d68b81e0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.10",
            "size": 380960,
            "upload_time": "2024-12-04T09:32:43",
            "upload_time_iso_8601": "2024-12-04T09:32:43.037962Z",
            "url": "https://files.pythonhosted.org/packages/58/8b/420a5c73900a8c0f8d687d5636f5a1e5d073123609a150994de5eec8fbb7/gogadget-0.3.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19c45f933cc6892c46a0350b0501381bacd881cc6d0699fb368340871c43d727",
                "md5": "2682bc753fa08ebc457b77a923718a79",
                "sha256": "1bec744fdb691f472d8a2612d5fe9443f226741534838883738c7a87e9fefac7"
            },
            "downloads": -1,
            "filename": "gogadget-0.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "2682bc753fa08ebc457b77a923718a79",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.13,>=3.10",
            "size": 3938299,
            "upload_time": "2024-12-04T09:32:45",
            "upload_time_iso_8601": "2024-12-04T09:32:45.752406Z",
            "url": "https://files.pythonhosted.org/packages/19/c4/5f933cc6892c46a0350b0501381bacd881cc6d0699fb368340871c43d727/gogadget-0.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-04 09:32:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jonathanfox5",
    "github_project": "gogadget",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "gogadget"
}
        
Elapsed time: 0.81938s