-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For anyone looking to migrate to another service... #4461
Comments
How is this a replacement. With no apps ? |
It's not a replacement for Omnivore, it's a tool to easily convert your Omnivore library to the import format of the read-it-later apps I mentioned in the original comment. |
It looks like Readwise Reader built a special tool to migrate since the announcement. |
If it supports tags, then it's a better solution than my app for Readwise. Currently Readwise doesn't support tags via their CSV import, which is a pain. |
I really liked the feature of setting an email address for my newsletters. Really helped unclutter incoming mails. Does anyone, please, have an alternative? |
|
Readwise Reader also has this feature of generating special email addresses you can use for your feed or library. |
@jacksonh Thank you for the recommendation. The suggestion Meco.app looks very good |
For anyone trying to process their Omnivore export into something more suitable for import into Raindrop.io, etc, Omnivore suggests using a Once you've installed
Once you've unzipped your Omnivore export .zip file, change into the directory where the For your edification, learning and enjoyment, here's a detailed breakdown of what this
Edit: I've put this in a gist so it's easy to link to - tell your friends! 😁 |
For everyone going to migrate to Raindrop.io, I've created a program to convert the export ZIP to Raindrop's CSV import format. |
Inspired by @ocean , this is a
Follow these steps to
jq -r '
(["Tags","Title","Description","Created","File","URL"]),
(.[] | [
([.labels[]?]|join(",")),
(.title | gsub("\\n";" ") | gsub("\\r";" ") | gsub("\"";"''") | gsub("[^[:print:]]";" ") | gsub("\\s+";" ")),
(.description | gsub("\\n";" ") | gsub("\\r";" ") | gsub("\"";"''") | gsub("[^[:print:]]";" ") | gsub("\\s+";" ")),
.savedAt,
("=HYPERLINK(G1&\"\\content\\" + .slug + ".html\" ,\"Open\")"),
.url
]) | @csv
' metadata_*.json > omnivore-export.csv
PS. I cannot make the links in Eventually, it looks like this, I covered the text, notice And here’s a command for Markdown jq -r '
(["Tags","Title","Description","Created","File","URL"]),
(.[] | [
([.labels[]?]|join(",")),
(.title | gsub("\\n";" ") | gsub("\\r";" ") | gsub("\"";"''") | gsub("[^[:print:]]";" ") | gsub("\\s+";" ")),
(.description | gsub("\\n";" ") | gsub("\\r";" ") | gsub("\"";"''") | gsub("[^[:print:]]";" ") | gsub("\\s+";" ")),
.savedAt,
("[Open](.\\content\\" + .slug + ".html)"),
.url
]) | @csv
' metadata_*.json > omnivore-export.csv |
@ocean Thanks for the jq. FYI small issue I ran into is that one of the entries in the meta_X_to_Y.json files had |
A simple web app includes all the steps you should do to easily immigrate from Omnivore to Raindrop with all of your articles and their corresponding tags :) |
Polyglot, my read-it-later conversion service, now supports Omnivore exports and currently allows conversions to GoodLinks, Instapaper, Raindrop.io, and Readwise Reader.
The text was updated successfully, but these errors were encountered: