← Back to team overview

qpdfview team mailing list archive

Re: [Question #693142]: Other apps that are compatible with gpdfview

 

Question #693142 on qpdfview changed:
https://answers.launchpad.net/qpdfview/+question/693142

    Status: Answered => Open

Jerry Lester is still having a problem:
Thanks.

Jerry Lester

On Tue, Sep 29, 2020, 5:35 PM Adam Reichold <
question693142@xxxxxxxxxxxxxxxxxxxxx> wrote:

> Your question #693142 on qpdfview changed:
> https://answers.launchpad.net/qpdfview/+question/693142
>
>     Status: Open => Answered
>
> Adam Reichold proposed the following answer:
> Hello again,
>
> here is a simple Python script that should print all your bookmarks as
> plain text:
>
> import os
> import sqlite3
>
> conn =
>
> sqlite3.connect(os.path.expanduser('~/.local/share/qpdfview/qpdfview/database'))
>
> for row in conn.execute('SELECT * FROM bookmarks_v3'):
>     print(f'file path: {row[0]} page: {row[1]} label: {row[2]}')
>     print(f'comment: {row[3]}\n')
>
>
> Of course, you still have to adjust the output format to something that
> you can use but that depends on the application that you target.
>
> Best regards,
> Adam
>
> --
> If this answers your question, please go to the following page to let us
> know that it is solved:
>
> https://answers.launchpad.net/qpdfview/+question/693142/+confirm?answer_id=2
>
> If you still need help, you can reply to this email or go to the
> following page to enter your feedback:
> https://answers.launchpad.net/qpdfview/+question/693142
>
> You received this question notification because you asked the question.
>

-- 
You received this question notification because your team qpdfview is an
answer contact for qpdfview.