ABOUT

This episode guide is made with <3 and Open Source by Zwitschi for the Take Your Shoes Off podcast with Rick Glassman.

The podcast is available on YouTube and Apple Podcasts.

The following information is also available on GitHub:

Episode Guide for the Take Your Shoes Off podcast

This is an episode guide for the Take Your Shoes Off podcast with Rick Glassman. The episode guide is available at https://tysoepisodeguide.azurewebsites.net/.

Sources

The episode guide is generated from Rick Glassman's YouTube Channel using the YouTube Data API.

This python program is used to generate the episode guide from the YouTube channel by querying the YouTube Data API.

All video information is internally stored in a sqlite database. The database is located in the db directory. The database is created and updated by the python program by running python setup.py install. The program will create the database if it does not exist, and update the database if it does exist.

The episode guide markdown file is used to generate the episode guide HTML file, which is located in the templates directory. The episode guide HTML file is used by the Flask app to display the episode guide.

Requirements

Prerequisites

Usage

  1. Clone the repository
  2. Install the requirements with pip install -r requirements.txt
  3. Create and enable a virtual environment (venv) named "tyso" using the following steps:
  4. Open a terminal or command prompt.
  5. Navigate to the root directory of the repository using the cd command.
  6. Run the command python -m venv tyso to create a virtual environment named "tyso".
  7. On Windows, activate the virtual environment by running:
    • For Command Prompt: tyso\Scripts\activate.bat
    • For PowerShell: .\tyso\Scripts\Activate.ps1
  8. On macOS and Linux, activate the virtual environment by running: source tyso/bin/activate
  9. Create a .env file in the root directory of the repository.
  10. Add the following to the .env file: API_KEY=<your_api_key>
  11. Run python setup.py install to generate the episode guide.
  12. Run python app.py to run the Flask app.
  13. Open http://127.0.0.1:5000/ in a browser to view the episode guide.

Contributions

Contributions are welcome. Please open an issue or submit a pull request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Authors