Skip to content
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

Option to Export/Import Subscribed and Favourites #258

Open
SDRoffey opened this issue Sep 21, 2023 · 3 comments
Open

Option to Export/Import Subscribed and Favourites #258

SDRoffey opened this issue Sep 21, 2023 · 3 comments
Labels
enhancement New feature or request help wanted Volunteer assistance required

Comments

@SDRoffey
Copy link

SDRoffey commented Sep 21, 2023

Hi,
Would it be possible to add an option to export/import Subscribed and/or Favourite podcasts?
I want to send mine to a friend, but can't find a way except sending them a copy of my database (currently 3.1GB...).
Many thanks,
Simon

@SDRoffey SDRoffey added the enhancement New feature or request label Sep 21, 2023
@ribbons
Copy link
Owner

ribbons commented Sep 21, 2023

Sure, it would be relatively straight-forward to add an export function. Import would be a bit more tricky but I'm sure it would be possible. I wonder what format would be most widely useful, OPML perhaps?

In the meantime, the expedient way to export your subscriptions and favourites would be to use sqlite to query them out of the database e.g. for subscriptions:

select name, extid from programmes p, subscriptions s where p.progid=s.progid order by name;

And for favourites:

select name, extid from programmes p, favourites f where p.progid=f.progid order by name;

Of course, depending on the exact information you are wanting to export you may well need to adjust the queries accordingly.

@SDRoffey
Copy link
Author

Hi Matt,
Any more thoughts on this, is it an option you might add?
Thanks,
Simon

@ribbons
Copy link
Owner

ribbons commented Dec 17, 2024

No further thoughts on my side I'm afraid. Being realistic, although I like the idea it's not something I'm likely to implement personally as it's not 'scratching an itch' of mine. I'd of course be happy to review and assist getting a Pull Request merged if someone else has the enthusiasm to implement it though.

@ribbons ribbons added the help wanted Volunteer assistance required label Dec 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request help wanted Volunteer assistance required
Projects
None yet
Development

No branches or pull requests

2 participants