google-takeout-parser


Namegoogle-takeout-parser JSON
Version 0.1.9 PyPI version JSON
download
home_pagehttps://github.com/seanbreckenridge/google_takeout_parser
SummaryParses data out of your Google Takeout (History, Activity, Youtube, Locations, etc...)
upload_time2024-02-11 02:00:59
maintainer
docs_urlNone
authorSean Breckenridge
requires_python>=3.8
licenseMIT
keywords google data parsing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # google_takeout_parser

Parses data out of your [Google Takeout](https://takeout.google.com/) (History, Activity, Youtube, Locations, etc...). This:

- parses both the Historical HTML and new JSON format for Google Takeouts
- caches individual takeout results behind [`cachew`](https://github.com/karlicoss/cachew)
- merge multiple takeouts into unique events

---

- [Installation](#installation)
- [Usage](#usage)
  - [CLI Usage](#cli-usage)
  - [Library Usage](#library-usage)
- [Legacy HTML Parsing](#legacy-html-parsing)
- [Contributing](#contributing)
- [Testing](#testing)

This doesn't handle all cases, but I have yet to find a parser that does, so here is my attempt at parsing what I see as the most useful info from it. The Google Takeout is pretty particular, and the contents of the directory depend on what you select while exporting. Unhandled files will warn, though feel free to [PR a parser](#contributing) or [create an issue](https://github.com/seanbreckenridge/google_takeout_parser/issues/new?title=add+parser+for) if this doesn't parse some part you want.

This can take a few minutes to parse depending on what you have in your Takeout (especially while using the old HTML format), so this uses [cachew](https://github.com/karlicoss/cachew) to cache the function result for each Takeout you may have. That means this'll take a few minutes the first time parsing a takeout, but then only a few seconds every subsequent time.

Since the Takeout slowly removes old events over time, I would recommend periodically (personally I do it once every few months) backing up your data, to not lose any old events and get data from new ones. To use, go to [takeout.google.com](https://takeout.google.com/); For Reference, once on that page, I hit `Deselect All`, then select:

- Chrome
- Google Play Store
- Location History
  - Select JSON as format
- My Activity
  - Select JSON as format
- Youtube and Youtube Music
  - Select JSON as format
  - In options, deselect `music-library-songs`, `music-uploads` and `videos`

**Be sure to select JSON instead of HTML whenever possible**. Code to parse the HTML format is included here, but it is treated as legacy code and comes with worse performance and a myriad of other issues. See [legacy html parsing](#legacy-html-parsing)

The process for getting these isn't that great -- you have to manually go to [takeout.google.com](https://takeout.google.com) every few months, select what you want to export info for, and then it puts the zipped file into your google drive. You can tell it to run it at specific intervals, but I personally haven't found that to be that reliable.

This currently parses:

- Activity (from dozens of Google Services) - `My Activity/*.html|*.json`)
- Chrome History - `Chrome/BrowserHistory.json`
- Google Play Installs - `Google Play Store/Installs.json`
- Location History:
  - Semantic Location History`Location History/Semantic Location History/*`
  - Location History `Location History/Location History.json`, `Location History/Records.json`
- Youtube:
  - History - `YouTube and YouTube Music/history/*.html|*.json`
  - Comments
    - Legacy HTML Comment format: `YouTube and YouTube Music/my-comments/*.html`
    - New CSV/JSON format (mostly CSV, but the comment contents itself are a JSON blob):
      - `Youtube/comments/comments.csv`
      - `Youtube/live chats/live chats.csv`
  - Live Chat Messages - `YouTube and YouTube Music/my-live-chat-messages/*.html`
  - Likes: `YouTube and YouTube Music/playlists/likes.json`

This was extracted out of [my HPI](https://github.com/seanbreckenridge/HPI/tree/4bb1f174bdbd693ab29e744413424d18b8667b1f/my/google) modules, which was in turn modified from the google files in [karlicoss/HPI](https://github.com/karlicoss/HPI/blob/4a04c09f314e10a4db8f35bf1ecc10e4d0203223/my/google/takeout/html.py)

## Installation

Requires `python3.8+`

To install with pip, run:

    pip install google-takeout-parser

## Usage

The directory structure of the google takeout changes depending on your Google accounts main language. If this doesn't support your language, see [contributing](#contributing). This currently supports:

- `EN`: English
- `DE`: German (thanks to [@parthux1](https://github.com/parthux1))

### CLI Usage

Can be accessed by either `google_takeout_parser` or `python -m google_takeout_parser`. Offers a basic interface to list/clear the cache directory, and/or parse/merge a takeout and interact with it in a REPL:

```
Usage: google_takeout_parser parse [OPTIONS] TAKEOUT_DIR

  Parse a takeout directory takeout

Options:
  -f, --filter [Activity|LikedYoutubeVideo|PlayStoreAppInstall|Location|ChromeHistory|YoutubeComment|PlaceVisit]
                                  Filter to only show events of this type
  -l, --locale [EN|DE]            Locale to use for matching filenames [default: EN]  [env var:
                                  GOOGLE_TAKEOUT_PARSER_LOCALE]
  -a, --action [repl|summary|json]
                                  What to do with the parsed result  [default: repl]
  --cache / --no-cache            [default: no-cache]
  -h, --help                      Show this message and exit.
```

If you use a language this doesn't support, see [contributing](#contributing).

To clear the `cachew` cache: `google_takeout_parser cache_dir clear`

A few examples of parsing takeouts:

```
$ google_takeout_parser --quiet parse ~/data/Unpacked_Takout --cache
Interact with the export using res

In [1]: res[-2]
Out[1]: PlayStoreAppInstall(title='Hangouts', device_name='motorola moto g(7) play', dt=datetime.datetime(2020, 8, 2, 15, 51, 50, 180000, tzinfo=datetime.timezone.utc))

In [2]: len(res)
Out[2]: 236654
```

`$ google_takeout_parser --quiet merge ./Takeout-Old ./Takeout-New --action summary --no-cache`

```python
Counter({'Activity': 366292,
         'Location': 147581,
         'YoutubeComment': 131,
         'PlayStoreAppInstall': 122,
         'LikedYoutubeVideo': 100,
         'ChromeHistory': 4})
```

Can also dump the info to JSON; e.g. to filter YouTube-related stuff from your Activity using [jq](https://jqlang.github.io/jq/):

```bash
google_takeout_parser --quiet parse -a json -f Activity --no-cache ./Takeout-New |
  # select stuff like Youtube, m.youtube.com, youtube.com using jq
  jq '.[] | select(.header | ascii_downcase | test("youtube"))' |
  # grab the titleUrl, ignoring nulls
  jq 'select(.titleUrl) | .titleUrl' -r
```

Also contains a small utility command to help move/extract the google takeout:

```bash
$ google_takeout_parser move --from ~/Downloads/takeout*.zip --to-dir ~/data/google_takeout --extract
Extracting /home/sean/Downloads/takeout-20211023T070558Z-001.zip to /tmp/tmp07ua_0id
Moving /tmp/tmp07ua_0id/Takeout to /home/sean/data/google_takeout/Takeout-1634993897
$ ls -1 ~/data/google_takeout/Takeout-1634993897
archive_browser.html
Chrome
'Google Play Store'
'Location History'
'My Activity'
'YouTube and YouTube Music'
```

### Library Usage

Assuming you maintain an unpacked view, e.g. like:

```
 $ tree -L 1 ./Takeout-1599315526
./Takeout-1599315526
├── Google Play Store
├── Location History
├── My Activity
└── YouTube and YouTube Music
```

To parse one takeout:

```python
from google_takeout.path_dispatch import TakeoutParser
tp = TakeoutParser("/full/path/to/Takeout-1599315526")
# to check if files are all handled
tp.dispatch_map()
# to parse without caching the results in ~/.cache/google_takeout_parser
uncached = list(tp.parse())
# to parse with cachew cache https://github.com/karlicoss/cachew
cached = list(tp.parse(cache=True))
```

To parse a locale this doesn't support yet, you can create a dictionary which maps the names of the files to functions, see [`locales/en.py`](google_takeout_parser/locales/en.py) for an example. That can be passed as `handlers` to `TakeoutParser`

To cache and merge takeouts (maintains a single dependency on the paths you pass -- so if you change the input paths, it does a full recompute)

```python
from google_takeout.merge import cached_merge_takeouts
results = list(cached_merge_takeouts(["/full/path/to/Takeout-1599315526", "/full/path/to/Takeout-1634971143"]))
```

If you don't want to cache the results but want to merge results from multiple takeouts, can do something custom by directly using the `merge_events` function:

```python
from google_takeout_parser.merge import merge_events, TakeoutParser
itrs = []  # list of iterators of google events
for path in ['path/to/Takeout-1599315526' 'path/to/Takeout-1616796262']:
    # ignore errors, error_policy can be 'yield', 'raise' or 'drop'
    tk = TakeoutParser(path, error_policy="drop")
    itrs.append(tk.parse(cache=False))
res = list(merge_events(*itrs))
```

The events this returns is a combination of all types in the [`models.py`](google_takeout_parser/models.py), to filter to a particular type you can provide that to skip parsing other files:

```python
from google_takeout_parser.models import Location
from google_takeout_parser.path_dispatch import TakeoutParser
# filter_type can be a list to filter multiple types
locations = list(TakeoutParser("path/to/Takeout").parse(filter_type=Location))
len(locations)
99913
```

I personally exclusively use this through the [HPI google takeout](https://github.com/karlicoss/HPI/blob/master/my/google/takeout/parser.py) file, as a configuration layer to locate where my takeouts are on disk, and since that 'automatically' unzips the takeouts (I store them as the zips), i.e., doesn't require me to maintain an unpacked view

### Legacy HTML Parsing

I would _heavily recommend against_ using the HTML format for `My Activity`. It is not always possible to properly parse the metadata, is more prone to errors parsing dates due to local timezones, and takes much longer to parse than the JSON format.

On certain machines, the giant HTML files may even take so much memory that the process is eventually killed for using too much memory. For a workaround, see [split_html](./split_html).

### Contributing

Just to give a brief overview, to add new functionality (parsing some new folder that this doesn't currently support), you'd need to:

- Add a `model` for it in [`models.py`](google_takeout_parser/models.py) subclassing `BaseEvent` and adding it to the Union at the bottom of the file. That should have a `key` property function which describes each event uniquely (used to merge takeout events)
- Write a function which takes the `Path` to the file you're trying to parse and converts it to the model you created (See examples in [`parse_json.py`](google_takeout_parser/parse_json.py)). Ideally extract a single raw item from the takeout file add a test for it so its obvious when/if the format changes.
- Add a regex match for the file path to the handler map in [`google_takeout_parser/locales/en.py`](google_takeout_parser/locales/en.py).

Dont feel required to add support for all locales, its somewhat annoying to swap languages on google, request a takeout, wait for it to process and then swap back.

Though, if your takeout is in some language this doesn't support, you can [create an issue](https://github.com/seanbreckenridge/google_takeout_parser/issues/new?title=support+new+locale) with the file structure (run `find Takeout` and/or `tree Takeout`), or contribute a locale file by creating a `path -> function mapping`, and adding it to the global `LOCALES` variables in `locales/all.py` and `locales/main.py`

This is a pretty difficult to maintain, as it requires a lot of manual testing from people who have access to these takeouts, and who actively use the language that the takeout is in. My google accounts main language is English, so I upkeep that locale whenever I notice changes, but its not trivial to port those changes to other locales without swapping my language, making an export, waiting, and then switching back. I keep track of mismatched changes [in this board](https://github.com/users/seanbreckenridge/projects/1/views/1)

Ideally, you would select everything when doing a takeout (not just the `My Activity`/`Chrome`/`Location History` like I suggested above), so [paths that are not parsed can be ignored properly](https://github.com/seanbreckenridge/google_takeout_parser/blob/4981c241c04b5b37265710dcc6ca00f19d1eafb4/google_takeout_parser/locales/en.py#L105C1-L113).

### Testing

```bash
git clone 'https://github.com/seanbreckenridge/google_takeout_parser'
cd ./google_takeout_parser
pip install '.[testing]'
mypy ./google_takeout_parser
flake8 ./google_takeout_parser
pytest
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/seanbreckenridge/google_takeout_parser",
    "name": "google-takeout-parser",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "google data parsing",
    "author": "Sean Breckenridge",
    "author_email": "\"seanbrecke@gmail.com\"",
    "download_url": "https://files.pythonhosted.org/packages/ed/e0/fe1ff2c863eccf82880f7c6cb439c5e5dd083603077253dd9f7aeea94001/google_takeout_parser-0.1.9.tar.gz",
    "platform": null,
    "description": "# google_takeout_parser\n\nParses data out of your [Google Takeout](https://takeout.google.com/) (History, Activity, Youtube, Locations, etc...). This:\n\n- parses both the Historical HTML and new JSON format for Google Takeouts\n- caches individual takeout results behind [`cachew`](https://github.com/karlicoss/cachew)\n- merge multiple takeouts into unique events\n\n---\n\n- [Installation](#installation)\n- [Usage](#usage)\n  - [CLI Usage](#cli-usage)\n  - [Library Usage](#library-usage)\n- [Legacy HTML Parsing](#legacy-html-parsing)\n- [Contributing](#contributing)\n- [Testing](#testing)\n\nThis doesn't handle all cases, but I have yet to find a parser that does, so here is my attempt at parsing what I see as the most useful info from it. The Google Takeout is pretty particular, and the contents of the directory depend on what you select while exporting. Unhandled files will warn, though feel free to [PR a parser](#contributing) or [create an issue](https://github.com/seanbreckenridge/google_takeout_parser/issues/new?title=add+parser+for) if this doesn't parse some part you want.\n\nThis can take a few minutes to parse depending on what you have in your Takeout (especially while using the old HTML format), so this uses [cachew](https://github.com/karlicoss/cachew) to cache the function result for each Takeout you may have. That means this'll take a few minutes the first time parsing a takeout, but then only a few seconds every subsequent time.\n\nSince the Takeout slowly removes old events over time, I would recommend periodically (personally I do it once every few months) backing up your data, to not lose any old events and get data from new ones. To use, go to [takeout.google.com](https://takeout.google.com/); For Reference, once on that page, I hit `Deselect All`, then select:\n\n- Chrome\n- Google Play Store\n- Location History\n  - Select JSON as format\n- My Activity\n  - Select JSON as format\n- Youtube and Youtube Music\n  - Select JSON as format\n  - In options, deselect `music-library-songs`, `music-uploads` and `videos`\n\n**Be sure to select JSON instead of HTML whenever possible**. Code to parse the HTML format is included here, but it is treated as legacy code and comes with worse performance and a myriad of other issues. See [legacy html parsing](#legacy-html-parsing)\n\nThe process for getting these isn't that great -- you have to manually go to [takeout.google.com](https://takeout.google.com) every few months, select what you want to export info for, and then it puts the zipped file into your google drive. You can tell it to run it at specific intervals, but I personally haven't found that to be that reliable.\n\nThis currently parses:\n\n- Activity (from dozens of Google Services) - `My Activity/*.html|*.json`)\n- Chrome History - `Chrome/BrowserHistory.json`\n- Google Play Installs - `Google Play Store/Installs.json`\n- Location History:\n  - Semantic Location History`Location History/Semantic Location History/*`\n  - Location History `Location History/Location History.json`, `Location History/Records.json`\n- Youtube:\n  - History - `YouTube and YouTube Music/history/*.html|*.json`\n  - Comments\n    - Legacy HTML Comment format: `YouTube and YouTube Music/my-comments/*.html`\n    - New CSV/JSON format (mostly CSV, but the comment contents itself are a JSON blob):\n      - `Youtube/comments/comments.csv`\n      - `Youtube/live chats/live chats.csv`\n  - Live Chat Messages - `YouTube and YouTube Music/my-live-chat-messages/*.html`\n  - Likes: `YouTube and YouTube Music/playlists/likes.json`\n\nThis was extracted out of [my HPI](https://github.com/seanbreckenridge/HPI/tree/4bb1f174bdbd693ab29e744413424d18b8667b1f/my/google) modules, which was in turn modified from the google files in [karlicoss/HPI](https://github.com/karlicoss/HPI/blob/4a04c09f314e10a4db8f35bf1ecc10e4d0203223/my/google/takeout/html.py)\n\n## Installation\n\nRequires `python3.8+`\n\nTo install with pip, run:\n\n    pip install google-takeout-parser\n\n## Usage\n\nThe directory structure of the google takeout changes depending on your Google accounts main language. If this doesn't support your language, see [contributing](#contributing). This currently supports:\n\n- `EN`: English\n- `DE`: German (thanks to [@parthux1](https://github.com/parthux1))\n\n### CLI Usage\n\nCan be accessed by either `google_takeout_parser` or `python -m google_takeout_parser`. Offers a basic interface to list/clear the cache directory, and/or parse/merge a takeout and interact with it in a REPL:\n\n```\nUsage: google_takeout_parser parse [OPTIONS] TAKEOUT_DIR\n\n  Parse a takeout directory takeout\n\nOptions:\n  -f, --filter [Activity|LikedYoutubeVideo|PlayStoreAppInstall|Location|ChromeHistory|YoutubeComment|PlaceVisit]\n                                  Filter to only show events of this type\n  -l, --locale [EN|DE]            Locale to use for matching filenames [default: EN]  [env var:\n                                  GOOGLE_TAKEOUT_PARSER_LOCALE]\n  -a, --action [repl|summary|json]\n                                  What to do with the parsed result  [default: repl]\n  --cache / --no-cache            [default: no-cache]\n  -h, --help                      Show this message and exit.\n```\n\nIf you use a language this doesn't support, see [contributing](#contributing).\n\nTo clear the `cachew` cache: `google_takeout_parser cache_dir clear`\n\nA few examples of parsing takeouts:\n\n```\n$ google_takeout_parser --quiet parse ~/data/Unpacked_Takout --cache\nInteract with the export using res\n\nIn [1]: res[-2]\nOut[1]: PlayStoreAppInstall(title='Hangouts', device_name='motorola moto g(7) play', dt=datetime.datetime(2020, 8, 2, 15, 51, 50, 180000, tzinfo=datetime.timezone.utc))\n\nIn [2]: len(res)\nOut[2]: 236654\n```\n\n`$ google_takeout_parser --quiet merge ./Takeout-Old ./Takeout-New --action summary --no-cache`\n\n```python\nCounter({'Activity': 366292,\n         'Location': 147581,\n         'YoutubeComment': 131,\n         'PlayStoreAppInstall': 122,\n         'LikedYoutubeVideo': 100,\n         'ChromeHistory': 4})\n```\n\nCan also dump the info to JSON; e.g. to filter YouTube-related stuff from your Activity using [jq](https://jqlang.github.io/jq/):\n\n```bash\ngoogle_takeout_parser --quiet parse -a json -f Activity --no-cache ./Takeout-New |\n  # select stuff like Youtube, m.youtube.com, youtube.com using jq\n  jq '.[] | select(.header | ascii_downcase | test(\"youtube\"))' |\n  # grab the titleUrl, ignoring nulls\n  jq 'select(.titleUrl) | .titleUrl' -r\n```\n\nAlso contains a small utility command to help move/extract the google takeout:\n\n```bash\n$ google_takeout_parser move --from ~/Downloads/takeout*.zip --to-dir ~/data/google_takeout --extract\nExtracting /home/sean/Downloads/takeout-20211023T070558Z-001.zip to /tmp/tmp07ua_0id\nMoving /tmp/tmp07ua_0id/Takeout to /home/sean/data/google_takeout/Takeout-1634993897\n$ ls -1 ~/data/google_takeout/Takeout-1634993897\narchive_browser.html\nChrome\n'Google Play Store'\n'Location History'\n'My Activity'\n'YouTube and YouTube Music'\n```\n\n### Library Usage\n\nAssuming you maintain an unpacked view, e.g. like:\n\n```\n $ tree -L 1 ./Takeout-1599315526\n./Takeout-1599315526\n\u251c\u2500\u2500 Google Play Store\n\u251c\u2500\u2500 Location History\n\u251c\u2500\u2500 My Activity\n\u2514\u2500\u2500 YouTube and YouTube Music\n```\n\nTo parse one takeout:\n\n```python\nfrom google_takeout.path_dispatch import TakeoutParser\ntp = TakeoutParser(\"/full/path/to/Takeout-1599315526\")\n# to check if files are all handled\ntp.dispatch_map()\n# to parse without caching the results in ~/.cache/google_takeout_parser\nuncached = list(tp.parse())\n# to parse with cachew cache https://github.com/karlicoss/cachew\ncached = list(tp.parse(cache=True))\n```\n\nTo parse a locale this doesn't support yet, you can create a dictionary which maps the names of the files to functions, see [`locales/en.py`](google_takeout_parser/locales/en.py) for an example. That can be passed as `handlers` to `TakeoutParser`\n\nTo cache and merge takeouts (maintains a single dependency on the paths you pass -- so if you change the input paths, it does a full recompute)\n\n```python\nfrom google_takeout.merge import cached_merge_takeouts\nresults = list(cached_merge_takeouts([\"/full/path/to/Takeout-1599315526\", \"/full/path/to/Takeout-1634971143\"]))\n```\n\nIf you don't want to cache the results but want to merge results from multiple takeouts, can do something custom by directly using the `merge_events` function:\n\n```python\nfrom google_takeout_parser.merge import merge_events, TakeoutParser\nitrs = []  # list of iterators of google events\nfor path in ['path/to/Takeout-1599315526' 'path/to/Takeout-1616796262']:\n    # ignore errors, error_policy can be 'yield', 'raise' or 'drop'\n    tk = TakeoutParser(path, error_policy=\"drop\")\n    itrs.append(tk.parse(cache=False))\nres = list(merge_events(*itrs))\n```\n\nThe events this returns is a combination of all types in the [`models.py`](google_takeout_parser/models.py), to filter to a particular type you can provide that to skip parsing other files:\n\n```python\nfrom google_takeout_parser.models import Location\nfrom google_takeout_parser.path_dispatch import TakeoutParser\n# filter_type can be a list to filter multiple types\nlocations = list(TakeoutParser(\"path/to/Takeout\").parse(filter_type=Location))\nlen(locations)\n99913\n```\n\nI personally exclusively use this through the [HPI google takeout](https://github.com/karlicoss/HPI/blob/master/my/google/takeout/parser.py) file, as a configuration layer to locate where my takeouts are on disk, and since that 'automatically' unzips the takeouts (I store them as the zips), i.e., doesn't require me to maintain an unpacked view\n\n### Legacy HTML Parsing\n\nI would _heavily recommend against_ using the HTML format for `My Activity`. It is not always possible to properly parse the metadata, is more prone to errors parsing dates due to local timezones, and takes much longer to parse than the JSON format.\n\nOn certain machines, the giant HTML files may even take so much memory that the process is eventually killed for using too much memory. For a workaround, see [split_html](./split_html).\n\n### Contributing\n\nJust to give a brief overview, to add new functionality (parsing some new folder that this doesn't currently support), you'd need to:\n\n- Add a `model` for it in [`models.py`](google_takeout_parser/models.py) subclassing `BaseEvent` and adding it to the Union at the bottom of the file. That should have a `key` property function which describes each event uniquely (used to merge takeout events)\n- Write a function which takes the `Path` to the file you're trying to parse and converts it to the model you created (See examples in [`parse_json.py`](google_takeout_parser/parse_json.py)). Ideally extract a single raw item from the takeout file add a test for it so its obvious when/if the format changes.\n- Add a regex match for the file path to the handler map in [`google_takeout_parser/locales/en.py`](google_takeout_parser/locales/en.py).\n\nDont feel required to add support for all locales, its somewhat annoying to swap languages on google, request a takeout, wait for it to process and then swap back.\n\nThough, if your takeout is in some language this doesn't support, you can [create an issue](https://github.com/seanbreckenridge/google_takeout_parser/issues/new?title=support+new+locale) with the file structure (run `find Takeout` and/or `tree Takeout`), or contribute a locale file by creating a `path -> function mapping`, and adding it to the global `LOCALES` variables in `locales/all.py` and `locales/main.py`\n\nThis is a pretty difficult to maintain, as it requires a lot of manual testing from people who have access to these takeouts, and who actively use the language that the takeout is in. My google accounts main language is English, so I upkeep that locale whenever I notice changes, but its not trivial to port those changes to other locales without swapping my language, making an export, waiting, and then switching back. I keep track of mismatched changes [in this board](https://github.com/users/seanbreckenridge/projects/1/views/1)\n\nIdeally, you would select everything when doing a takeout (not just the `My Activity`/`Chrome`/`Location History` like I suggested above), so [paths that are not parsed can be ignored properly](https://github.com/seanbreckenridge/google_takeout_parser/blob/4981c241c04b5b37265710dcc6ca00f19d1eafb4/google_takeout_parser/locales/en.py#L105C1-L113).\n\n### Testing\n\n```bash\ngit clone 'https://github.com/seanbreckenridge/google_takeout_parser'\ncd ./google_takeout_parser\npip install '.[testing]'\nmypy ./google_takeout_parser\nflake8 ./google_takeout_parser\npytest\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Parses data out of your Google Takeout (History, Activity, Youtube, Locations, etc...)",
    "version": "0.1.9",
    "project_urls": {
        "Homepage": "https://github.com/seanbreckenridge/google_takeout_parser"
    },
    "split_keywords": [
        "google",
        "data",
        "parsing"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3326ab6cfb41066f5b165e37180ef7aae50e170376e5ce0d2544ef348c3d2284",
                "md5": "ecbabdb2d93fac1c1ee70a51d9cd15ec",
                "sha256": "a1c254a37432c3a53fb5c8dbef8978b762175e8dfeea5cbcea3eccfb8b711f26"
            },
            "downloads": -1,
            "filename": "google_takeout_parser-0.1.9-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ecbabdb2d93fac1c1ee70a51d9cd15ec",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 40607,
            "upload_time": "2024-02-11T02:00:57",
            "upload_time_iso_8601": "2024-02-11T02:00:57.822629Z",
            "url": "https://files.pythonhosted.org/packages/33/26/ab6cfb41066f5b165e37180ef7aae50e170376e5ce0d2544ef348c3d2284/google_takeout_parser-0.1.9-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ede0fe1ff2c863eccf82880f7c6cb439c5e5dd083603077253dd9f7aeea94001",
                "md5": "e254f1d321e34976a53934d3e2b9cf35",
                "sha256": "570eeec37dc7f8816ec4cecd9dd84f8fa1acaab443b648e0b15c646ad6c9871d"
            },
            "downloads": -1,
            "filename": "google_takeout_parser-0.1.9.tar.gz",
            "has_sig": false,
            "md5_digest": "e254f1d321e34976a53934d3e2b9cf35",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 44755,
            "upload_time": "2024-02-11T02:00:59",
            "upload_time_iso_8601": "2024-02-11T02:00:59.745052Z",
            "url": "https://files.pythonhosted.org/packages/ed/e0/fe1ff2c863eccf82880f7c6cb439c5e5dd083603077253dd9f7aeea94001/google_takeout_parser-0.1.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-11 02:00:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "seanbreckenridge",
    "github_project": "google_takeout_parser",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "google-takeout-parser"
}
        
Elapsed time: 0.17479s