All Projects → karlicoss → pockexport

karlicoss / pockexport

Licence: other
Export/access your Pocket data, including highlights!

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to pockexport

ghexport
Export your Github activity: events, repositories, stars, etc.
Stars: ✭ 18 (-85.48%)
Mutual labels:  export, backup, takeout, data-liberation
arctee
Atomic tee
Stars: ✭ 22 (-82.26%)
Mutual labels:  export, backup, data-liberation
goodrexport
Goodreads data export
Stars: ✭ 16 (-87.1%)
Mutual labels:  export, backup, data-liberation
Roam To Git
Automatic RoamResearch backup to Git
Stars: ✭ 489 (+294.35%)
Mutual labels:  export, backup
Node Firestore Import Export
Firestore data import and export
Stars: ✭ 271 (+118.55%)
Mutual labels:  export, backup
Wikiteam
Tools for downloading and preserving wikis. We archive wikis, from Wikipedia to tiniest wikis. As of 2020, WikiTeam has preserved more than 250,000 wikis.
Stars: ✭ 404 (+225.81%)
Mutual labels:  export, backup
browserexport
backup and parse browser history databases (chrome, firefox, safari, and other chrome/firefox derivatives)
Stars: ✭ 54 (-56.45%)
Mutual labels:  export, backup
Rexport
Reddit takeout: export your account data as JSON: comments, submissions, upvotes etc. 🦖
Stars: ✭ 87 (-29.84%)
Mutual labels:  export, backup
Elasticsearch Dump
Import and export tools for elasticsearch
Stars: ✭ 5,977 (+4720.16%)
Mutual labels:  export, backup
Github records archiver
Backs up a GitHub organization's repositories and all their associated information for archival purposes.
Stars: ✭ 100 (-19.35%)
Mutual labels:  export, backup
open2fa
Two-factor authentication app with import/export for iOS and macOS. All codes encrypted with AES 256. FaceID & TouchID support included. Written with love in SwiftUI ❤️
Stars: ✭ 24 (-80.65%)
Mutual labels:  export, backup
Flares
Flares 🔥 is a CloudFlare DNS backup tool
Stars: ✭ 156 (+25.81%)
Mutual labels:  export, backup
calcardbackup
calcardbackup: moved to https://codeberg.org/BernieO/calcardbackup
Stars: ✭ 67 (-45.97%)
Mutual labels:  export, backup
fb-export
Export (most) of your Facebook data using Node.js and the Graph API.
Stars: ✭ 21 (-83.06%)
Mutual labels:  export, backup
Qzoneexport
QQ空间导出助手,用于备份QQ空间的说说、日志、私密日记、相册、视频、留言板、QQ好友、收藏夹、分享、最近访客为文件,便于迁移与保存
Stars: ✭ 456 (+267.74%)
Mutual labels:  export, backup
Quip Export
Export all folders and documents from Quip
Stars: ✭ 28 (-77.42%)
Mutual labels:  export, backup
evernote-backup
Backup & export all Evernote notes and notebooks
Stars: ✭ 104 (-16.13%)
Mutual labels:  export, backup
Dynein
DynamoDB CLI written in Rust.
Stars: ✭ 126 (+1.61%)
Mutual labels:  export, backup
Hangons
Web app to parse and save your Hangouts.json file into a more friendly format.
Stars: ✭ 45 (-63.71%)
Mutual labels:  backup, takeout
connect-backup
A tool to backup and restore AWS Connect, with some useful other utilities too
Stars: ✭ 19 (-84.68%)
Mutual labels:  export, backup
Export your personal Pocket data, including highlights as JSON.

Setting up

  1. The easiest way is pip3 install --user git+https://github.com/karlicoss/pockexport.

    Alternatively, use git clone --recursive, or git pull && git submodule update --init. After that, you can use pip3 install --editable.

  2. To use the API you need a consumer_key. You’ve got three alternatives here:
    • Lazy way: just use 78809-9423d8c743a58f62b23ee85c as the consumer key.

      This seems to be the hardcoded key Pocket uses for their web app. It’s public and shared between all users, so there is no problem with sharing it here.

    • Chaotic way: get API key directly from web app.

      The benefit of doing this is that the API gives away more data, including highlights (unlike the consumer key you get by registering your own app).

      Note that this will likely just give you the same key as above, although I’m not 100% sure. E.g. some people reported this method didn’t work for them, unlike just simply using the hardcoded key.

      To do that, go to Pocket web app, open Network Monitor from your browser dev tools (e.g. firefox), and refresh the page.

      You can find consumer_key in ‘Request URL’ for any of json requests.

      If you still struggle with these steps, I recommend a comprehensive tutorial.

      This is sort of hacky, but only way I know of extracting highlights. I tried registering apps targeting other platforms (e.g. web/extension), but still nothing, seems that Pocket’s consumer key is hardcoded in backend code or something.

    • Lawful good way: register an app here with ‘Retrieve’ permissions and type ‘Desktop (other)’.

      Then open app in the list and take note of consumer_key.

  3. Follow these instructions to retrieve an API token using consumer_key you got on the previous step.

    You can use anything as redirect_uri, e.g. https://example.com. You should get access_token after that.

    You only need to do this step once, after that you can use access_token straightaway.

Exporting

Usage:

Recommended: create secrets.py keeping your api parameters, e.g.:

consumer_key = "CONSUMER_KEY"
access_token = "ACCESS_TOKEN"

After that, use:

python3 -m pockexport.export --secrets /path/to/secrets.py

That way you type less and have control over where you keep your plaintext secrets.

Alternatively, you can pass parameters directly, e.g.

python3 -m pockexport.export --consumer_key <consumer_key> --access_token <access_token>

However, this is verbose and prone to leaking your keys/tokens/passwords in shell history.

You can also import pockexport.export as a module and call get_json function directly to get raw JSON.

I highly recommend checking exported files at least once just to make sure they contain everything you expect from your export. If not, please feel free to ask or raise an issue!

Limitations

I’m not aware of any limits on number of old entries you can retrieve through API; it doesn’t even have pagination. If you know of them, please let me know or open PR!

I highly recommend to back up regularly and keep old exports. Easy way to achieve it is command like this:

python3 -m pockexport.export --secrets /path/to/secrets.py >"export-$(date -I).json"

Or, you can use arctee that automates this.

Example output

See ./example-output.json, it’s got some example data you might find in your data export.

Using data

You can use ghexport.dal (stands for “Data Access/Abstraction Layer”) to access your exported data, even offline. I elaborate on motivation behind it here.

  • main usecase is to be imported as python module to allow for programmatic access to your data.

    You can find some inspiration in =my.= package that I’m using as an API to all my personal data.

  • to test it against your export, simply run: python3 -m ghexport.dal --source /path/to/export
  • you can also try it interactively: python3 -m ghexport.dal --source /path/to/export --interactive
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].