Metadata-Version: 2.4
Name: google-takeout-viewer
Version: 0.1.1
Summary: A tool to visualize Google Takeout data
Author: Kiduzk
License-Expression: MIT
Project-URL: Repository, https://github.com/Kiduzk/google-takeout-viewer
Project-URL: Issues, https://github.com/Kiduzk/google-takeout-viewer/issues
Keywords: google,takeout,youtube,keep,parser,viewer,data-visualization
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: End Users/Desktop
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastapi>=0.104.0
Requires-Dist: google-takeout-parser>=0.1.12
Requires-Dist: click>=8.1.0
Requires-Dist: peewee>=3.17.0
Requires-Dist: uvicorn[standard]>=0.24.0
Dynamic: license-file

# google-takeout-viewer

A command-line tool to visualize your Google Takeout data. Browse your YouTube history, comments, and Google Keep notes in an interactive web interface.

## Installation

```bash
pip install google-takeout-viewer
```

## Quick Start

1. **Download your data** from [Google Takeout](https://takeout.google.com)

2. **Parse the data**:
```bash
takeout-viewer parse /path/to/takeout.zip
```
You can parse many takeouts as you want. Each parse command will add the parsed info into an SQLite command.

3. **View in browser**:
```bash
takeout-viewer view
```

Opens http://127.0.0.1:8000 with your data

## Commands

- `takeout-viewer parse <path>` - Parse a Google Takeout ZIP or folder
- `takeout-viewer view` - Start server and open browser
- `takeout-viewer clear` - Clear the local database containing the parsed info

## Supported Data

- YouTube watch history
- YouTube search history  
- YouTube comments
- Google Keep notes

## In the works / Future goals

We can grow the codebase to be able to parse and view any data.

## Requirements
