{"id":1244,"date":"2026-01-05T08:49:03","date_gmt":"2026-01-05T00:49:03","guid":{"rendered":"https:\/\/www.52runoob.com\/?p=1244"},"modified":"2026-01-05T08:49:03","modified_gmt":"2026-01-05T00:49:03","slug":"python%e5%ae%9e%e7%8e%b0%e5%9c%a8%e5%a4%9a%e4%b8%aaword%e6%96%87%e6%a1%a3%e4%b8%ad%e4%b8%80%e9%94%ae%e6%90%9c%e7%b4%a2","status":"publish","type":"post","link":"https:\/\/www.52runoob.com\/index.php\/2026\/01\/05\/python%e5%ae%9e%e7%8e%b0%e5%9c%a8%e5%a4%9a%e4%b8%aaword%e6%96%87%e6%a1%a3%e4%b8%ad%e4%b8%80%e9%94%ae%e6%90%9c%e7%b4%a2\/","title":{"rendered":"Python\u5b9e\u73b0\u5728\u591a\u4e2aWord\u6587\u6863\u4e2d\u4e00\u952e\u641c\u7d22"},"content":{"rendered":"\n<p>\u4e0b\u9762\u7ed9\u4f60\u4e00\u4e2a<strong>\u5b9e\u7528\u3001\u53ef\u76f4\u63a5\u7528\u7684 Python \u65b9\u6848<\/strong>\uff0c\u53ef\u4ee5\u5728<strong>\u591a\u4e2a Word\uff08.docx\uff09\u6587\u6863\u4e2d\u4e00\u952e\u641c\u7d22\u5173\u952e\u8bcd<\/strong>\uff0c\u5e76\u8f93\u51fa\u5339\u914d\u5230\u7684\u6587\u4ef6\u540d\u4e0e\u4f4d\u7f6e\u5185\u5bb9\u3002<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u4e00\u3001\u5b9e\u73b0\u601d\u8def\uff08\u7b80\u5355\u7248\uff09<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>\u904d\u5386\u6307\u5b9a\u6587\u4ef6\u5939\u4e0b\u7684\u6240\u6709 <code>.docx<\/code> \u6587\u4ef6<\/li>\n\n\n\n<li>\u8bfb\u53d6 Word \u4e2d\u7684\uff1a\n<ul class=\"wp-block-list\">\n<li>\u6b63\u6587\u6bb5\u843d<\/li>\n\n\n\n<li>\uff08\u53ef\u9009\uff09\u8868\u683c\u5185\u5bb9<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>\u5224\u65ad\u662f\u5426\u5305\u542b\u5173\u952e\u8bcd<\/li>\n\n\n\n<li>\u8f93\u51fa\u7ed3\u679c\uff08\u6587\u4ef6\u540d + \u5339\u914d\u5185\u5bb9\uff09<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u4e8c\u3001\u51c6\u5907\u73af\u5883<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1\ufe0f\u20e3 \u5b89\u88c5\u4f9d\u8d56<\/h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\npip install python-docx\n\n<\/pre><\/div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u4e09\u3001\u57fa\u7840\u7248\uff1a\u641c\u7d22\u591a\u4e2a Word \u6587\u6863\u6b63\u6587<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\u793a\u4f8b\u76ee\u5f55\u7ed3\u6784<\/h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ndocs\/\n \u251c\u2500\u2500 a.docx\n \u251c\u2500\u2500 b.docx\n \u2514\u2500\u2500 c.docx\n\n<\/pre><\/div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Python \u793a\u4f8b\u4ee3\u7801\uff08\u6b63\u6587\u641c\u7d22\uff09<\/h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nimport os\nfrom docx import Document\n\ndef search_word_docs(folder_path, keyword):\n    results = &#x5B;]\n\n    for filename in os.listdir(folder_path):\n        if filename.endswith(&quot;.docx&quot;):\n            file_path = os.path.join(folder_path, filename)\n            doc = Document(file_path)\n\n            for i, para in enumerate(doc.paragraphs):\n                if keyword in para.text:\n                    results.append({\n                        &quot;file&quot;: filename,\n                        &quot;paragraph&quot;: i + 1,\n                        &quot;content&quot;: para.text.strip()\n                    })\n\n    return results\n\n\nif __name__ == &quot;__main__&quot;:\n    folder = &quot;docs&quot;      # Word \u6587\u4ef6\u5939\u8def\u5f84\n    keyword = &quot;Python&quot;   # \u8981\u641c\u7d22\u7684\u5173\u952e\u8bcd\n\n    matches = search_word_docs(folder, keyword)\n\n    if matches:\n        for item in matches:\n            print(f&quot;\ud83d\udcc4 \u6587\u4ef6: {item&#x5B;&#039;file&#039;]}&quot;)\n            print(f&quot;\ud83d\udccc \u6bb5\u843d: \u7b2c {item&#x5B;&#039;paragraph&#039;]} \u6bb5&quot;)\n            print(f&quot;\ud83d\udd0d \u5185\u5bb9: {item&#x5B;&#039;content&#039;]}&quot;)\n            print(&quot;-&quot; * 50)\n    else:\n        print(&quot;\u274c \u672a\u627e\u5230\u5339\u914d\u5185\u5bb9&quot;)\n\n<\/pre><\/div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u56db\u3001\u8fdb\u9636\u7248\uff1a\u540c\u65f6\u641c\u7d22\u3010\u6b63\u6587 + \u8868\u683c\u3011<\/h2>\n\n\n\n<p>Word \u91cc\u7684\u91cd\u8981\u5185\u5bb9<strong>\u7ecf\u5e38\u85cf\u5728\u8868\u683c\u91cc<\/strong>\uff0c\u5efa\u8bae\u4e00\u8d77\u641c\u3002<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\u5347\u7ea7\u7248\u4ee3\u7801\uff08\u6b63\u6587 + \u8868\u683c\uff09<\/h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nimport os\nfrom docx import Document\n\ndef search_word_docs(folder_path, keyword):\n    results = &#x5B;]\n\n    for filename in os.listdir(folder_path):\n        if not filename.endswith(&quot;.docx&quot;):\n            continue\n\n        file_path = os.path.join(folder_path, filename)\n        doc = Document(file_path)\n\n        # \u641c\u7d22\u6b63\u6587\n        for i, para in enumerate(doc.paragraphs):\n            if keyword in para.text:\n                results.append((filename, &quot;\u6b63\u6587&quot;, i + 1, para.text.strip()))\n\n        # \u641c\u7d22\u8868\u683c\n        for t_index, table in enumerate(doc.tables):\n            for r_index, row in enumerate(table.rows):\n                for c_index, cell in enumerate(row.cells):\n                    if keyword in cell.text:\n                        results.append((\n                            filename,\n                            f&quot;\u8868\u683c{t_index + 1}&quot;,\n                            f&quot;\u884c{r_index + 1}\u5217{c_index + 1}&quot;,\n                            cell.text.strip()\n                        ))\n\n    return results\n\n\nif __name__ == &quot;__main__&quot;:\n    folder = &quot;docs&quot;\n    keyword = &quot;\u6570\u636e\u5e93&quot;\n\n    results = search_word_docs(folder, keyword)\n\n    for r in results:\n        print(f&quot;\ud83d\udcc4 \u6587\u4ef6: {r&#x5B;0]}&quot;)\n        print(f&quot;\ud83d\udccd \u4f4d\u7f6e: {r&#x5B;1]} - {r&#x5B;2]}&quot;)\n        print(f&quot;\ud83d\udd0d \u5185\u5bb9: {r&#x5B;3]}&quot;)\n        print(&quot;-&quot; * 60)\n\n<\/pre><\/div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u4e94\u3001\u5e38\u89c1\u6269\u5c55\u9700\u6c42\uff08\u6211\u53ef\u4ee5\u7ee7\u7eed\u5e2e\u4f60\uff09<\/h2>\n\n\n\n<p>\u4f60\u5982\u679c\u6709\u4e0b\u9762\u8fd9\u4e9b\u9700\u6c42\uff0c\u6211\u53ef\u4ee5\u76f4\u63a5\u7ed9\u4f60\u73b0\u6210\u4ee3\u7801\uff1a<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>\u2705 <strong>\u5ffd\u7565\u5927\u5c0f\u5199\u641c\u7d22<\/strong><\/li>\n\n\n\n<li>\u2705 <strong>\u6b63\u5219\u8868\u8fbe\u5f0f\u641c\u7d22<\/strong><\/li>\n\n\n\n<li>\u2705 <strong>\u5bfc\u51fa\u4e3a Excel \/ CSV<\/strong><\/li>\n\n\n\n<li>\u2705 <strong>GUI \u56fe\u5f62\u754c\u9762\uff08\u70b9\u6309\u94ae\u641c\u7d22\uff09<\/strong><\/li>\n\n\n\n<li>\u2705 <strong>\u652f\u6301 <code>.doc + .docx<\/code><\/strong><\/li>\n\n\n\n<li>\u2705 <strong>\u652f\u6301\u4e2d\u6587\u5206\u8bcd\u641c\u7d22<\/strong><\/li>\n\n\n\n<li>\u2705 <strong>Word \u6570\u5343\u4e2a\u6587\u6863\u7684\u9ad8\u6027\u80fd\u641c\u7d22<\/strong><\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u516d\u3001\u9002\u7528\u573a\u666f<\/h2>\n\n\n\n<p>\u2714 \u8bba\u6587 \/ \u5408\u540c \/ \u5236\u5ea6\u6587\u4ef6\u68c0\u7d22<br>\u2714 \u65e5\u5fd7 \/ \u62a5\u544a\u6279\u91cf\u6392\u67e5<br>\u2714 \u5b66\u751f\u9009\u8bfe\u7cfb\u7edf\u6587\u6863\u5ba1\u67e5\uff08\u4f60\u4e4b\u524d\u505a Spring Boot \u9879\u76ee\u65f6\u5f88\u9002\u5408\uff09<br>\u2714 \u81ea\u5a92\u4f53 \/ \u7eaa\u5f55\u7247\u7d20\u6750\u6574\u7406<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>\u597d\uff0c\u90a3\u6211\u76f4\u63a5\u7ed9\u4f60\u4e00\u4e2a<strong>\u53ef\u53cc\u51fb\u8fd0\u884c\u7684\u300cWord \u6587\u6863\u4e00\u952e\u641c\u7d22\u5de5\u5177\uff08\u5e26\u56fe\u5f62\u754c\u9762\uff09\u300d<\/strong>\uff0c\u4e0d\u7528\u5199\u547d\u4ee4\u884c\uff0c<strong>\u70b9\u6309\u94ae\u5c31\u80fd\u641c<\/strong> \ud83d\udc4d<\/p>\n\n\n\n<p>\u4e0b\u9762\u8fd9\u4e2a\u65b9\u6848 <strong>\u7a33\u5b9a\u3001\u7b80\u5355\u3001\u9002\u5408\u957f\u671f\u7528<\/strong>\u3002<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">\u4e00\u3001\u529f\u80fd\u8bf4\u660e\uff08\u4f60\u5c06\u5f97\u5230\u4ec0\u4e48\uff09<\/h1>\n\n\n\n<p>\u2705 \u56fe\u5f62\u754c\u9762\uff08\u7a97\u53e3\uff09<br>\u2705 \u9009\u62e9 Word \u6587\u4ef6\u5939<br>\u2705 \u8f93\u5165\u5173\u952e\u8bcd<br>\u2705 \u641c\u7d22 <strong>\u6b63\u6587 + \u8868\u683c<\/strong><br>\u2705 \u641c\u7d22\u7ed3\u679c\u5b9e\u65f6\u663e\u793a<br>\u2705 \u652f\u6301\u4e2d\u6587<br>\u2705 \u53ef\u4e00\u952e\u6253\u5305\u6210 <code>.exe<\/code><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">\u4e8c\u3001\u51c6\u5907\u73af\u5883\uff08\u53ea\u9700\u4e00\u6b21\uff09<\/h1>\n\n\n\n<h3 class=\"wp-block-heading\">1\ufe0f\u20e3 \u5b89\u88c5\u4f9d\u8d56<\/h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\npip install python-docx\n\n<\/pre><\/div>\n\n\n<p>\uff08<code>tkinter<\/code> \u662f Python \u81ea\u5e26\u7684\uff0c\u4e0d\u7528\u88c5\uff09<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">\u4e09\u3001\u5b8c\u6574 GUI \u7a0b\u5e8f\u4ee3\u7801\uff08\u76f4\u63a5\u53ef\u7528\uff09<\/h1>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>\ud83d\udccc \u4fdd\u5b58\u4e3a\uff1a<code>word_search_gui.py<\/code><\/p>\n<\/blockquote>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nimport os\nimport tkinter as tk\nfrom tkinter import filedialog, messagebox, scrolledtext\nfrom docx import Document\n\ndef search_docs():\n    folder = folder_path.get()\n    keyword = keyword_entry.get().strip()\n\n    if not folder or not keyword:\n        messagebox.showwarning(&quot;\u63d0\u793a&quot;, &quot;\u8bf7\u9009\u62e9\u6587\u4ef6\u5939\u5e76\u8f93\u5165\u5173\u952e\u8bcd&quot;)\n        return\n\n    result_text.delete(1.0, tk.END)\n    found = False\n\n    for root, dirs, files in os.walk(folder):\n        for file in files:\n            if file.endswith(&quot;.docx&quot;):\n                file_path = os.path.join(root, file)\n                try:\n                    doc = Document(file_path)\n\n                    # \u641c\u7d22\u6b63\u6587\n                    for i, para in enumerate(doc.paragraphs):\n                        if keyword in para.text:\n                            found = True\n                            result_text.insert(tk.END,\n                                f&quot;\ud83d\udcc4 \u6587\u4ef6\uff1a{file}\\n&quot;\n                                f&quot;\ud83d\udccc \u6b63\u6587 \u7b2c {i+1} \u6bb5\\n&quot;\n                                f&quot;\ud83d\udd0d \u5185\u5bb9\uff1a{para.text}\\n&quot;\n                                f&quot;{&#039;-&#039;*50}\\n&quot;\n                            )\n\n                    # \u641c\u7d22\u8868\u683c\n                    for t_idx, table in enumerate(doc.tables):\n                        for r_idx, row in enumerate(table.rows):\n                            for c_idx, cell in enumerate(row.cells):\n                                if keyword in cell.text:\n                                    found = True\n                                    result_text.insert(tk.END,\n                                        f&quot;\ud83d\udcc4 \u6587\u4ef6\uff1a{file}\\n&quot;\n                                        f&quot;\ud83d\udccc \u8868\u683c {t_idx+1} \u884c{r_idx+1} \u5217{c_idx+1}\\n&quot;\n                                        f&quot;\ud83d\udd0d \u5185\u5bb9\uff1a{cell.text}\\n&quot;\n                                        f&quot;{&#039;-&#039;*50}\\n&quot;\n                                    )\n\n                except Exception as e:\n                    print(f&quot;\u8bfb\u53d6\u5931\u8d25\uff1a{file_path}&quot;, e)\n\n    if not found:\n        result_text.insert(tk.END, &quot;\u274c \u672a\u627e\u5230\u5339\u914d\u5185\u5bb9&quot;)\n\ndef choose_folder():\n    path = filedialog.askdirectory()\n    if path:\n        folder_path.set(path)\n\n# ================= GUI =================\n\nroot = tk.Tk()\nroot.title(&quot;Word \u6587\u6863\u4e00\u952e\u641c\u7d22\u5de5\u5177&quot;)\nroot.geometry(&quot;800x600&quot;)\n\n# \u6587\u4ef6\u5939\u9009\u62e9\nframe_top = tk.Frame(root)\nframe_top.pack(pady=10)\n\nfolder_path = tk.StringVar()\n\ntk.Label(frame_top, text=&quot;Word \u6587\u4ef6\u5939\uff1a&quot;).grid(row=0, column=0, padx=5)\ntk.Entry(frame_top, textvariable=folder_path, width=50).grid(row=0, column=1)\ntk.Button(frame_top, text=&quot;\u9009\u62e9\u6587\u4ef6\u5939&quot;, command=choose_folder).grid(row=0, column=2, padx=5)\n\n# \u5173\u952e\u8bcd\ntk.Label(frame_top, text=&quot;\u5173\u952e\u8bcd\uff1a&quot;).grid(row=1, column=0, pady=10)\nkeyword_entry = tk.Entry(frame_top, width=30)\nkeyword_entry.grid(row=1, column=1, sticky=&quot;w&quot;)\n\ntk.Button(frame_top, text=&quot;\ud83d\udd0d \u5f00\u59cb\u641c\u7d22&quot;, command=search_docs).grid(row=1, column=2)\n\n# \u7ed3\u679c\u533a\nresult_text = scrolledtext.ScrolledText(root, wrap=tk.WORD)\nresult_text.pack(expand=True, fill=tk.BOTH, padx=10, pady=10)\n\nroot.mainloop()\n\n<\/pre><\/div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">\u56db\u3001\u5982\u4f55\u4f7f\u7528\uff083 \u6b65\uff09<\/h1>\n\n\n\n<p>1\ufe0f\u20e3 \u53cc\u51fb\u8fd0\u884c <code>word_search_gui.py<\/code><br>2\ufe0f\u20e3 \u70b9\u51fb\u3010\u9009\u62e9\u6587\u4ef6\u5939\u3011<br>3\ufe0f\u20e3 \u8f93\u5165\u5173\u952e\u8bcd \u2192 \u70b9\u3010\u5f00\u59cb\u641c\u7d22\u3011<\/p>\n\n\n\n<p>\ud83d\udccc \u641c\u7d22\u7ed3\u679c\u4f1a\u76f4\u63a5\u663e\u793a\u5728\u7a97\u53e3\u91cc<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">\u4e94\u3001\u6253\u5305\u6210 EXE\uff08\u65e0\u9700 Python \u73af\u5883\uff09<\/h1>\n\n\n\n<p>\u5982\u679c\u4f60\u60f3\u53d1\u7ed9\u522b\u4eba\u7528 \ud83d\udc47<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1\ufe0f\u20e3 \u5b89\u88c5\u6253\u5305\u5de5\u5177<\/h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\npip install pyinstaller\n\n<\/pre><\/div>\n\n\n<h3 class=\"wp-block-heading\">2\ufe0f\u20e3 \u6253\u5305<\/h3>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\npyinstaller -F -w word_search_gui.py\n\n<\/pre><\/div>\n\n\n<p>\ud83d\udcc1 \u751f\u6210\u4f4d\u7f6e\uff1a<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ndist\/word_search_gui.exe\n\n<\/pre><\/div>\n\n\n<p>\u53cc\u51fb\u5373\u53ef\u8fd0\u884c \u2705<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u4e0b\u9762\u7ed9\u4f60\u4e00\u4e2a\u5b9e\u7528\u3001\u53ef\u76f4\u63a5\u7528\u7684 Python \u65b9\u6848\uff0c\u53ef\u4ee5\u5728\u591a\u4e2a Word\uff08.doc&#8230; <a class=\"more-link\" href=\"https:\/\/www.52runoob.com\/index.php\/2026\/01\/05\/python%e5%ae%9e%e7%8e%b0%e5%9c%a8%e5%a4%9a%e4%b8%aaword%e6%96%87%e6%a1%a3%e4%b8%ad%e4%b8%80%e9%94%ae%e6%90%9c%e7%b4%a2\/\">Continue Reading &rarr;<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12],"tags":[],"class_list":["post-1244","post","type-post","status-publish","format-standard","hentry","category-12"],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.52runoob.com\/index.php\/wp-json\/wp\/v2\/posts\/1244","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.52runoob.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.52runoob.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.52runoob.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.52runoob.com\/index.php\/wp-json\/wp\/v2\/comments?post=1244"}],"version-history":[{"count":1,"href":"https:\/\/www.52runoob.com\/index.php\/wp-json\/wp\/v2\/posts\/1244\/revisions"}],"predecessor-version":[{"id":1245,"href":"https:\/\/www.52runoob.com\/index.php\/wp-json\/wp\/v2\/posts\/1244\/revisions\/1245"}],"wp:attachment":[{"href":"https:\/\/www.52runoob.com\/index.php\/wp-json\/wp\/v2\/media?parent=1244"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.52runoob.com\/index.php\/wp-json\/wp\/v2\/categories?post=1244"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.52runoob.com\/index.php\/wp-json\/wp\/v2\/tags?post=1244"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}