Can I View Metadata Of Pdf From Command Line On Linux?

As a beginner to Linux commands, I've been using calibre for library info but want command-line options. Any simple tools for retrieving author, title, tags from an ebook file directly?
2025-09-02 00:27:28
226
Share
ABO Personality Quiz
Take a quick quiz to find out whether you‘re Alpha, Beta, or Omega.
Scent
Personality
Ideal Love Pattern
Secret Desire
Your Dark Side
Start Test

12 Answers

Best Answer
LucaPerez
LucaPerez
Story Finder Police Officer
You can use command-line tools like 'exiftool' or 'pdfinfo' to extract metadata from PDF files. Exiftool is especially versatile, handling a wide range of tags. For quick checks, 'pdfinfo' from the poppler-utils package gives you basics like author and page count. On a different note, I was reading a PDF copy of 'The Alpha King's Mind-Reading Maid' the other day, and using 'pdfinfo' confirmed it was a DRM-free file I could transfer to my e-reader. The story itself has an intriguing setup where the maid’s secret ability creates constant, tense intrigue in the royal court.
2026-08-04 23:37:09
43
Bella
Bella
Spoiler Watcher Student
Hey, if you like poking around files the same way I do when I'm binge-reading liner notes, Linux makes PDF metadata super accessible from the command line.

For a quick peek I usually start with pdfinfo (part of poppler-utils). It gives a neat summary: Title, Author, Creator, Producer, CreationDate, ModDate, Pages, PDF version, page size, and more. Example: pdfinfo 'mydoc.pdf'. If you want to filter it down: pdfinfo 'mydoc.pdf' | grep -Ei '^(Title|Author|Producer|CreationDate|Pages)'.

If you want everything — the XMP, custom metadata and more — I love exiftool (package name libimage-exiftool-perl on Debian/Ubuntu). exiftool -a -u -g1 'mydoc.pdf' dumps lots of readable tags organized by group. For raw XMP in case you want to copy-paste XML, strings 'mydoc.pdf' | sed -n '//,/<\/x:xmpmeta>/p' can pull out the chunk (works for many PDFs but not guaranteed for all).

Other useful tools: pdftk 'mydoc.pdf' dump_data prints InfoKey/InfoValue pairs and is handy for scripts, and mutool (from mupdf) or qpdf can inspect internals or check encryption. If a file is password-protected you can often pass the password (pdfinfo has -upw/-opw). I often combine these in small scripts to audit batches of PDFs — it’s oddly satisfying. Play around and you’ll find the combo that fits your workflow best.
2025-09-07 01:08:42
4
Hazel
Hazel
Sharp Observer Chef
On quiet evenings I like to treat PDFs like little puzzles, and the command line is where I open them up. Start with pdfinfo for the essentials — type pdfinfo 'document.pdf' and you’ll see Title, Author, Creator, Producer, CreationDate, ModDate, page count and sizes. It’s fast and great when you just need surface data.

If you want depth, exiftool is the better microscope: exiftool -a -u -g1 'document.pdf' prints detailed XMP, PDF/Info and other embedded tags, often revealing software versions and custom fields. For scripts that need the XMP XML, pull it out with strings 'document.pdf' | sed -n '//,/<\/x:xmpmeta>/p' and feed that into an XML parser. When metadata is embedded as PDF objects, pdftk 'document.pdf' dump_data shows InfoKey/InfoValue lines which are easy to parse; mutool from the MuPDF suite can also inspect structure and report whether the file is encrypted.

A few practical notes from tinkering: encrypted PDFs may require passwords (pdfinfo supports -upw/-opw), some viewers write odd Creator/Producer strings (Ghostscript, LibreOffice), and timestamps can be in UTC or local formats so watch for timezone quirks. If the PDF lives online, curl -sL URL > /tmp/doc.pdf then run pdfinfo on that temporary file. It’s a small ritual, but I enjoy seeing the breadcrumbs left by different editors and tools.
2025-09-07 05:50:11
16
Zane
Zane
Library Roamer Teacher
Short checklist style for when I need metadata fast: install poppler-utils and exiftool (apt). Then use pdfinfo 'file.pdf' for a quick summary and exiftool -a -u -g1 'file.pdf' for full metadata including XMP. If you need the raw XMP XML: strings 'file.pdf' | sed -n '//,/<\/x:xmpmeta>/p'. For simple InfoKey pairs try pdftk 'file.pdf' dump_data. To change tags inline: exiftool -Title='New' -Author='Me' -overwrite_original 'file.pdf'.

Don’t forget encrypted PDFs may need passwords, and if you’re processing many files write a small shell loop to automate it. That combo covers almost every situation I run into.
2025-09-07 13:14:45
20
Ximena
Ximena
Plot Detective Electrician
I usually keep things pragmatic and to the point: install poppler-utils and exiftool, then use pdfinfo and exiftool to view metadata. Pdfinfo 'file.pdf' gives a quick human-readable summary (Pages, Title, Author, Producer, CreationDate). Exiftool -a -u -g1 'file.pdf' will show everything including XMP, metadata groups, and embedded fields.

If you need to extract the raw XMP block for programmatic parsing try: strings 'file.pdf' | sed -n '//,/<\/x:xmpmeta>/p'. For batch inspection, loop over files: for f in *.pdf; do pdfinfo "$f" | grep -Ei '^(Title|Author|Pages)'; done. To edit metadata from the command line, exiftool -Title='New Title' -Author='Me' 'file.pdf' will create a new file backup by default; add -overwrite_original to skip backups. For older tools, pdftk 'file.pdf' dump_data is useful for simple InfoKey/InfoValue output. That’s my go-to set for quick audits and scripted fixes.
2025-09-08 17:32:49
11
View All Answers
Scan code to download App

Related Books

Related Questions

How can I view metadata of pdf without installing software?

4 Answers2025-09-02 16:25:35
I love poking around files, so here’s a friendly walk-through that doesn’t require installing anything new. On Windows you can often get basic metadata without extra tools: right-click the PDF file in File Explorer, choose 'Properties' and open the 'Details' tab. You’ll see fields like Title, Author, and sometimes Creation and Modification dates. On macOS, select the file in Finder and hit 'Get Info' (or press ⌘I) for similar details. Both of these show filesystem-level and embedded metadata that many PDFs include. If you want more embedded info, open the PDF in Firefox (its built-in viewer is great for this). Click the small 'i' icon or look for 'Document Properties' in the viewer toolbar; it exposes XMP/metadata like Producer, Creator, and custom fields. Alternatively, you can upload to Google Drive and open the details pane — it shows upload/owner info and sometimes core metadata. Quick heads-up: I don’t like uploading personal docs to third-party sites, so for sensitive PDFs I stick to local methods like Finder/File Explorer or opening the file in a plain text editor and searching for '/Title' or '' blocks to read raw metadata. If you see XML tags, that’s the XMP packet and it’s human-readable, which I find oddly satisfying.</div></div><div class="qa-item" data-v-b7353ae2><h3 data-v-b7353ae2><a href="/qa/command-line-tool-converts-chm-pdf-linux" class="qa-item-title" data-v-b7353ae2> What command line tool converts chm to pdf on Linux? </a></h3><div class="qa-item-line" data-v-b7353ae2><span data-v-b7353ae2>8 Answers</span><span data-v-b7353ae2>2025-09-04 18:39:31</span></div><div class="qa-item-desc" data-v-b7353ae2>Okay, here’s the practical route I use when I need a CHM turned into a tidy PDF on Linux — I usually reach for 'chm2pdf' first because it’s simple and made for exactly this job. Install it from your distro (on Debian/Ubuntu: sudo apt install chm2pdf). Then the basic command is stupidly straightforward: chm2pdf input.chm output.pdf. It often does a fine job preserving the table of contents and most images. If you want nicer layout control or better handling of tricky HTML inside the CHM, I keep Calibre's command-line tool on hand. Install Calibre (sudo apt install calibre) and run: ebook-convert input.chm output.pdf. That one is surprisingly good at reflowing text, embedding fonts, and you can tweak paper size, margins or metadata with flags (for example, --paper-size or --margin-top). For TOC-heavy manuals it often looks cleaner than a raw conversion. Finally, if either of those trips up because the CHM contains odd scripts or has embedded resources, I extract the HTML with libchm utilities (install libchm-bin) and then convert the HTML directory to PDF using wkhtmltopdf or even a batch ebook-convert on the extracted HTML. That two-step route gives you maximum control. I’ve saved some ancient programming manuals this way and it’s been a lifesaver when a straight conversion produced broken images or missing pages.</div></div><div class="qa-item" data-v-b7353ae2><h3 data-v-b7353ae2><a href="/qa/view-metadata-pdf-python-pypdf2" class="qa-item-title" data-v-b7353ae2> How can I view metadata of pdf in Python with PyPDF2? </a></h3><div class="qa-item-line" data-v-b7353ae2><span data-v-b7353ae2>8 Answers</span><span data-v-b7353ae2>2025-09-02 01:20:04</span></div><div class="qa-item-desc" data-v-b7353ae2>Oh, I love digging into little file mysteries — PDFs are no exception. If you just want to peek at metadata with PyPDF2, the modern, straightforward route is to use PdfReader and inspect the .metadata attribute. Here's the tiny script I usually toss into a REPL or a small utility file: from PyPDF2 import PdfReader reader = PdfReader('example.pdf') if reader.is_encrypted: try: reader.decrypt('') # try empty password except Exception: raise RuntimeError('PDF is encrypted and requires a password') meta = reader.metadata # returns a dictionary-like object print(meta) That .metadata often contains keys like '/Title', '/Author', '/Creator', '/Producer', '/CreationDate' and '/ModDate'. Sometimes it's None or sparse — many PDFs don't bother to set all fields. I also keep a tiny helper to normalize keys and parse the odd CreationDate format (it looks like "D:20201231235959Z00'00'") into a Python datetime when I need to display a friendlier timestamp. If you're on an older PyPDF2 version you'll see PdfFileReader and reader.getDocumentInfo() instead; the idea is the same. If you want pretty output, convert meta to a plain dict and iterate key/value pairs, or write them to JSON after sanitizing dates. It’s a tiny ritual I enjoy before archivism or just poking through downloaded manuals.</div></div><div class="qa-item" data-v-b7353ae2><h3 data-v-b7353ae2><a href="/qa/tools-let-view-metadata-pdf-free-online" class="qa-item-title" data-v-b7353ae2> Which tools let me view metadata of pdf for free online? </a></h3><div class="qa-item-line" data-v-b7353ae2><span data-v-b7353ae2>4 Answers</span><span data-v-b7353ae2>2025-09-02 21:24:33</span></div><div class="qa-item-desc" data-v-b7353ae2>I've been digging through PDFs for research and personal projects a lot lately, so I’ve tried a handful of free online tools that actually show PDF metadata without too much fuss. If you want quick, no-install checks, I usually reach for 'Sejda' or 'PDFCandy' — both have a specific 'Edit metadata' or metadata viewer page where you can see title, author, subject, keywords, PDF producer, and sometimes creation/modification dates. 'Aspose' has a neat online demo that reads metadata cleanly and even lists custom XMP fields. For a very lightweight view I sometimes drop files into 'PDF24 Tools' or peek at 'GroupDocs' demo pages, which often surface the same fields. One caveat I always tell friends: if the document is sensitive, avoid uploading it to public sites. For privacy I fallback to a local utility like 'ExifTool' or 'PDF-XChange Editor' when I can. Otherwise, these web tools are great for quick checks, and I like that they show the common metadata fields without making me wrestle with complex menus.</div></div><div class="qa-item" data-v-b7353ae2><h3 data-v-b7353ae2><a href="/qa/view-metadata-pdf-files-windows-10" class="qa-item-title" data-v-b7353ae2> How do I view metadata of pdf files on Windows 10? </a></h3><div class="qa-item-line" data-v-b7353ae2><span data-v-b7353ae2>10 Answers</span><span data-v-b7353ae2>2025-09-02 11:26:25</span></div><div class="qa-item-desc" data-v-b7353ae2>Okay, here’s the friendly walkthrough I’d give a pal who just asked this over coffee. On Windows 10, the simplest place to start is File Explorer: right‑click the PDF, pick 'Properties', then open the 'Details' tab. You’ll see basic fields like Title, Author, and sometimes Keywords — but Windows only shows what the file embeds in standard metadata fields, so a lot of PDFs look blank here even if they contain extra info. If you want the metadata that most PDF readers expose, open the file in 'Adobe Acrobat Reader DC' (or 'PDF-XChange Editor', or 'SumatraPDF') and press Ctrl+D or go to File → Properties. That view tends to show more PDF-specific fields (like Producer, PDF version, and custom XMP data). For power users who need everything, I use 'ExifTool' (free): exiftool file.pdf shows all embedded metadata. It’s faster for batches: exiftool *.pdf dumps metadata for every file in a folder. Try a couple of these depending on how deep you need to go — and if you’re prepping files to share, remember to scrub metadata first if privacy matters.</div></div><div class="qa-item" data-v-b7353ae2><h3 data-v-b7353ae2><a href="/qa/view-metadata-pdf-using-adobe-acrobat" class="qa-item-title" data-v-b7353ae2> How can I view metadata of pdf using Adobe Acrobat? </a></h3><div class="qa-item-line" data-v-b7353ae2><span data-v-b7353ae2>5 Answers</span><span data-v-b7353ae2>2025-09-02 15:38:00</span></div><div class="qa-item-desc" data-v-b7353ae2>Okay, here’s a friendly walkthrough that I actually use when poking around PDFs: open the PDF in Adobe Acrobat (Reader or Pro), then press Ctrl+D (Cmd+D on a Mac) to pop up the Document Properties window. The Description tab is the quick view — Title, Author, Subject, and Keywords live there. If you want more, click the 'Additional Metadata' button in that window; that opens the XMP metadata viewer where you can see deeper fields like PDF producer, creation and modification timestamps, and any custom namespaces embedded by other apps. If you have Acrobat Pro, I go further: Tools > Protect & Standardize > Remove Hidden Information (or search for 'Remove Hidden Information' in Tools). That previews hidden metadata, attached data, and comments that ordinary users might miss. For structural or compliance checks I open Tools > Print Production > Preflight to inspect PDF/A, PDF/X, font embedding, and more. Small tip: editing the basic fields is done right in Document Properties (change Title/Author/Keywords), but for full cleanup or forensic detail, Preflight and Remove Hidden Information are where I live — they surface the stuff regular viewers won't show.</div></div><div class="qa-item" data-v-b7353ae2><h3 data-v-b7353ae2><a href="/qa/view-metadata-pdf-created-microsoft-word" class="qa-item-title" data-v-b7353ae2> How can I view metadata of pdf created by Microsoft Word? </a></h3><div class="qa-item-line" data-v-b7353ae2><span data-v-b7353ae2>11 Answers</span><span data-v-b7353ae2>2025-09-02 21:10:50</span></div><div class="qa-item-desc" data-v-b7353ae2>Oh, this one makes me nerdy-happy — I check PDF metadata all the time when I’m cleaning documents before sending them out. If you’re still in Word, the easiest place to start is File → Info. You’ll see basic properties like Author and Title there; click Properties → Advanced Properties to edit Summary, Statistics, and any Custom fields. When you Save As PDF, click Options in the Save dialog and make sure document properties are preserved or removed depending on your goal. After the PDF exists, open it in a PDF reader — in 'Adobe Acrobat Reader' go to File → Properties (or press Ctrl+D) to view Description (Title, Author, Subject, Keywords), Custom metadata, and the PDF producer and creation/modification times. If you want forensic-level detail, use tools like exiftool (exiftool myfile.pdf) or Poppler’s pdfinfo (pdfinfo myfile.pdf) on the command line; they dump XMP and embedded metadata. Also double-check Windows File Explorer (right-click → Properties → Details) or macOS Finder (Get Info) for quick looks. If privacy is the issue, run Word’s Document Inspector (File → Info → Check for Issues → Inspect Document) before exporting or use Acrobat’s Remove Hidden Information / Sanitize features. Personally, I run exiftool as a final check because it reveals everything including odd custom properties that Word sometimes tucks away.</div></div><div class="qa-item" data-v-b7353ae2><h3 data-v-b7353ae2><a href="/qa/linux-beginners-book-cover-command-line-basics" class="qa-item-title" data-v-b7353ae2> Does the linux for beginners book cover command line basics? </a></h3><div class="qa-item-line" data-v-b7353ae2><span data-v-b7353ae2>3 Answers</span><span data-v-b7353ae2>2025-07-03 18:25:04</span></div><div class="qa-item-desc" data-v-b7353ae2>I picked up 'Linux for Beginners' when I was just starting out, and it was a lifesaver. The book does a solid job covering command line basics, explaining things like navigating directories, file operations, and basic scripting in a way that’s easy to digest. It doesn’t overwhelm you with jargon but instead builds your confidence step by step. I remember the chapter on common commands like 'ls', 'cd', and 'grep' being especially helpful. The examples are practical, like organizing files or finding specific data, which made it feel less abstract. If you’re new to Linux, this book gives you the foundation to start experimenting without feeling lost. One thing I appreciated was how it tied the command line to real-world tasks, like managing permissions or automating simple backups. It’s not just theory—it’s stuff you’ll actually use. The book also touches on troubleshooting, which is clutch when you hit a snag. It’s not an encyclopedia of every command, but it’s enough to get you comfortable and curious to explore more.</div></div><div class="qa-item" data-v-b7353ae2><h3 data-v-b7353ae2><a href="/qa/view-metadata-pdf-remove-sensitive-info" class="qa-item-title" data-v-b7353ae2> How can I view metadata of pdf and remove sensitive info? </a></h3><div class="qa-item-line" data-v-b7353ae2><span data-v-b7353ae2>4 Answers</span><span data-v-b7353ae2>2025-09-02 00:44:29</span></div><div class="qa-item-desc" data-v-b7353ae2>Okay, let me walk you through this like I’m chatting over coffee — metadata in PDFs hides in more places than you’d think, and removing it cleanly takes a couple of different moves. First, inspect. I usually run simple tools to see what’s actually inside: open the PDF’s Properties in a viewer (File > Properties), run pdfinfo (poppler) or exiftool to get a full readout (exiftool file.pdf), and also search the raw file for XML XMP packets (open in a text editor and look for '<x:xmpmeta' or '/Metadata'). Those tell you about the Info dictionary (Title, Author, CreationDate) and any XMP metadata. Don’t forget attachments, embedded fonts, or hidden form data — these won’t always show in basic viewers. Next, remove. If I’m on a machine with ExifTool, I run: exiftool -all= -overwrite_original file.pdf which nukes most metadata fields (ExifTool often makes a backup unless you use -overwrite_original). For a GUI I’ll use a proper PDF editor: in Acrobat Pro use Tools > Redact > Remove Hidden Information or Tools > Sanitize Document (that removes XMP, hidden layers, comments, metadata and more). As a safety habit I always create a copy, check again with exiftool/pdfinfo, and scan the new file for any leftover strings of sensitive text. And I avoid online uploaders for sensitive docs unless I’m sure they’re trustworthy.</div></div><div class="qa-item" data-v-b7353ae2><h3 data-v-b7353ae2><a href="/qa/view-metadata-pdf-macos-preview-app" class="qa-item-title" data-v-b7353ae2> Where can I view metadata of pdf on macOS Preview app? </a></h3><div class="qa-item-line" data-v-b7353ae2><span data-v-b7353ae2>5 Answers</span><span data-v-b7353ae2>2025-09-02 19:02:44</span></div><div class="qa-item-desc" data-v-b7353ae2>If you've got a PDF open in Preview, the quickest way I use is Tools → Show Inspector (or press Command-I). When the Inspector pops up you'll usually see an 'i' tab or a 'More Info' section where Preview displays metadata like Title, Author, Subject/Keywords (if the file has them), PDF producer/creator, PDF version, page size and sometimes creation/modification dates. If nothing shows up there, it often means the PDF simply doesn't have embedded metadata. Preview's metadata viewer is handy for a quick peek, but it's a viewer-first tool: editing fields is limited or inconsistent across macOS versions. If you need to dig deeper or edit stuff, I switch to Finder's Get Info for basic tags, or use Terminal: mdls /path/to/file.pdf reveals Spotlight metadata, and 'exiftool' shows practically everything. For full edit control I go to a dedicated app like 'Adobe Acrobat' or a metadata editor. Preview's Inspector gets you most of what you need at a glance, though, and for quick checks it's my go-to.</div></div></div></div><div class="qad-block" data-v-222bd693><h2 class="qad-title" data-v-222bd693>Related Searches</h2><div class="qas" data-v-e6977e9e data-v-222bd693><a href="/qa/t_view-metadata-of-pdf" class="qas-item" data-v-e6977e9e><h3 class="qas-item-text" data-v-e6977e9e>View Metadata Of Pdf</h3></a><a href="/qa/t_pdf-linux-reader" class="qas-item" data-v-e6977e9e><h3 class="qas-item-text" data-v-e6977e9e>Pdf Linux Reader</h3></a><a href="/qa/t_pdf-readers-linux" class="qas-item" data-v-e6977e9e><h3 class="qas-item-text" data-v-e6977e9e>Pdf Readers Linux</h3></a><a href="/qa/t_change-pdf-metadata-online" class="qas-item" data-v-e6977e9e><h3 class="qas-item-text" data-v-e6977e9e>Change Pdf Metadata Online</h3></a><a href="/qa/t_extract-pdf-text" class="qas-item" data-v-e6977e9e><h3 class="qas-item-text" data-v-e6977e9e>Extract Pdf Text</h3></a><a href="/qa/t_extract-text-from-pdf-document" class="qas-item" data-v-e6977e9e><h3 class="qas-item-text" data-v-e6977e9e>Extract Text From Pdf Document</h3></a><a href="/qa/t_extract-text-from-pdfs" class="qas-item" data-v-e6977e9e><h3 class="qas-item-text" data-v-e6977e9e>Extract Text From Pdfs</h3></a><a href="/qa/t_pdf-extract-text-python" class="qas-item" data-v-e6977e9e><h3 class="qas-item-text" data-v-e6977e9e>Pdf Extract Text Python</h3></a></div></div></div><div class="qad-right" data-v-222bd693><div class="qad-right-section" data-v-222bd693><div class="list" data-v-4c1b4076 data-v-222bd693><div class="list-title" data-v-4c1b4076>Popular Question</div><div class="list-list" data-v-4c1b4076><div class="list-item" data-v-4c1b4076><div class="right-item-index" data-v-4c1b4076>01</div><span data-v-4c1b4076><a href="/qa/laurie-r-king-book-starts-mary-russell-mystery-series" class="right-item-title" data-v-4c1b4076>Which Laurie R. King Book Starts The Mary Russell Mystery Series?</a></span></div><div class="list-item" data-v-4c1b4076><div class="right-item-index" data-v-4c1b4076>02</div><span data-v-4c1b4076><a href="/qa/correct-chronological-order-harry-potter-books" class="right-item-title" data-v-4c1b4076>What Is The Correct Chronological Order Of The Harry Potter Books?</a></span></div><div class="list-item" data-v-4c1b4076><div class="right-item-index" data-v-4c1b4076>03</div><span data-v-4c1b4076><a href="/qa/family-relationships-explored-ya-lgbtq-romance-novels" class="right-item-title" data-v-4c1b4076>How Are Family Relationships Explored In YA LGBTQ Romance Novels?</a></span></div><div class="list-item" data-v-4c1b4076><div class="right-item-index" data-v-4c1b4076>04</div><span data-v-4c1b4076><a href="/qa/read-snow-flower-secret-fan-books-order" class="right-item-title" data-v-4c1b4076>How Do I Read The Snow Flower And The Secret Fan Books In Order?</a></span></div><div class="list-item" data-v-4c1b4076><div class="right-item-index" data-v-4c1b4076>05</div><span data-v-4c1b4076><a href="/qa/laurie-r-king-book-start-others" class="right-item-title" data-v-4c1b4076>Which Laurie R. King Book Should I Start With Before The Others?</a></span></div><div class="list-item" data-v-4c1b4076><div class="right-item-index" data-v-4c1b4076>06</div><span data-v-4c1b4076><a href="/qa/timeline-little-witch-anna-elizabeth-bennet-meet" class="right-item-title" data-v-4c1b4076>In Which Timeline Do Little Witch Anna And Elizabeth Bennet Meet?</a></span></div><div class="list-item" data-v-4c1b4076><div class="right-item-index" data-v-4c1b4076>07</div><span data-v-4c1b4076><a href="/qa/read-nicholas-sparks-books-chronological-order" class="right-item-title" data-v-4c1b4076>How Do I Read Nicholas Sparks Books In Chronological Order?</a></span></div><div class="list-item" data-v-4c1b4076><div class="right-item-index" data-v-4c1b4076>08</div><span data-v-4c1b4076><a href="/qa/reading-level-lion-witch-wardrobe" class="right-item-title" data-v-4c1b4076>What Is The Reading Level Of The Lion The Witch And The Wardrobe?</a></span></div><div class="list-item" data-v-4c1b4076><div class="right-item-index" data-v-4c1b4076>09</div><span data-v-4c1b4076><a href="/qa/lesbian-vampire-novel-reinvent-classic-vampire-lore" class="right-item-title" data-v-4c1b4076>How Does A Lesbian Vampire Novel Reinvent Classic Vampire Lore?</a></span></div><div class="list-item" data-v-4c1b4076><div class="right-item-index" data-v-4c1b4076>10</div><span data-v-4c1b4076><a href="/qa/find-fern-michaels-sisterhood-reading-order-subseries" class="right-item-title" data-v-4c1b4076>Where Can I Find The Fern Michaels Sisterhood Reading Order With Subseries?</a></span></div></div></div></div><div class="qad-right-section" data-v-222bd693><div class="qad-right-title" data-v-222bd693>Popular Searches</div><div class="qas qas--list" data-v-e6977e9e data-v-222bd693><a href="/qa/t_brockton-bays-celestial-forge" class="qas-item" data-v-e6977e9e><div class="qas-item-text" data-v-e6977e9e>Brockton Bays Celestial Forge</div></a><a href="/qa/t_the-friday-afternoon-club" class="qas-item" data-v-e6977e9e><div class="qas-item-text" data-v-e6977e9e>The Friday Afternoon Club</div></a><a href="/qa/t_wild-side-sex-the-book-of-kink-educational-sensual-and-entertaining-essays" class="qas-item" data-v-e6977e9e><div class="qas-item-text" data-v-e6977e9e>Wild Side Sex: The Book Of Kink: Educational, Sensual, And Entertaining Essays</div></a><a href="/qa/t_reckless-funke-novel" class="qas-item" data-v-e6977e9e><div class="qas-item-text" data-v-e6977e9e>Reckless Funke Novel</div></a><a href="/qa/t_page-numbers-book" class="qas-item" data-v-e6977e9e><div class="qas-item-text" data-v-e6977e9e>Page Numbers Book</div></a><a href="/qa/t_a-ghost-story-who-was-the-other-ghost" class="qas-item" data-v-e6977e9e><div class="qas-item-text" data-v-e6977e9e>A Ghost Story Who Was The Other Ghost</div></a><a href="/qa/t_free-billionaire-romance-books-online-read" class="qas-item" data-v-e6977e9e><div class="qas-item-text" data-v-e6977e9e>Free Billionaire Romance Books Online Read</div></a><a href="/qa/t_tgcf-chinese-novel" class="qas-item" data-v-e6977e9e><div class="qas-item-text" data-v-e6977e9e>Tgcf Chinese Novel</div></a><a href="/qa/t_quiter" class="qas-item" data-v-e6977e9e><div class="qas-item-text" data-v-e6977e9e>Quiter</div></a><a href="/qa/t_kindle-free-romance-books" class="qas-item" data-v-e6977e9e><div class="qas-item-text" data-v-e6977e9e>Kindle Free Romance Books</div></a></div></div></div></div><div class="downb qad-db" data-v-2571a44a data-v-222bd693><div class="downb-img" data-v-2571a44a></div><div class="downb-con" data-v-2571a44a><div class="downb-title" data-v-2571a44a>Explore and read <span>good novels for free</span></div><div class="downb-desc" data-v-2571a44a>Free access to a vast number of good novels on GoodNovel app. Download the books you like and read anywhere &amp; anytime.</div></div><div position="foot_banner" size="128" class="downb-qrcode" data-v-2571a44a><div class="qr-code-wrap" style="width:120px;height:120px;" data-v-9c5e2524 data-v-2571a44a><div value="" level="H" background="#fff" foreground="#000" class="qr-code" data-v-9c5e2524><canvas height="120" width="120" style="width:120px;height:120px;"></canvas></div><img src="https://www.goodnovel.com/pcdist/src/assets/images/common/51e534b7-logo_icon.png" alt class="qr-code-logo" data-v-9c5e2524></div><div class="downb-qrcode-desc" data-v-2571a44a>Read books for free on the app</div></div></div><!----><!----><!----></div></div><div class="container-box" style="display:none;" data-v-1e4f73b2><div class="page-loading-wrap" data-v-62844f26 data-v-1e4f73b2><div data-v-62844f26><img src="https://www.goodnovel.com/pcdist/src/assets/images/9305813c-page_loading.png" alt="loading" class="loading-img" data-v-62844f26></div><div class="loading-txt" data-v-62844f26> Loading... </div></div></div><footer class="footer footer-en" data-v-71c8bf41 data-v-1e4f73b2><ul class="box" data-v-71c8bf41><li class="aboutus" data-v-71c8bf41><img alt="GoodNovel" src="https://www.goodnovel.com/pcdist/src/assets/images/footer/269a57cf-logo.png" fetchpriority="low" class="aboutus-logo" data-v-71c8bf41><div class="aboutus-follow-text" data-v-71c8bf41>Follow Us:</div><div class="aboutus-follow-list" data-v-71c8bf41><a href="https://www.facebook.com/GoodNovels" rel="nofollow" class="fb" data-v-71c8bf41></a><a href="https://www.tiktok.com/@goodnovelofficial" rel="nofollow" class="tt" data-v-71c8bf41></a><a href="https://www.instagram.com/goodnovelist" rel="nofollow" class="ins" data-v-71c8bf41></a><a href="https://www.youtube.com/@GoodNovelOfficial" rel="nofollow" class="utube" data-v-71c8bf41></a></div><div class="aboutus-copy" data-v-71c8bf41>Copyright ©‌ 2026 GoodNovel</div><div class="aboutus-line" data-v-71c8bf41><a href="/terms" rel="nofollow" data-v-71c8bf41>Terms of Use</a><span data-v-71c8bf41>|</span><a href="/privacy" rel="nofollow" data-v-71c8bf41>Privacy Policy</a></div></li><li class="item" data-v-71c8bf41><div class="title" data-v-71c8bf41>Hot Genres</div><a href="/stories/Romance-novels" class="content-li" data-v-71c8bf41>Romance</a><a href="/stories/Werewolf-novels" class="content-li" data-v-71c8bf41>Werewolf</a><a href="/stories/Mafia-novels" class="content-li" data-v-71c8bf41>Mafia</a><a href="/stories/System-novels" class="content-li" data-v-71c8bf41>System</a><a href="/stories/Fantasy-novels" class="content-li" data-v-71c8bf41>Fantasy</a><a href="/stories/Urban-novels" class="content-li" data-v-71c8bf41>Urban</a></li><li class="item" data-v-71c8bf41><div class="title" data-v-71c8bf41>Contact us</div><a href="/about_us" class="content-li" data-v-71c8bf41>About Us</a><a target="_blank" rel="nofollow" href="https://docs.google.com/forms/d/e/1FAIpQLSeN_Qb3KRdbzPQ1RGw3HTX3nOtl90SLwkBHYre56Dh_e4efNw/viewform" class="content-li" data-v-71c8bf41>Help &amp; Suggestion</a><a href="/business" rel="nofollow" class="content-li" data-v-71c8bf41>Business</a></li><li class="item" data-v-71c8bf41><div class="title" data-v-71c8bf41>Resources</div><a href="/download_apps" rel="nofollow" class="content-li" data-v-71c8bf41>Download Apps</a><a href="/writer_benefit" rel="nofollow" class="content-li" data-v-71c8bf41>Writer Benefit</a><a href="/helpCenter" rel="nofollow" class="content-li" data-v-71c8bf41>Content policy</a><a href="/tags/all" class="content-li" data-v-71c8bf41>Keywords</a><a href="/hot-searches/all" class="content-li" data-v-71c8bf41>Hot Searches</a><a href="/resources" class="content-li" data-v-71c8bf41>Book Review</a><a href="/fanfiction" class="content-li" data-v-71c8bf41>FanFiction</a><a href="/qa" style="display:none;" data-v-71c8bf41>FAQ</a><a href="/qa/id" style="display:none;" data-v-71c8bf41>FAQ-ID</a><a href="/qa/fil" style="display:none;" data-v-71c8bf41>FAQ-FIL</a><a href="/qa/th" style="display:none;" data-v-71c8bf41>FAQ-TH</a><a href="/qa/ja" style="display:none;" data-v-71c8bf41>FAQ-JA</a><a href="/qa/ar" style="display:none;" data-v-71c8bf41>FAQ-AR</a><a href="/qa/es" style="display:none;" data-v-71c8bf41>FAQ-ES</a><a href="/qa/ko" style="display:none;" data-v-71c8bf41>FAQ-KO</a><a href="/qa/de" style="display:none;" data-v-71c8bf41>FAQ-DE</a><a href="/qa/fr" style="display:none;" data-v-71c8bf41>FAQ-FR</a><a href="/qa/pt" style="display:none;" data-v-71c8bf41>FAQ-PT</a><a href="/goodnovel-vs-competitors" style="display:none;" data-v-71c8bf41>GoodNovel vs Competitors</a></li><li class="item" data-v-71c8bf41><div class="title" data-v-71c8bf41>Community</div><a target="_blank" rel="nofollow" href="https://www.facebook.com/groups/GoodNovels/" class="content-li" data-v-71c8bf41>Facebook Group</a><div class="title" data-v-71c8bf41>Download</div><div class="download download-apple" data-v-71c8bf41></div><div class="download download-google" data-v-71c8bf41></div></li></ul><!----></footer><!----></div><div class="download" data-v-1e4f73b2><div class="download-logo" data-v-1e4f73b2><div class="download-logo-border" data-v-1e4f73b2></div><div class="download-logo-cover" data-v-1e4f73b2></div><div class="download-logo-img" data-v-1e4f73b2></div></div><div class="qr-code-wrap" style="width:80px;height:80px;" data-v-9c5e2524 data-v-1e4f73b2><div value="" level="L" background="#fff" foreground="#000" class="qr-code" data-v-9c5e2524><canvas height="80" width="80" style="width:80px;height:80px;"></canvas></div><!----></div><span data-v-1e4f73b2>SCAN CODE TO READ ON APP</span></div></div><!----><div style="text-align: center; position: fixed; opacity: 0; z-index: -1; left: -9999em;"><a href="//www.dmca.com/Protection/Status.aspx?ID=0dcec714-6f50-4fa3-adf7-6aacf8fb29e3" title="DMCA.com Protection Status" class="dmca-badge"><img src="https://images.dmca.com/Badges/_dmca_premi_badge_4.png?ID=0dcec714-6f50-4fa3-adf7-6aacf8fb29e3" alt="DMCA.com Protection Status"></a></div></div><script>window.__INITIAL_STATE__={"source":{"token":{"promise":{}}},"redirectObj":{"status":false,"url":""},"bookLangKey":null,"skeletonLoading":false,"NotFound404Staus":false,"NotFound410Staus":false,"isSpider":false,"apiStatus":-1,"gbotI":{},"moduleCommon":{"loading":true},"moduleRead":{"opeationIndex":-1,"bgColor":0,"fontSize":20,"currentChapterId":"","currentChapterName":""},"moduleHome":{"hasViolation":false,"language":"en","userInfo":{},"isShowLogin":false,"currentPath":"\u002F","addCurrentBookInfo":{},"callBackObj":false,"bookAuthStatus":true},"moduleSearch":{"topList":[],"bottomList":[],"keyword":"","pageSize":20,"pageNo":1,"totals":1,"books":[],"allBookCount":0,"isNull":false,"keywordFormat":null,"searchKeyword":null,"recommend":{"hotWords":[],"recommendInfo":{"recommendBooks":[]}}},"moduleUserCenter":{"incomeList":[],"workDataList":[],"attendanceBonus":0,"incomeGeneralData":{},"menuStatus":1},"HomeDataModule":{"canonicalPline":-1,"bookInfoStatus":0,"bookInfo":{},"recommendBook":false,"originalBooks":[],"fafictionTitle":"","maylikelist":{"name":"You may also like","items":[]},"relatedNovels":{"name":"","items":[]},"newReleaseNovels":{"name":"","items":[]},"eroticNovels":{"name":"","items":[]},"packNum":0,"matePseudonym":false,"mockOffShelfFalg":false,"alphalist":{"name":"Myths from Alpha and Luna","items":[],"isAlpha":true},"bookList":[],"books":[],"tabs":[],"totals":1,"moreBooks":[],"moreName":"","allBookCount":0,"latestUpdateList":[],"recommendChapterList":[],"adultTagRecommends":[],"seoRecommends":[],"seoReadersTdk":{},"seoResourcesList":[],"seo404Vo":{},"ssrComment":{"pageNo":1,"totals":1,"level":1,"allComments":0,"commentList":[],"currentCommentInfo":[]},"bookRatingsStatics":null,"isOffShelf":false},"moduleHub":{"keyword":"","pageSize":4,"pageNo":1,"totals":10,"books":[],"allBookCount":200,"isNull":false},"HubDataModule":{"totals":0,"books":[],"hubInfo":{"seoDesc":"","seoKeywords":"","seoTitle":""},"pageNo":1,"initLoad":false},"HomeCategoryModule":{"bookTypes":[],"totals":10,"books":[],"currentIndex":""},"ContestDataModule":{"rankBooks":[],"activityId":"","initLoad":false,"errStatus":""},"FreeZone":{"cates":[],"cateLang":"","pageNo":1,"pageSize":15,"totals":0,"filterIndex":0,"contentTypeIndex":0,"chaptersIndex":0,"bookList":[],"filter":[{"key":"1","name":"Updated"},{"key":"2","name":"New Online"}],"contentType":[{"key":null,"name":"All"},{"key":"ORIGINAL","name":"Original"},{"key":"ALTERNATE","name":"FanFiction"}],"chapters":[{"key":null,"name":"All"},{"key":"LESS30","name":"\u003C30"},{"key":"BETWEEN30_100","name":"30-100"},{"key":"BETWEEN100_200","name":"100-200"},{"key":"BETWEEN200_500","name":"200-500"},{"key":"MORE500","name":"\u003E500"}]},"AlphaDataModule":{"rankBooks":[],"activityId":"","login":false,"mateShareInfo":{},"packShareInfo":{},"initLoad":false,"errStatus":"","totalViewCount":0},"UcModule":{"bookId":null,"lang":"","bookList":[]},"Catalog":{"catalogs":[],"pageSize":10,"totalPage":0,"pageNo":0,"total":0},"Browse":{"bookTypes":[],"shortBookTypes":[],"bookTypesNav":[{"id":11,"language":"ENGLISH","desc":"Romance","genreResourceUrl":"Romance-novels","lengthType":1},{"id":16,"language":"ENGLISH","desc":"Werewolf","genreResourceUrl":"Werewolf-novels","lengthType":1},{"id":7,"language":"ENGLISH","desc":"Mafia","genreResourceUrl":"Mafia-novels","lengthType":1},{"id":13,"language":"ENGLISH","desc":"System","genreResourceUrl":"System-novels","lengthType":1},{"id":3,"language":"ENGLISH","desc":"Fantasy","genreResourceUrl":"Fantasy-novels","lengthType":1},{"id":14,"language":"ENGLISH","desc":"Urban","genreResourceUrl":"Urban-novels","lengthType":1},{"id":6,"language":"ENGLISH","desc":"LGBTQ+","genreResourceUrl":"LGBTQ-novels","lengthType":1},{"id":17,"language":"ENGLISH","desc":"YA\u002FTEEN","genreResourceUrl":"YA-TEEN-novels","lengthType":1},{"id":10,"language":"ENGLISH","desc":"Paranormal","genreResourceUrl":"Paranormal-novels","lengthType":1},{"id":9,"language":"ENGLISH","desc":"Mystery\u002FThriller","genreResourceUrl":"Mystery-Thriller-novels","lengthType":1},{"id":2,"language":"ENGLISH","desc":"Eastern","genreResourceUrl":"Eastern-novels","lengthType":1},{"id":4,"language":"ENGLISH","desc":"Games","genreResourceUrl":"Games-novels","lengthType":1},{"id":5,"language":"ENGLISH","desc":"History","genreResourceUrl":"History-novels","lengthType":1},{"id":8,"language":"ENGLISH","desc":"MM Romance","genreResourceUrl":"MM-Romance-novels","lengthType":1},{"id":12,"language":"ENGLISH","desc":"Sci-Fi","genreResourceUrl":"Sci-Fi-novels","lengthType":1},{"id":15,"language":"ENGLISH","desc":"War","genreResourceUrl":"War-novels","lengthType":1},{"id":18,"language":"ENGLISH","desc":"Other","genreResourceUrl":"Other-novels","lengthType":1}],"shortBookTypesNav":[{"id":47,"language":"ENGLISH","desc":"Romance","genreResourceUrl":"Romance-short-novels","lengthType":2},{"id":52,"language":"ENGLISH","desc":"Emotional Realism","genreResourceUrl":"Emotional-Realism-short-novels","lengthType":2},{"id":53,"language":"ENGLISH","desc":"Werewolf","genreResourceUrl":"Werewolf-short-novels","lengthType":2},{"id":71,"language":"ENGLISH","desc":"Mafia","remark":"黑手党","genreResourceUrl":"Mafia-short-novels","lengthType":2},{"id":151,"language":"ENGLISH","desc":"MM Romance","genreResourceUrl":"MM-Romance-short-novels","lengthType":2},{"id":152,"language":"ENGLISH","desc":"Vampire","genreResourceUrl":"Vampire-short-novels","lengthType":2},{"id":164,"language":"ENGLISH","desc":"Mythology","remark":"Mythology","genreResourceUrl":"Mythology-short-novels","lengthType":2},{"id":173,"language":"ENGLISH","desc":"Fantasy","genreResourceUrl":"Fantasy-short-novels","lengthType":2},{"id":48,"language":"ENGLISH","desc":"Campus","genreResourceUrl":"Campus-short-novels","lengthType":2},{"id":50,"language":"ENGLISH","desc":"Imagination","genreResourceUrl":"Imagination-short-novels","lengthType":2},{"id":51,"language":"ENGLISH","desc":"Rebirth","genreResourceUrl":"Rebirth-short-novels","lengthType":2},{"id":65,"language":"ENGLISH","desc":"Steamy","genreResourceUrl":"Steamy-short-novels","lengthType":2},{"id":49,"language":"ENGLISH","desc":"Mystery\u002FThriller","genreResourceUrl":"Mystery-Thriller-short-novels","lengthType":2},{"id":67,"language":"ENGLISH","desc":"Folklore Mystery","genreResourceUrl":"Folklore-Mystery-short-novels","lengthType":2},{"id":150,"language":"ENGLISH","desc":"Male POV","remark":"男视角","genreResourceUrl":"Male-POV-short-novels","lengthType":2}],"typeTwoId":"","pageNo":1,"pageSize":20,"bookWords":"ALL","popular":"POPULAR","browsePath":"","bookList":[],"totalPage":0,"total":0,"typeTwoInfo":{},"typeTwoResourceUrl":null,"browseLangKey":null,"bookTypeTwo":{},"typeNewBookList":[],"typeRecommendBookList":[],"hotSearchesList":[],"tagList":[]},"bookCapter":{"chapterData":{},"chapterStatus":0,"comentList":[],"chapterTotalComments":0,"seo404Vo":{}},"tagBook":{"tag":{},"activeTab":"A","menus":[],"searchTag":"","filterBy":"","sortBy":"","pageNo":1,"pageSize":10,"totalPage":0,"total":0,"bookList":[],"writeStatus":"","order":"","des":"","hotKeyWords":[],"tagCatePageNo":1,"tagCatePages":0,"tagAllPages":0,"tagCateList":[],"nativeTag":"","topRelatedList":[],"bottomBookRelatedList":[],"bottomTagRelatedList":[],"keywordType":"","typeNewBookList":[],"typeRecommendBookList":[],"canonicalTagUrl":"","interpretation":"","bottomFaqQaList":[]},"RscModule":{"rscInfo":{},"articleInfo":{},"tagInfo":{"list":[],"banner":[],"total":0,"pages":0,"pageNo":0},"categoryInfo":{"list":[],"banner":[],"total":0,"pages":0,"pageNo":0},"bannerList":[],"newList":[],"typeList":[],"moreTypeList":[],"languageList":[],"resourceTypeArticles":[],"resourceTypeArticlesPage":0,"resourceTypeArticlesPageTotal":0,"resourceTypeInfo":{},"resourceTypeOtherTypes":[],"typeRouteParam":"","isLanguage":false,"resourceTagArticles":[],"resourceTagArticlesPage":0,"resourceTagArticlesPageTotal":0,"resourceTagInfo":{},"resourceTagRecormmendActicles":[],"resourceTagHotTags":[],"categoryRecommendList":[]},"FanModule":{"rscInfo":{},"articleInfo":{},"tagInfo":{"list":[],"banner":[],"total":0,"pages":0,"pageNo":0},"categoryInfo":{"list":[],"banner":[],"total":0,"pages":0,"pageNo":0},"bannerList":[],"newList":[],"typeList":[],"moreTypeList":[],"languageList":[],"resourceTypeArticles":[],"resourceTypeArticlesPage":0,"resourceTypeArticlesPageTotal":0,"resourceTypeInfo":{},"resourceTypeOtherTypes":[],"typeRouteParam":"","isLanguage":false,"resourceTagArticles":[],"resourceTagArticlesPage":0,"resourceTagArticlesPageTotal":0,"resourceTagInfo":{},"tagGroupList":[],"resourceTagRecormmendActicles":[],"resourceTagHotTags":[]},"hotSearches":{"tag":{},"activeTab":"A","menus":[],"searchTag":"","filterBy":"","sortBy":"","pageNo":1,"pageSize":10,"totalPage":0,"total":0,"bookList":[],"writeStatus":"","order":"","des":"","hotKeyWords":[],"tagCatePageNo":1,"tagCatePages":0,"tagAllPages":0,"tagCateList":[],"nativeTag":""},"Author":{"author":{},"bookList":{"records":[],"total":0},"recommendBookList":[],"notFound":false},"Qa":{"qaList":[],"popularList":[{"id":5000511,"question":"Which Laurie R. King Book Starts The Mary Russell Mystery Series?","keyword":"laurie r king mary russell books in order","questionFormat":"laurie-r-king-book-starts-mary-russell-mystery-series","publishTime":"2026-07-30 18:38:09","language":"ENGLISH","answerNum":4,"viewCount":51,"ctime":"2026-07-18 06:32:01","utime":"2026-08-06 02:11:13","viewCountDisplay":"51","followCountDisplay":"0"},{"id":5002391,"question":"What Is The Correct Chronological Order Of The Harry Potter Books?","keyword":"list harry potter books in order","questionFormat":"correct-chronological-order-harry-potter-books","publishTime":"2026-07-30 19:42:45","language":"ENGLISH","answerNum":9,"viewCount":261,"ctime":"2026-07-18 06:32:17","utime":"2026-08-06 16:11:06","viewCountDisplay":"261","followCountDisplay":"0"},{"id":5001077,"question":"How Are Family Relationships Explored In YA LGBTQ Romance Novels?","keyword":"lgbtq books ya","questionFormat":"family-relationships-explored-ya-lgbtq-romance-novels","publishTime":"2026-07-30 20:15:16","language":"ENGLISH","answerNum":5,"viewCount":264,"ctime":"2026-07-18 06:32:06","utime":"2026-08-06 06:11:13","viewCountDisplay":"264","followCountDisplay":"0"},{"id":5002291,"question":"How Do I Read The Snow Flower And The Secret Fan Books In Order?","keyword":"lisa see novels in order","questionFormat":"read-snow-flower-secret-fan-books-order","publishTime":"2026-07-30 21:18:33","language":"ENGLISH","answerNum":6,"viewCount":246,"ctime":"2026-07-18 06:32:17","utime":"2026-08-06 16:11:06","viewCountDisplay":"246","followCountDisplay":"0"},{"id":5000473,"question":"Which Laurie R. King Book Should I Start With Before The Others?","keyword":"laurie king books in order","questionFormat":"laurie-r-king-book-start-others","publishTime":"2026-07-30 18:42:07","language":"ENGLISH","answerNum":7,"viewCount":296,"ctime":"2026-07-18 06:32:01","utime":"2026-08-06 02:11:13","viewCountDisplay":"296","followCountDisplay":"0"},{"id":5003104,"question":"In Which Timeline Do Little Witch Anna And Elizabeth Bennet Meet?","keyword":"little witch anna elizabeth bennett","questionFormat":"timeline-little-witch-anna-elizabeth-bennet-meet","publishTime":"2026-07-30 20:13:02","language":"ENGLISH","answerNum":7,"viewCount":56,"ctime":"2026-07-18 06:32:25","utime":"2026-08-06 22:11:12","viewCountDisplay":"56","followCountDisplay":"0"},{"id":5002569,"question":"How Do I Read Nicholas Sparks Books In Chronological Order?","keyword":"list of nicholas sparks books in chronological order","questionFormat":"read-nicholas-sparks-books-chronological-order","publishTime":"2026-07-30 19:32:53","language":"ENGLISH","answerNum":6,"viewCount":233,"ctime":"2026-07-18 06:32:19","utime":"2026-08-06 18:11:13","viewCountDisplay":"233","followCountDisplay":"0"},{"id":5001914,"question":"What Is The Reading Level Of The Lion The Witch And The Wardrobe?","keyword":"lion the witch and the wardrobe reading level","questionFormat":"reading-level-lion-witch-wardrobe","publishTime":"2026-07-30 21:34:23","language":"ENGLISH","answerNum":6,"viewCount":275,"ctime":"2026-07-18 06:32:13","utime":"2026-08-06 12:11:13","viewCountDisplay":"275","followCountDisplay":"0"},{"id":5001151,"question":"How Does A Lesbian Vampire Novel Reinvent Classic Vampire Lore?","keyword":"lesbian vampire novel","questionFormat":"lesbian-vampire-novel-reinvent-classic-vampire-lore","publishTime":"2026-07-30 22:03:03","language":"ENGLISH","answerNum":4,"viewCount":200,"ctime":"2026-07-18 06:32:07","utime":"2026-08-06 06:11:13","viewCountDisplay":"200","followCountDisplay":"0"},{"id":5002607,"question":"Where Can I Find The Fern Michaels Sisterhood Reading Order With Subseries?","keyword":"list of fern michaels sisterhood series in order","questionFormat":"find-fern-michaels-sisterhood-reading-order-subseries","publishTime":"2026-07-30 22:34:58","language":"ENGLISH","answerNum":2,"viewCount":175,"ctime":"2026-07-18 06:32:19","utime":"2026-08-06 18:11:13","viewCountDisplay":"175","followCountDisplay":"0"}],"total":0,"questionDetail":{"id":351303,"question":"Can I View Metadata Of Pdf From Command Line On Linux?","keyword":"view metadata of pdf","questionFormat":"view-metadata-pdf-command-line-linux","description":"As a beginner to Linux commands, I've been using calibre for library info but want command-line options. Any simple tools for retrieving author, title, tags from an ebook file directly?","publishTime":"2025-09-02 00:27:28","language":"ENGLISH","viewCount":226,"followCount":20,"ctime":"2025-09-06 11:05:30","utime":"2026-07-22 09:02:15","secondCategoryId":282,"userName":"IanGarcia","userAvatar":"https:\u002F\u002Facf.goodnovel.com\u002Fseo\u002Fvirtual_user\u002Fenglish\u002F66519d5eae292e0f950088156229ddf6c384b3caf9cb4b4086f7fa52a75cba325118e9890a6527f5a5be6dee8f75e2bd.png?v=1&p=1","questionCredibilityTags":"Clue Finder","userOccupationLabel":"Translator","answerList":[{"id":16115865,"questionId":351303,"userName":"LucaPerez","userAvatar":"https:\u002F\u002Facf.goodnovel.com\u002Fseo\u002Fvirtual_user\u002Fenglish\u002F6dfb0fe26ab3fa2ab974663b38927d1df2ec3487ba311acce8228e1115ef4850234a2976ccdae3398138afd9ffbb18f6.png?v=1&p=1","content":"You can use command-line tools like 'exiftool' or 'pdfinfo' to extract metadata from PDF files. Exiftool is especially versatile, handling a wide range of tags. For quick checks, 'pdfinfo' from the poppler-utils package gives you basics like author and page count. On a different note, I was reading a PDF copy of 'The Alpha King's Mind-Reading Maid' the other day, and using 'pdfinfo' confirmed it was a DRM-free file I could transfer to my e-reader. The story itself has an intriguing setup where the maid’s secret ability creates constant, tense intrigue in the royal court.","ctime":"2026-08-04 23:37:09","utime":"2026-08-06 16:33:03","answerCredibilityTags":"Story Finder","userOccupationLabel":"Police Officer","hitQATagObj":{},"praiseCount":43,"stepOnCount":0,"adBookName":"The Alpha King's Mind-Reading Maid","adBookResourceUrl":"The-Alpha-King-s-Mind-Reading-Maid_31001248739","favoriteBookName":"Esmerelda Sleuth: The Other Side of the Mirror (Book 1)","favoriteBookResourceUrl":"Esmerelda-Sleuth-The-Other-Side-of-the-Mirror-Book-1_31000122125"},{"id":1091097,"questionId":351303,"userName":"Bella","userAvatar":"https:\u002F\u002Facf.goodnovel.com\u002Fseo\u002Fvirtual_user\u002Fenglish\u002F73394650e01292dd95d63af765c837bb54a99da18a87faade0e662cbda7d497613d87626f18db77b33e5a884460369b9.png?v=1&p=1","content":"Hey, if you like poking around files the same way I do when I'm binge-reading liner notes, Linux makes PDF metadata super accessible from the command line.\u003Cbr\u003E\u003Cbr\u003EFor a quick peek I usually start with pdfinfo (part of poppler-utils). It gives a neat summary: Title, Author, Creator, Producer, CreationDate, ModDate, Pages, PDF version, page size, and more. Example: pdfinfo 'mydoc.pdf'. If you want to filter it down: pdfinfo 'mydoc.pdf' | grep -Ei '^(Title|Author|Producer|CreationDate|Pages)'.\u003Cbr\u003E\u003Cbr\u003EIf you want everything — the XMP, custom metadata and more — I love exiftool (package name libimage-exiftool-perl on Debian\u002FUbuntu). exiftool -a -u -g1 'mydoc.pdf' dumps lots of readable tags organized by group. For raw XMP in case you want to copy-paste XML, strings 'mydoc.pdf' | sed -n '\u002F\u003Cx:xmpmeta\u003E\u002F,\u002F\u003C\\\u002Fx:xmpmeta\u003E\u002Fp' can pull out the chunk (works for many PDFs but not guaranteed for all).\u003Cbr\u003E\u003Cbr\u003EOther useful tools: pdftk 'mydoc.pdf' dump_data prints InfoKey\u002FInfoValue pairs and is handy for scripts, and mutool (from mupdf) or qpdf can inspect internals or check encryption. If a file is password-protected you can often pass the password (pdfinfo has -upw\u002F-opw). I often combine these in small scripts to audit batches of PDFs — it’s oddly satisfying. Play around and you’ll find the combo that fits your workflow best.","ctime":"2025-09-07 01:08:42","utime":"2026-07-13 11:28:54","answerCredibilityTags":"Spoiler Watcher","userOccupationLabel":"Student","hitQATagObj":{},"praiseCount":4,"stepOnCount":0,"favoriteBookName":"ATLAS OF HIS FLESH","favoriteBookResourceUrl":"ATLAS-OF-HIS-FLESH_31001106374"},{"id":1091099,"questionId":351303,"userName":"Hazel","userAvatar":"https:\u002F\u002Facf.goodnovel.com\u002Fseo\u002Fvirtual_user\u002Fenglish\u002F0da47cfd0c8885ffa86e30e4bcbb1aaad018b419553ce4cafacaba16402de1ec6371e20a56847c5351e1ac1b5aef18c2.png?v=1&p=1","content":"On quiet evenings I like to treat PDFs like little puzzles, and the command line is where I open them up. Start with pdfinfo for the essentials — type pdfinfo 'document.pdf' and you’ll see Title, Author, Creator, Producer, CreationDate, ModDate, page count and sizes. It’s fast and great when you just need surface data.\u003Cbr\u003E\u003Cbr\u003EIf you want depth, exiftool is the better microscope: exiftool -a -u -g1 'document.pdf' prints detailed XMP, PDF\u002FInfo and other embedded tags, often revealing software versions and custom fields. For scripts that need the XMP XML, pull it out with strings 'document.pdf' | sed -n '\u002F\u003Cx:xmpmeta\u003E\u002F,\u002F\u003C\\\u002Fx:xmpmeta\u003E\u002Fp' and feed that into an XML parser. When metadata is embedded as PDF objects, pdftk 'document.pdf' dump_data shows InfoKey\u002FInfoValue lines which are easy to parse; mutool from the MuPDF suite can also inspect structure and report whether the file is encrypted.\u003Cbr\u003E\u003Cbr\u003EA few practical notes from tinkering: encrypted PDFs may require passwords (pdfinfo supports -upw\u002F-opw), some viewers write odd Creator\u002FProducer strings (Ghostscript, LibreOffice), and timestamps can be in UTC or local formats so watch for timezone quirks. If the PDF lives online, curl -sL URL \u003E \u002Ftmp\u002Fdoc.pdf then run pdfinfo on that temporary file. It’s a small ritual, but I enjoy seeing the breadcrumbs left by different editors and tools.","ctime":"2025-09-07 05:50:11","utime":"2026-07-13 11:28:54","answerCredibilityTags":"Sharp Observer","userOccupationLabel":"Chef","hitQATagObj":{},"praiseCount":16,"stepOnCount":0,"favoriteBookName":"[BL] Can you see me? (The Ruthless Mafia Love)","favoriteBookResourceUrl":"BL-Can-you-see-me-The-Ruthless-Mafia-Love_31000381234"},{"id":1091100,"questionId":351303,"userName":"Zane","userAvatar":"https:\u002F\u002Facf.goodnovel.com\u002Fseo\u002Fvirtual_user\u002Fenglish\u002Fd95a98311eaabf38afa964c9e38dcbfd8f2a3ed444a1ee322ca0a8794c93888feccb9c6dbcd9754b9502ef93e2cd4e3a.png?v=1&p=1","content":"Short checklist style for when I need metadata fast: install poppler-utils and exiftool (apt). Then use pdfinfo 'file.pdf' for a quick summary and exiftool -a -u -g1 'file.pdf' for full metadata including XMP. If you need the raw XMP XML: strings 'file.pdf' | sed -n '\u002F\u003Cx:xmpmeta\u003E\u002F,\u002F\u003C\\\u002Fx:xmpmeta\u003E\u002Fp'. For simple InfoKey pairs try pdftk 'file.pdf' dump_data. To change tags inline: exiftool -Title='New' -Author='Me' -overwrite_original 'file.pdf'.\u003Cbr\u003E\u003Cbr\u003EDon’t forget encrypted PDFs may need passwords, and if you’re processing many files write a small shell loop to automate it. That combo covers almost every situation I run into.","ctime":"2025-09-07 13:14:45","utime":"2026-07-13 11:28:54","answerCredibilityTags":"Library Roamer","userOccupationLabel":"Teacher","hitQATagObj":{},"praiseCount":20,"stepOnCount":0,"favoriteBookName":"Dark Journal ","favoriteBookResourceUrl":"Dark-Journal_31001405499"},{"id":1091098,"questionId":351303,"userName":"Ximena","userAvatar":"https:\u002F\u002Facf.goodnovel.com\u002Fseo\u002Fvirtual_user\u002Fenglish\u002F024c43e856f43e7b841259131f95bfbaef133c235f013456dae31a35112d87fca47fdc5ad8b5516cb256693e4f0ba2b7.png?v=1&p=1","content":"I usually keep things pragmatic and to the point: install poppler-utils and exiftool, then use pdfinfo and exiftool to view metadata. Pdfinfo 'file.pdf' gives a quick human-readable summary (Pages, Title, Author, Producer, CreationDate). Exiftool -a -u -g1 'file.pdf' will show everything including XMP, metadata groups, and embedded fields.\u003Cbr\u003E\u003Cbr\u003EIf you need to extract the raw XMP block for programmatic parsing try: strings 'file.pdf' | sed -n '\u002F\u003Cx:xmpmeta\u003E\u002F,\u002F\u003C\\\u002Fx:xmpmeta\u003E\u002Fp'. For batch inspection, loop over files: for f in *.pdf; do pdfinfo \"$f\" | grep -Ei '^(Title|Author|Pages)'; done. To edit metadata from the command line, exiftool -Title='New Title' -Author='Me' 'file.pdf' will create a new file backup by default; add -overwrite_original to skip backups. For older tools, pdftk 'file.pdf' dump_data is useful for simple InfoKey\u002FInfoValue output. That’s my go-to set for quick audits and scripted fixes.","ctime":"2025-09-08 17:32:49","utime":"2026-07-13 11:28:54","answerCredibilityTags":"Plot Detective","userOccupationLabel":"Electrician","hitQATagObj":{},"praiseCount":11,"stepOnCount":0,"favoriteBookName":"My mysterious ex ","favoriteBookResourceUrl":"My-mysterious-ex_31001075927"},{"id":18618188,"questionId":351303,"userName":"MicahHale","userAvatar":"https:\u002F\u002Facf.goodnovel.com\u002Fseo\u002Fvirtual_user\u002Fenglish\u002F4213752bf641b2c8cb07e4ab63425fa6ad8f494df09ec54aeacd02c2ec23990030f7dac26374198e2f60ca001b121af0.png?v=1&p=1","content":"I'm just amazed this is even a thing. I thought PDFs were like pictures of documents. The fact that they have this hidden layer of info you can query from a terminal is kind of cool. Makes me wonder what else is hiding in plain sight in other file types I use every day.","ctime":"2026-08-02 02:05:40","utime":"2026-08-06 16:33:03","answerCredibilityTags":"Twist Chaser","userOccupationLabel":"UX Designer","hitQATagObj":{},"praiseCount":14,"stepOnCount":0,"favoriteBookName":"God of sword","favoriteBookResourceUrl":"God-of-sword_31000289057"},{"id":18618190,"questionId":351303,"userName":"EmeryPage","userAvatar":"https:\u002F\u002Facf.goodnovel.com\u002Fseo\u002Fvirtual_user\u002Fenglish\u002F935fc25c2407af4c9fd3950a72798767771e7ddb5bfac1c4ddfb2d4ae68679178628b3e810247031b0fdc34482c6d5bb.png?v=1&p=1","content":"Yeah, you can totally pull up PDF metadata from the terminal! The go-to tool for a lot of folks is . It's a standalone Perl library that reads and writes metadata from tons of file formats, PDFs included. Just install it via your package manager, then run . It'll spit out everything: author, title, creation date, modification date, even software used and sometimes the number of pages. For a cleaner, more focused output, you can pipe it to to search for specific tags like 'Author' or 'Title'. It's way more powerful than it seems at first glance—handles embedded thumbnails and XMP data too. Honestly, once you get used to it, checking metadata through a GUI feels unnecessarily slow.","ctime":"2026-08-02 05:05:05","utime":"2026-08-06 16:33:03","answerCredibilityTags":"Frequent Answerer","userOccupationLabel":"Teacher","hitQATagObj":{},"praiseCount":5,"stepOnCount":0,"favoriteBookName":"Dark Matter (Unknown Origins Book 1)","favoriteBookResourceUrl":"Dark-Matter-Unknown-Origins-Book-1_31000097278"},{"id":18618191,"questionId":351303,"userName":"AliceDunn","userAvatar":"https:\u002F\u002Facf.goodnovel.com\u002Fseo\u002Fvirtual_user\u002Fenglish\u002F102af1ad012277f3ac83dc19ec44bee804e58105c5d8075aa10e0c151f4fb4956236f997200205f2c25a981e2cf0ffa2.png?v=1&p=1","content":"For Arch users, is in the AUR as . is in the package, which you likely have for or anyway. On Fedora\u002FRHEL, it's . The barrier to entry is really low. A quick (or your AUR helper of choice) and you're set with the two most common tools. The nice thing about the command-line approach is that it's consistent across any Linux desktop environment—doesn't matter if you're on KDE, GNOME, or a bare window manager.","ctime":"2026-08-02 17:50:13","utime":"2026-08-06 16:33:03","answerCredibilityTags":"Frequent Answerer","userOccupationLabel":"Student","hitQATagObj":{},"praiseCount":7,"stepOnCount":0,"favoriteBookName":"Sassy Gay (English Version)","favoriteBookResourceUrl":"Sassy-Gay-English-Version_31000089135"},{"id":18618186,"questionId":351303,"userName":"NellReed","userAvatar":"https:\u002F\u002Facf.goodnovel.com\u002Fseo\u002Fvirtual_user\u002Fenglish\u002Fbd8715aa48e4f2501fb8480e7bf7481e9e67a89c18f312f941f1429c9312bea6159306f8ea6595a69020cb096c6f614b.png?v=1&p=1","content":"Honestly, I just open it in (the default Doc Viewer in GNOME) and hit Ctrl+I. Shows the metadata right there in a nice dialog. I know the question is about the command line, and for scripting, you definitely need CLI tools. But for a one-off check on my own machine, why bother remembering a command when two keystrokes in the GUI does it? The GUI tools are literally just front-ends to these same libraries. It's good to know the CLI methods exist for remote servers or automation, but let's not pretend it's always the most efficient way for a human sitting at a desktop.","ctime":"2026-08-03 01:11:32","utime":"2026-08-06 16:33:03","answerCredibilityTags":"Ending Guesser","userOccupationLabel":"Engineer","hitQATagObj":{},"praiseCount":11,"stepOnCount":0,"favoriteBookName":"The lost Goddess and her mysterious Alpha","favoriteBookResourceUrl":"The-lost-Goddess-and-her-mysterious-Alpha_21000004046"},{"id":18618187,"questionId":351303,"userName":"IvyCase","userAvatar":"https:\u002F\u002Facf.goodnovel.com\u002Fseo\u002Fvirtual_user\u002Fenglish\u002Ffeea243c672d4cb54819018df8a480c5c83ff0a0ca9ed3a10e27dbe11f44890f241c308fe482d1c237fe9d8baf114fb1.png?v=1&p=1","content":"What's the goal? If you're organizing a personal library, is your best friend because you can also write metadata back. Something like will batch update all PDFs in a folder. If you're doing digital forensics or archival work, you might want to use multiple tools (, , and maybe ) to cross-reference and get a complete picture, as some tools might parse certain fields differently. If you're a developer building an app, using a library like via Python is the scalable way. The 'best' tool entirely depends on your end game.","ctime":"2026-08-04 03:53:21","utime":"2026-08-06 16:33:03","answerCredibilityTags":"Responder","userOccupationLabel":"Analyst","hitQATagObj":{},"praiseCount":7,"stepOnCount":0,"favoriteBookName":"The other side of the book","favoriteBookResourceUrl":"The-other-side-of-the-book_31000063672"},{"id":18841783,"questionId":351303,"userName":"StoryNook","userAvatar":"https:\u002F\u002Facf.goodnovel.com\u002Fseo\u002Fvirtual_user\u002Fenglish\u002F6b777017350abf4e2ca18547f6cebafa5c3e655d54ef1409de48696e5be24e1e8aeb060e9ce595d07d84837760f6d509.png?v=1&p=1","content":"Last thought: speed. On a directory with 10,000 PDFs, is blazingly fast because it's lightweight and does minimal parsing. , with its full Perl interpreter startup and exhaustive parsing, is slower. For a batch job, the choice matters. You could write a script that uses for the core PDF attributes and only falls back to for files where you need the deep XMP data. That's the kind of optimization you start thinking about when you move from checking a single file to processing an entire archive. The CLI lets you build that tailored pipeline.","ctime":"2026-08-04 12:48:14","utime":"2026-08-06 16:33:03","answerCredibilityTags":"Reviewer","userOccupationLabel":"Student","hitQATagObj":{},"praiseCount":9,"stepOnCount":0,"favoriteBookName":"Accidental Bibliophiles","favoriteBookResourceUrl":"Accidental-Bibliophiles_31000825705"},{"id":18618189,"questionId":351303,"userName":"MiloRay","userAvatar":"https:\u002F\u002Facf.goodnovel.com\u002Fseo\u002Fvirtual_user\u002Fenglish\u002F8bc05fa14dd30b41a99b9dbca32f4c8117971a89925d5ec78c30f5d69580a6025da3a8852f0f8a31da37d24b15b80c3f.png?v=1&p=1","content":"For a super quick, no-fuss check, combined with can sometimes get you what you need. Try . This searches for the plain text string 'author' (case-insensitive) within the binary data of the PDF. It's not guaranteed to find everything, as metadata can be stored in different encodings, but for many simple PDFs, the core metadata is right there in plain text. It's a dirty, low-level method that won't show you dates in a nice format, but it requires zero additional tools—just what's in your core utils. I use it as a first instinct when I'm on a system I haven't installed my usual toolkit on yet.","ctime":"2026-08-06 06:31:04","utime":"2026-08-06 16:33:03","answerCredibilityTags":"Frequent Answerer","userOccupationLabel":"Editor","hitQATagObj":{},"praiseCount":20,"stepOnCount":0,"favoriteBookName":"Cielo: Chronicle of untold truths ","favoriteBookResourceUrl":"Cielo-Chronicle-of-untold-truths_31000412224"}],"softAdFlag":true,"viewCountDisplay":"226","followCountDisplay":"20"},"relatedQuestion":[{"id":351301,"question":"How can I view metadata of pdf without installing software?","keyword":"view metadata of pdf","questionFormat":"view-metadata-pdf-without-installing-software","publishTime":"2025-09-02 16:25:35","language":"ENGLISH","answerNum":4,"firstAnswer":"I love poking around files, so here’s a friendly walk-through that doesn’t require installing anything new.\n\nOn Windows you can often get basic metadata without extra tools: right-click the PDF file in File Explorer, choose 'Properties' and open the 'Details' tab. You’ll see fields like Title, Author, and sometimes Creation and Modification dates. On macOS, select the file in Finder and hit 'Get Info' (or press ⌘I) for similar details. Both of these show filesystem-level and embedded metadata that many PDFs include.\n\nIf you want more embedded info, open the PDF in Firefox (its built-in viewer is great for this). Click the small 'i' icon or look for 'Document Properties' in the viewer toolbar; it exposes XMP\u002Fmetadata like Producer, Creator, and custom fields. Alternatively, you can upload to Google Drive and open the details pane — it shows upload\u002Fowner info and sometimes core metadata. Quick heads-up: I don’t like uploading personal docs to third-party sites, so for sensitive PDFs I stick to local methods like Finder\u002FFile Explorer or opening the file in a plain text editor and searching for '\u002FTitle' or '\u003Cxmp\u003E' blocks to read raw metadata. If you see XML tags, that’s the XMP packet and it’s human-readable, which I find oddly satisfying.","viewCount":311,"ctime":"2025-09-06 11:05:30","utime":"2026-05-25 05:31:36","viewCountDisplay":"311","followCountDisplay":"0"},{"id":355869,"question":"What command line tool converts chm to pdf on Linux?","keyword":"chm to pdf","questionFormat":"command-line-tool-converts-chm-pdf-linux","publishTime":"2025-09-04 18:39:31","language":"ENGLISH","answerNum":8,"firstAnswer":"Okay, here’s the practical route I use when I need a CHM turned into a tidy PDF on Linux — I usually reach for 'chm2pdf' first because it’s simple and made for exactly this job. Install it from your distro (on Debian\u002FUbuntu: sudo apt install chm2pdf). Then the basic command is stupidly straightforward: chm2pdf input.chm output.pdf. It often does a fine job preserving the table of contents and most images.\n\nIf you want nicer layout control or better handling of tricky HTML inside the CHM, I keep Calibre's command-line tool on hand. Install Calibre (sudo apt install calibre) and run: ebook-convert input.chm output.pdf. That one is surprisingly good at reflowing text, embedding fonts, and you can tweak paper size, margins or metadata with flags (for example, --paper-size or --margin-top). For TOC-heavy manuals it often looks cleaner than a raw conversion.\n\nFinally, if either of those trips up because the CHM contains odd scripts or has embedded resources, I extract the HTML with libchm utilities (install libchm-bin) and then convert the HTML directory to PDF using wkhtmltopdf or even a batch ebook-convert on the extracted HTML. That two-step route gives you maximum control. I’ve saved some ancient programming manuals this way and it’s been a lifesaver when a straight conversion produced broken images or missing pages.","viewCount":392,"ctime":"2025-09-06 12:57:18","utime":"2026-07-22 09:02:37","viewCountDisplay":"392","followCountDisplay":"0"},{"id":351308,"question":"How can I view metadata of pdf in Python with PyPDF2?","keyword":"view metadata of pdf","questionFormat":"view-metadata-pdf-python-pypdf2","publishTime":"2025-09-02 01:20:04","language":"ENGLISH","answerNum":8,"firstAnswer":"Oh, I love digging into little file mysteries — PDFs are no exception. If you just want to peek at metadata with PyPDF2, the modern, straightforward route is to use PdfReader and inspect the .metadata attribute. Here's the tiny script I usually toss into a REPL or a small utility file:\n\nfrom PyPDF2 import PdfReader\n\nreader = PdfReader('example.pdf')\nif reader.is_encrypted:\n try:\n reader.decrypt('') # try empty password\n except Exception:\n raise RuntimeError('PDF is encrypted and requires a password')\n\nmeta = reader.metadata # returns a dictionary-like object\nprint(meta)\n\nThat .metadata often contains keys like '\u002FTitle', '\u002FAuthor', '\u002FCreator', '\u002FProducer', '\u002FCreationDate' and '\u002FModDate'. Sometimes it's None or sparse — many PDFs don't bother to set all fields. I also keep a tiny helper to normalize keys and parse the odd CreationDate format (it looks like \"D:20201231235959Z00'00'\") into a Python datetime when I need to display a friendlier timestamp. If you're on an older PyPDF2 version you'll see PdfFileReader and reader.getDocumentInfo() instead; the idea is the same.\n\nIf you want pretty output, convert meta to a plain dict and iterate key\u002Fvalue pairs, or write them to JSON after sanitizing dates. It’s a tiny ritual I enjoy before archivism or just poking through downloaded manuals.","viewCount":426,"ctime":"2025-09-06 11:05:30","utime":"2026-07-22 09:02:14","viewCountDisplay":"426","followCountDisplay":"0"},{"id":351307,"question":"Which tools let me view metadata of pdf for free online?","questionFormat":"tools-let-view-metadata-pdf-free-online","publishTime":"2025-09-02 21:24:33","language":"ENGLISH","answerNum":4,"firstAnswer":"I've been digging through PDFs for research and personal projects a lot lately, so I’ve tried a handful of free online tools that actually show PDF metadata without too much fuss.\n\nIf you want quick, no-install checks, I usually reach for 'Sejda' or 'PDFCandy' — both have a specific 'Edit metadata' or metadata viewer page where you can see title, author, subject, keywords, PDF producer, and sometimes creation\u002Fmodification dates. 'Aspose' has a neat online demo that reads metadata cleanly and even lists custom XMP fields. For a very lightweight view I sometimes drop files into 'PDF24 Tools' or peek at 'GroupDocs' demo pages, which often surface the same fields.\n\nOne caveat I always tell friends: if the document is sensitive, avoid uploading it to public sites. For privacy I fallback to a local utility like 'ExifTool' or 'PDF-XChange Editor' when I can. Otherwise, these web tools are great for quick checks, and I like that they show the common metadata fields without making me wrestle with complex menus.","viewCount":85,"ctime":"2025-09-06 11:05:30","utime":"2026-04-22 06:13:40","viewCountDisplay":"85","followCountDisplay":"0"},{"id":351299,"question":"How do I view metadata of pdf files on Windows 10?","keyword":"view metadata of pdf","questionFormat":"view-metadata-pdf-files-windows-10","publishTime":"2025-09-02 11:26:25","language":"ENGLISH","answerNum":10,"firstAnswer":"Okay, here’s the friendly walkthrough I’d give a pal who just asked this over coffee.\n\nOn Windows 10, the simplest place to start is File Explorer: right‑click the PDF, pick 'Properties', then open the 'Details' tab. You’ll see basic fields like Title, Author, and sometimes Keywords — but Windows only shows what the file embeds in standard metadata fields, so a lot of PDFs look blank here even if they contain extra info.\n\nIf you want the metadata that most PDF readers expose, open the file in 'Adobe Acrobat Reader DC' (or 'PDF-XChange Editor', or 'SumatraPDF') and press Ctrl+D or go to File → Properties. That view tends to show more PDF-specific fields (like Producer, PDF version, and custom XMP data). For power users who need everything, I use 'ExifTool' (free): exiftool file.pdf shows all embedded metadata. It’s faster for batches: exiftool *.pdf dumps metadata for every file in a folder. Try a couple of these depending on how deep you need to go — and if you’re prepping files to share, remember to scrub metadata first if privacy matters.","viewCount":415,"ctime":"2025-09-06 11:05:30","utime":"2026-07-22 09:02:15","viewCountDisplay":"415","followCountDisplay":"0"},{"id":351300,"question":"How can I view metadata of pdf using Adobe Acrobat?","keyword":"view metadata of pdf","questionFormat":"view-metadata-pdf-using-adobe-acrobat","publishTime":"2025-09-02 15:38:00","language":"ENGLISH","answerNum":5,"firstAnswer":"Okay, here’s a friendly walkthrough that I actually use when poking around PDFs: open the PDF in Adobe Acrobat (Reader or Pro), then press Ctrl+D (Cmd+D on a Mac) to pop up the Document Properties window. The Description tab is the quick view — Title, Author, Subject, and Keywords live there. If you want more, click the 'Additional Metadata' button in that window; that opens the XMP metadata viewer where you can see deeper fields like PDF producer, creation and modification timestamps, and any custom namespaces embedded by other apps.\n\nIf you have Acrobat Pro, I go further: Tools \u003E Protect & Standardize \u003E Remove Hidden Information (or search for 'Remove Hidden Information' in Tools). That previews hidden metadata, attached data, and comments that ordinary users might miss. For structural or compliance checks I open Tools \u003E Print Production \u003E Preflight to inspect PDF\u002FA, PDF\u002FX, font embedding, and more. Small tip: editing the basic fields is done right in Document Properties (change Title\u002FAuthor\u002FKeywords), but for full cleanup or forensic detail, Preflight and Remove Hidden Information are where I live — they surface the stuff regular viewers won't show.","viewCount":603,"ctime":"2025-09-06 11:05:30","utime":"2026-07-18 21:06:15","viewCountDisplay":"603","followCountDisplay":"0"},{"id":351305,"question":"How can I view metadata of pdf created by Microsoft Word?","keyword":"view metadata of pdf","questionFormat":"view-metadata-pdf-created-microsoft-word","publishTime":"2025-09-02 21:10:50","language":"ENGLISH","answerNum":11,"firstAnswer":"Oh, this one makes me nerdy-happy — I check PDF metadata all the time when I’m cleaning documents before sending them out.\n\nIf you’re still in Word, the easiest place to start is File → Info. You’ll see basic properties like Author and Title there; click Properties → Advanced Properties to edit Summary, Statistics, and any Custom fields. When you Save As PDF, click Options in the Save dialog and make sure document properties are preserved or removed depending on your goal. After the PDF exists, open it in a PDF reader — in 'Adobe Acrobat Reader' go to File → Properties (or press Ctrl+D) to view Description (Title, Author, Subject, Keywords), Custom metadata, and the PDF producer and creation\u002Fmodification times.\n\nIf you want forensic-level detail, use tools like exiftool (exiftool myfile.pdf) or Poppler’s pdfinfo (pdfinfo myfile.pdf) on the command line; they dump XMP and embedded metadata. Also double-check Windows File Explorer (right-click → Properties → Details) or macOS Finder (Get Info) for quick looks. If privacy is the issue, run Word’s Document Inspector (File → Info → Check for Issues → Inspect Document) before exporting or use Acrobat’s Remove Hidden Information \u002F Sanitize features. Personally, I run exiftool as a final check because it reveals everything including odd custom properties that Word sometimes tucks away.","viewCount":411,"ctime":"2025-09-06 11:05:30","utime":"2026-07-21 14:36:41","viewCountDisplay":"411","followCountDisplay":"0"},{"id":127958,"question":"Does the linux for beginners book cover command line basics?","keyword":"linux for beginners book","questionFormat":"linux-beginners-book-cover-command-line-basics","publishTime":"2025-07-03 18:25:04","language":"ENGLISH","answerNum":3,"firstAnswer":"I picked up 'Linux for Beginners' when I was just starting out, and it was a lifesaver. The book does a solid job covering command line basics, explaining things like navigating directories, file operations, and basic scripting in a way that’s easy to digest. It doesn’t overwhelm you with jargon but instead builds your confidence step by step. I remember the chapter on common commands like 'ls', 'cd', and 'grep' being especially helpful. The examples are practical, like organizing files or finding specific data, which made it feel less abstract. If you’re new to Linux, this book gives you the foundation to start experimenting without feeling lost.\n\nOne thing I appreciated was how it tied the command line to real-world tasks, like managing permissions or automating simple backups. It’s not just theory—it’s stuff you’ll actually use. The book also touches on troubleshooting, which is clutch when you hit a snag. It’s not an encyclopedia of every command, but it’s enough to get you comfortable and curious to explore more.","viewCount":203,"ctime":"2025-07-04 06:40:10","utime":"2026-07-13 17:24:23","viewCountDisplay":"203","followCountDisplay":"0"},{"id":351306,"question":"How can I view metadata of pdf and remove sensitive info?","keyword":"view metadata of pdf","questionFormat":"view-metadata-pdf-remove-sensitive-info","publishTime":"2025-09-02 00:44:29","language":"ENGLISH","answerNum":4,"firstAnswer":"Okay, let me walk you through this like I’m chatting over coffee — metadata in PDFs hides in more places than you’d think, and removing it cleanly takes a couple of different moves.\n\nFirst, inspect. I usually run simple tools to see what’s actually inside: open the PDF’s Properties in a viewer (File \u003E Properties), run pdfinfo (poppler) or exiftool to get a full readout (exiftool file.pdf), and also search the raw file for XML XMP packets (open in a text editor and look for '\u003Cx:xmpmeta' or '\u002FMetadata'). Those tell you about the Info dictionary (Title, Author, CreationDate) and any XMP metadata. Don’t forget attachments, embedded fonts, or hidden form data — these won’t always show in basic viewers.\n\nNext, remove. If I’m on a machine with ExifTool, I run: exiftool -all= -overwrite_original file.pdf which nukes most metadata fields (ExifTool often makes a backup unless you use -overwrite_original). For a GUI I’ll use a proper PDF editor: in Acrobat Pro use Tools \u003E Redact \u003E Remove Hidden Information or Tools \u003E Sanitize Document (that removes XMP, hidden layers, comments, metadata and more). As a safety habit I always create a copy, check again with exiftool\u002Fpdfinfo, and scan the new file for any leftover strings of sensitive text. And I avoid online uploaders for sensitive docs unless I’m sure they’re trustworthy.","viewCount":598,"ctime":"2025-09-06 11:05:30","utime":"2026-05-21 05:29:09","viewCountDisplay":"598","followCountDisplay":"0"},{"id":351302,"question":"Where can I view metadata of pdf on macOS Preview app?","keyword":"view metadata of pdf","questionFormat":"view-metadata-pdf-macos-preview-app","publishTime":"2025-09-02 19:02:44","language":"ENGLISH","answerNum":5,"firstAnswer":"If you've got a PDF open in Preview, the quickest way I use is Tools → Show Inspector (or press Command-I). \n\nWhen the Inspector pops up you'll usually see an 'i' tab or a 'More Info' section where Preview displays metadata like Title, Author, Subject\u002FKeywords (if the file has them), PDF producer\u002Fcreator, PDF version, page size and sometimes creation\u002Fmodification dates. If nothing shows up there, it often means the PDF simply doesn't have embedded metadata. Preview's metadata viewer is handy for a quick peek, but it's a viewer-first tool: editing fields is limited or inconsistent across macOS versions.\n\nIf you need to dig deeper or edit stuff, I switch to Finder's Get Info for basic tags, or use Terminal: mdls \u002Fpath\u002Fto\u002Ffile.pdf reveals Spotlight metadata, and 'exiftool' shows practically everything. For full edit control I go to a dedicated app like 'Adobe Acrobat' or a metadata editor. Preview's Inspector gets you most of what you need at a glance, though, and for quick checks it's my go-to.","viewCount":568,"ctime":"2025-09-06 11:05:30","utime":"2026-07-20 10:49:32","viewCountDisplay":"568","followCountDisplay":"0"}],"relatedKeywordList":[{"id":0,"keyword":"change pdf metadata online","keywordFormatFill":"change-pdf-metadata-online-novel-stories","language":"ENGLISH","canonicalTagUrl":"change-pdf-metadata-online-novel-stories"}],"relatedBooks":[{"bookName":"Naked Pages","pseudonym":"Vic To Ria ","cover":"https:\u002F\u002Facf.goodnovel.com\u002Fbook\u002F202508\u002F030a135ef112a4d0e9ea26afe8dfaa5c8feab42522ff63ec0ea901a461d02a53.jpg?v=1&p=1","ratings":10,"introduction":"\"You wanna gеt fuckеd likе a good girl?” I askеd, voicе low.\r\n\r\nShе smilеd. “I’m not a good girl.”\r\n\r\nI growlеd. “No. You’rе not.”\r\n\r\nShе gaspеd as I slammеd into hеr in onе thrust, burying mysеlf all thе way.\r\n\r\n“Damian—!”\r\n\r\nI covеrеd hеr mouth with my hand.\r\n\r\n“Bе quiеt,” I hissеd in hеr еar. “You don’t want Mommy to hеar, do you?”\r\n\r\nHеr еyеs widеnеd.\r\n\r\nI pullеd out slow—thеn slammеd back in hard.\r\n\r\nShе moanеd against my hand.\r\n\r\n“God, you’rе so tight,” I groanеd. “You wеrе madе for this cock.”\r\n\r\nHеr lеgs wrappеd around mе, pulling mе dееpеr.\r\n\r\nI prеssеd my hand hardеr against hеr mouth, muffling thе sounds of hеr criеs as I thrust into hеr again and again.\r\n\r\nThе bеd crеakеd. Hеr body shook.\r\n\r\n“Thought I wouldn’t find out you wеrе a littlе slut for mе,” I growlеd. “Kissing mе. Riding my facе. Acting so damn innocеnt.”\r\n\r\n***\r\n\r\nNaked Pages is a compilation of thrilling, heart throbbing erotica short stories that would keep you at the edge in anticipation for more.\r\n\r\nIt's loaded with forbidden romance, domineering men, naughty and sex female leads that leaves you aching for release.\r\n\r\nFrom forbidden trysts to irresistible strangers.\r\n\r\nEvery one holds desires, buried deep in the hearts to be treated like a slave or be called daddy! And in this collection, all your nasty fantasies would be unraveled.\r\n\r\nIt would be an escape to the 9th heavens while you beg and plead for more like a good girl.\r\n\r\nThis erotica compilation is overflowing with scandalous scenes ! It's intended only for adults over the age of 18! And all characters are over the age of 18.","chapterCount":130,"defaultChapterId":13914929,"defaultChapterName":"Thanksgiving Sins- 1","haveSplitBook":false,"seoBookName":"Naked Pages (Erotica Collection)","read":false,"chapterResourceUrl":"Thanksgiving-Sins-1_13914929","inLibrary":false,"bookResourceUrl":"Naked-Pages-Erotica-Collection_31001107140","viewCountDisplay":"126.3K","lastUpdateTimeDisplay":"Completed","joinBookCurKeywordDisplay":"0","bookId":"31001107140"},{"bookName":"DIRTY PAGES (A Short Story Collection)","pseudonym":"Aria Steele","cover":"https:\u002F\u002Facf.goodnovel.com\u002Fbook\u002F202510\u002F592fabb446eb945276cf3070f6c4713ea542b3bd367c7c678ddbb4902cb026c3.jpg?v=1&p=1","ratings":10,"introduction":"WARNING: HEAVY SMUT AHEAD!!! Mature audiences only! Proceed with caution!\r\n\r\n~ ~ ~ ~ ~\r\n\r\n“Please,” she whispered, desperation cracking her voice. “Please, Chase.”\r\n \r\n“Begging already?” His voice was cruel, his fingers circling faster, pushing her to the edge. “I'm not even nearly done with you yet.”\r\n \r\nShe squeezed her eyes shut, the recruit’s muffled cries and the whip’s crack filling her ears, amplifying her need. Chase’s fingers were relentless, stroking her clit, and dipping inside just enough to tease.\r\n \r\n“Please,” she whimpered, louder now, her hands gripping his shoulders. “I’m sorry. I won’t lie again. I’ll be good. Please, let me cum.”\r\n \r\nHe chuckled, his lips brushing her neck. “Not yet, baby. Fight it.”\r\n \r\nHer body screamed, every nerve on fire, the recruit’s struggles mirroring her own. The girl’s master groaned, close to release, as Lila’s whip landed again and again on her ass.\r\n \r\nEmma’s head felt like it was about to explode under the pressure, her thighs shook with the effort to conceal it, her pleas spilling out. “Please, Chase, I can’t hold it any longer… I need it.\"\r\n \r\n\"Don't. You. Dare. Come.\" \r\n~ ~ ~ ~ ~\r\n\r\n\r\nPicture this: A CEO pinning his partner's daughter over his desk, whispering rules that chain her soul while his cock claims her body. Or a werewolf's claws raking skin in the moonlit woods, rutting her senseless till she's howling his name. We mix it up... sweet, slow-burn romances that melt into tender fucks and whispered \"I love yous,\" flipping to the dark side with BDSM bites, non-con edges that blur fear into filthy want, and horror vibes where ghosts fuck you cold then hot.\r\n\r\nYour panties? Ruined. Your cravings? Fed. And yet, you'll still be here begging for more.\r\n\r\nDive in if you're brave enough.","chapterCount":188,"defaultChapterId":14850487,"defaultChapterName":"BOOK ONE: SOLD TO MY BEST FRIEND'S FATHER","haveSplitBook":false,"seoBookName":"DIRTY PAGES (An Erotica Collection)","read":false,"chapterResourceUrl":"BOOK-ONE-SOLD-TO-MY-BEST-FRIEND-S-FATHER_14850487","inLibrary":false,"bookResourceUrl":"DIRTY-PAGES-An-Erotica-Collection_31001166998","viewCountDisplay":"39.6K","lastUpdateTimeDisplay":"Completed","joinBookCurKeywordDisplay":"0","bookId":"31001166998"},{"bookName":"Unknown Divorce: Timeless Disclosure","pseudonym":"Fixxa","cover":"https:\u002F\u002Facf.goodnovel.com\u002Fbook\u002F202602\u002F69fd58abbfd2b0aa57c27ef3fe89b8d3ed05d0a88ba19dee309a3206c1209b28.jpg?v=1&p=1","ratings":6,"introduction":"Despite Thorne Henderson's chilly demeanor after seven years of marriage, Charlene Ross always smiled at him, demonstrating her great love and belief that she would one day win his heart. Rather, she discovered him completely enamored and very protective of another woman, but she persisted in tenaciously preserving their marriage. Charlene was left alone in an empty room on her birthday after he took their child to be with the other lady after she had flown abroad to find him and their daughter. At last, she quit up at that point.\r\n\r\nAs she watched her raised daughter refer to another woman as \"mom,\" Charlene's sorrow subsided.","chapterCount":401,"defaultChapterId":16960658,"defaultChapterName":"Chapter 1","haveSplitBook":false,"seoBookName":"Unknown Divorce: Timeless Disclosure","read":false,"chapterResourceUrl":"Chapter-1_16960658","inLibrary":false,"bookResourceUrl":"Unknown-Divorce-Timeless-Disclosure_31001297491","viewCountDisplay":"3.6K","lastUpdateTimeDisplay":"Completed","joinBookCurKeywordDisplay":"0","bookId":"31001297491"},{"bookName":"Bound by paper ","pseudonym":"Honey ","cover":"https:\u002F\u002Facf.goodnovel.com\u002Fbook\u002F202603\u002F45cd37cb1e487c1d4d120edf510b3e204b16c834a3031d9e6008d8e07c280025.jpg?v=1&p=1","ratings":0,"introduction":"On the eve of her engagement, Jade Moretti thought the worst thing she would face was cold feet.\nShe was wrong.\nWhen she walks into her fiancé’s penthouse, she finds him in bed with her step-sister.\nHumiliated and desperate, Jade runs to the only man who should protect her—her father.\nBut he chooses business over blood.\nWith her name dragged through scandal and her future destroyed overnight, Jade is forced into a world where power is the only currency that matters.\nThat is where she meets Killian Montclair.\nCold. Strategic. Untouchable.\nKillian doesn’t believe in love. He believes in control.\nAnd he offers Jade a deal that could save her… and ruin her.\nA contract marriage.\nNo feelings. No attachment. No mistakes.\nBut when Jade becomes a part of Killian’s life, she discovers he isn’t only fighting business rivals—he’s fighting ghosts, a ruthless ex, and a custody battle that could destroy everything he built.\nAnd the more Jade plays the role of wife… the more real it starts to feel.\nIn a marriage built on lies and contracts, Jade must decide:\nWill she remain bound by an agreement…\nor risk her heart for a man who was never meant to love?","chapterCount":103,"defaultChapterId":17231927,"defaultChapterName":"Betrayal","haveSplitBook":false,"seoBookName":"Bound by paper ","read":false,"chapterResourceUrl":"Betrayal_17231927","inLibrary":false,"bookResourceUrl":"Bound-by-paper_31001315858","viewCountDisplay":"1.3K","lastUpdateTimeDisplay":"Completed","joinBookCurKeywordDisplay":"0","bookId":"31001315858"},{"bookName":"The Diary of a king: Maharana's untold story","pseudonym":"Robin","cover":"https:\u002F\u002Facf.goodnovel.com\u002Fbook\u002F202208\u002FThe-Diary-of-a-king-Maharana-s-untold-story\u002Fecba9c702d1a5796d05431c771d6a45605f8a4f2c7964701e2e0bb1e9537e089.jpg?v=1&p=1","ratings":10,"introduction":"Found in the marooned ruins of Chavand was a book ripped and torn.\nIts yellowed pages eaten up and coiled.\nForgotten and unheard about was this book until it came to light.\n\nHis legends lived on, his tales of valour prevailed. His glory seemed enternal and he was worshiped and adored.\n\nBut his heart remained shrouded in a cloak of mystery. His emotions, his turmoils went unnoticed in an attempt to make him great. \n\nSeen as someone who was invincible and immortal, the Rana changes your perspective from his greatness to his soft heart. \n\nWritten across the pages during his last moments, he wrote his own life. \n\nWhere bards would be at a loss and poets were simply lost in his glory and valor, the Rana is said to be the only one who could write about himself.","chapterCount":16,"defaultChapterId":592958,"defaultChapterName":"Prologue","haveSplitBook":false,"seoBookName":"The Diary of a king: Maharana's untold story","read":false,"chapterResourceUrl":"Prologue_592958","inLibrary":false,"bookResourceUrl":"The-Diary-of-a-king-Maharana-s-untold-story_31000043797","viewCountDisplay":"5.4K","lastUpdateTimeDisplay":"Completed","joinBookCurKeywordDisplay":"0","bookId":"31000043797"},{"bookName":"Shadows of a Journalist","pseudonym":"AJ Reed","cover":"https:\u002F\u002Facf.goodnovel.com\u002Fbook\u002F202509\u002F6b5809b4dac574842d03880bec837e81894ac9042b52df12c0016eddf472de3d.jpg?v=1&p=1","ratings":10,"introduction":"An ambitious human journalist, investigating a series of gruesome murders linked to a powerful but secretive family, finds herself drawn into the orbit of their ruthless and dominant alpha. He offers her protection and exclusive access, but his help comes at a price: she must submit to his control, all while trying to uncover the truth about his pack's dark secrets and the brutal murder of her own sister.","chapterCount":108,"defaultChapterId":13972112,"defaultChapterName":"Chapter 1: The First Cut","haveSplitBook":false,"seoBookName":"Shadows of a Journalist","read":false,"chapterResourceUrl":"Chapter-1-The-First-Cut_13972112","inLibrary":false,"bookResourceUrl":"Shadows-of-a-Journalist_31001108045","viewCountDisplay":"1.4K","lastUpdateTimeDisplay":"Completed","joinBookCurKeywordDisplay":"0","bookId":"31001108045"}],"recommendTag":[{"id":375015,"keyword":"Brockton Bays Celestial Forge","keywordFormat":"brockton-bays-celestial-forge","language":"ENGLISH"},{"id":10004,"keyword":"The Friday Afternoon Club","keywordFormat":"the-friday-afternoon-club","language":"ENGLISH"},{"id":122984,"keyword":"Wild Side Sex: The Book Of Kink: Educational, Sensual, And Entertaining Essays","keywordFormat":"wild-side-sex-the-book-of-kink-educational-sensual-and-entertaining-essays","language":"ENGLISH"},{"id":697,"keyword":"Reckless Funke Novel","keywordFormat":"reckless-funke-novel","language":"ENGLISH"},{"id":3210,"keyword":"Page Numbers Book","keywordFormat":"page-numbers-book","language":"ENGLISH"},{"id":374892,"keyword":"A Ghost Story Who Was The Other Ghost","keywordFormat":"a-ghost-story-who-was-the-other-ghost","language":"ENGLISH"},{"id":30555,"keyword":"Free Billionaire Romance Books Online Read","keywordFormat":"free-billionaire-romance-books-online-read","language":"ENGLISH"},{"id":31675,"keyword":"Tgcf Chinese Novel","keywordFormat":"tgcf-chinese-novel","language":"ENGLISH"},{"id":33118,"keyword":"Quiter","keywordFormat":"quiter","language":"ENGLISH"},{"id":546367,"keyword":"Kindle Free Romance Books","keywordFormat":"kindle-free-romance-books","language":"ENGLISH"},{"id":374932,"keyword":"Finding A Way Book","keywordFormat":"finding-a-way-book","language":"ENGLISH"},{"id":374976,"keyword":"Cirno Fanart","keywordFormat":"cirno-fanart","language":"ENGLISH"},{"id":374925,"keyword":"Circus Baby's Song","keywordFormat":"circus-baby-s-song","language":"ENGLISH"},{"id":374990,"keyword":"Akatsuki Cats","keywordFormat":"akatsuki-cats","language":"ENGLISH"},{"id":374963,"keyword":"Who Is Ciel In Slime","keywordFormat":"who-is-ciel-in-slime","language":"ENGLISH"},{"id":26652,"keyword":"100-year Book","keywordFormat":"100-year-book","language":"ENGLISH"},{"id":239386,"keyword":"Zoro Roronoa Cosplay","keywordFormat":"zoro-roronoa-cosplay","language":"ENGLISH"},{"id":3279,"keyword":"Unwinding Book","keywordFormat":"unwinding-book","language":"ENGLISH"},{"id":29116,"keyword":"Free Storybook Online","keywordFormat":"free-storybook-online","language":"ENGLISH"},{"id":374991,"keyword":"Jpop","keywordFormat":"jpop","language":"ENGLISH"},{"id":374889,"keyword":"Eddie Brock Girlfriend","keywordFormat":"eddie-brock-girlfriend","language":"ENGLISH"},{"id":32845,"keyword":"Parisian Nights","keywordFormat":"parisian-nights","language":"ENGLISH"},{"id":14944,"keyword":"Python For Beginners Book","keywordFormat":"python-for-beginners-book","language":"ENGLISH"},{"id":374974,"keyword":"Warrior Aot","keywordFormat":"warrior-aot","language":"ENGLISH"},{"id":27583,"keyword":"Romance Novel Cover","keywordFormat":"romance-novel-cover","language":"ENGLISH"},{"id":374999,"keyword":"Devil May Cry Dante Girlfriend","keywordFormat":"devil-may-cry-dante-girlfriend","language":"ENGLISH"},{"id":171685,"keyword":"The Insomniacs","keywordFormat":"the-insomniacs","language":"ENGLISH"},{"id":374874,"keyword":"Book Maven","keywordFormat":"book-maven","language":"ENGLISH"},{"id":374914,"keyword":"Josh Munroe Ghost In The Machine","keywordFormat":"josh-munroe-ghost-in-the-machine","language":"ENGLISH"},{"id":36760,"keyword":"The Wages Of Fear","keywordFormat":"the-wages-of-fear","language":"ENGLISH"}],"relatedQATag":[{"keyword":"View Metadata Of Pdf","keywordFormat":"view-metadata-of-pdf","language":"ENGLISH"},{"keyword":"Pdf Linux Reader","keywordFormat":"pdf-linux-reader","language":"ENGLISH"},{"keyword":"Pdf Readers Linux","keywordFormat":"pdf-readers-linux","language":"ENGLISH"},{"keyword":"Change Pdf Metadata Online","keywordFormat":"change-pdf-metadata-online","language":"ENGLISH"},{"keyword":"Extract Pdf Text","keywordFormat":"extract-pdf-text","language":"ENGLISH"},{"keyword":"Extract Text From Pdf Document","keywordFormat":"extract-text-from-pdf-document","language":"ENGLISH"},{"keyword":"Extract Text From Pdfs","keywordFormat":"extract-text-from-pdfs","language":"ENGLISH"},{"keyword":"Pdf Extract Text Python","keywordFormat":"pdf-extract-text-python","language":"ENGLISH"}],"dramaPlotAds":[{"id":222,"language":"ENGLISH","firstCategoryId":33,"secondCategoryId":282,"coverImg":"https:\u002F\u002Facf.goodnovel.com\u002Fres\u002Fseo\u002FplotAd\u002F202607\u002F13323d262b802f6f43b8dfe0947d2931544ea7928956e1fd4d10cd72259b8818.png?v=1&p=1","title":"Stealing My Stepdaughter: She Moans 'Daddy' While Her Boyfriend Listens","plotDetail":"After her shower, Vivi slipped into a thin, silky nightdress that barely reached the tops of her thighs. The delicate fabric clung to her still-damp skin, outlining the gentle swell of her breasts and the soft curve of her hips. \n\n\n\nShe padded barefoot into the dimly lit living room, searching for her phone charger. When she bent over the coffee table, the short hem rode up dangerously high. For one agonizing moment, the smooth, pale skin of her rounded backside was completely revealed, along with the shadowed, intimate valley between her thighs—no underwear to shield her most private area from view. \n\n\n\nMarcus sat frozen on the sofa, the television’s glow flickering across his tense face. His throat tightened.\n\n\n\n\"This is wrong,\" he told himself, even as his gaze traced every forbidden inch of her exposed skin.\n\n\n\n She was his stepdaughter.He had raised her, protected her. Yet here she was, innocently offering a glimpse of something so pure and tempting that it sent a dark wave of heat straight through his body. \n\n\n\nGuilt clawed at his chest, but desire burned hotter, stirring memories he had tried for years to bury. \n\n\n\nHis fingers gripped the armrest until his knuckles whitened. Why did she have to be so beautiful, so unknowingly seductive? The conflict tore at him—part of him wanted to look away, to be the respectable father figure he was supposed to be, while another, deeper part ached to reach out and claim what he knew he could never have. \n\n\n\nVivi straightened casually, as if unaware of the storm she had unleashed, and wandered back toward her room, her hips swaying gently.\n\n\n\nMarcus remained seated long after she disappeared, his heart hammering and his body painfully aroused. \n\n\n\nThat night, alone in his bed, he couldn’t escape the image.\n\n\n\n His hand moved slowly under the sheets as he relived every detail—the softness of her skin, the delicate pink flush, the way the light had kissed her most secret places. Shame and lust battled inside him with every stroke. He whispered her name into the darkness like a prayer and a curse, torn between self-loathing and overwhelming need. \n\n\n\nHis release brought only temporary relief, leaving him more tormented than before, knowing the line he was dangerously close to crossing.\n\n\n\nA few nights later, faint sounds drifted through the wall—soft, breathy moans that grew increasingly urgent. Vivi was on a late-night call with her boyfriend. The conversation had turned intimate, her voice trembling with pleasure. \n\n\n\n“Yes… like that…” she gasped. Then, in a broken moan that shattered Marcus’s restraint, she uttered the word: “Daddy… please…” \n\n\n\nThe sound hit him like lightning. Heart pounding with a mix of shock, jealousy, and raw hunger, Marcus pushed open her bedroom door without knocking. \n\n\n\nVivi lay on her bed, nightdress bunched around her waist, one hand still between her parted thighs. Her cheeks were flushed, eyes wide with shock as she met his intense gaze. She froze, unable to hide the obvious evidence of her arousal—the way her body trembled, the faint sheen on her skin. \n\n\n\nMarcus stood in the doorway, tall and tense, breathing ragged. Years of suppressed longing burned in his eyes. \n\n\n\n“Your boyfriend can’t satisfy you, can he?” he said, his voice low and rough with barely controlled desire. He stepped inside and closed the door behind him. “Let Daddy show you what you really need.”","recommendBookId":"31001428307"}],"tagDetail":{"seoQATag":{},"relatedBookVos":[],"recommendQATag":[],"popularQuestion":[],"relatedQuestion":[],"relatedQATag":[],"dramaPlotAds":[]},"tagList":[],"tagListPages":0,"tagKeywords":[],"homeRecommendTag":{}},"compare":{"books":[]},"CommentManage":{"commentList":[],"total":0,"pageNo":1,"pageSize":20,"bookList":[],"unreadCount":0,"commentDetail":null,"replyList":[],"replyTotal":0},"route":{"name":"QaDetail","path":"\u002Fqa\u002Fview-metadata-pdf-command-line-linux","hash":"","query":{},"params":{"questionFormat":"view-metadata-pdf-command-line-linux"},"fullPath":"\u002Fqa\u002Fview-metadata-pdf-command-line-linux","meta":{},"from":{"name":null,"path":"\u002F","hash":"","query":{},"params":{},"fullPath":"\u002F","meta":{}}}};(function(){var s;(s=document.currentScript||document.scripts[document.scripts.length-1]).parentNode.removeChild(s);}());</script><script src="https://www.goodnovel.com/pcdist/manifest.24a911e9e007e0adf1fa.js" defer></script><script src="https://www.goodnovel.com/pcdist/vendor.344b389fee5f9e458bd2.js" defer></script><script src="https://www.goodnovel.com/pcdist/app.e721ba656dd92c3de42e.js" defer></script> </div> </body> <!-- <script async type="text/javascript" src="/static/pwa.js"></script> --> <script src="https://accounts.google.com/gsi/client" async defer></script> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-63M8B9SVWF"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-63M8B9SVWF'); </script> </html>