{"id":1182095,"date":"2025-01-15T18:59:13","date_gmt":"2025-01-15T10:59:13","guid":{"rendered":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/1182095.html"},"modified":"2025-01-15T18:59:15","modified_gmt":"2025-01-15T10:59:15","slug":"python%e5%a6%82%e4%bd%95%e5%81%9a%e7%95%8c%e9%9d%a2%e5%b7%a5%e5%85%b7","status":"publish","type":"post","link":"https:\/\/docs.pingcode.com\/ask\/1182095.html","title":{"rendered":"python\u5982\u4f55\u505a\u754c\u9762\u5de5\u5177"},"content":{"rendered":"<p style=\"text-align:center;\" ><img decoding=\"async\" src=\"https:\/\/cdn-kb.worktile.com\/kb\/wp-content\/uploads\/2024\/04\/25130217\/37be2ca8-ba95-4b69-9887-14b9e45606dd.webp\" alt=\"python\u5982\u4f55\u505a\u754c\u9762\u5de5\u5177\" \/><\/p>\n<p><p> <strong>Python\u505a\u754c\u9762\u5de5\u5177\u53ef\u4ee5\u4f7f\u7528\u591a\u79cd\u5e93\u548c\u6846\u67b6\uff0c\u5982Tkinter\u3001PyQt\u3001wxPython\u3001Kivy\u7b49\u3002<\/strong> Tkinter\u662fPython\u5185\u7f6e\u7684GUI\u5e93\uff0c\u9002\u5408\u8f7b\u91cf\u7ea7\u5e94\u7528\uff1b<strong>PyQt\u529f\u80fd\u5f3a\u5927\uff0c\u9002\u5408\u590d\u6742\u7684\u754c\u9762\u5f00\u53d1\uff1b<\/strong>wxPython\u8de8\u5e73\u53f0\u652f\u6301\u597d\uff0c\u9002\u5408\u591a\u79cd\u64cd\u4f5c\u7cfb\u7edf\uff1bKivy\u9002\u7528\u4e8e\u5f00\u53d1\u591a\u70b9\u89e6\u63a7\u5e94\u7528\u3002\u5728\u672c\u6587\u4e2d\uff0c\u6211\u4eec\u5c06\u8be6\u7ec6\u4ecb\u7ecd\u8fd9\u4e9b\u5e93\u7684\u4f7f\u7528\u65b9\u6cd5\u548c\u7279\u70b9\u3002<\/p>\n<\/p>\n<p><h3>\u4e00\u3001Tkinter<\/h3>\n<\/p>\n<p><p>Tkinter\u662fPython\u5185\u7f6e\u7684\u6807\u51c6GUI\u5e93\uff0c\u9002\u7528\u4e8e\u5f00\u53d1\u7b80\u5355\u7684\u684c\u9762\u5e94\u7528\u7a0b\u5e8f\u3002<\/p>\n<\/p>\n<p><h4>1\u3001Tkinter\u7684\u5b89\u88c5\u4e0e\u57fa\u672c\u4f7f\u7528<\/h4>\n<\/p>\n<p><p>Tkinter\u662fPython\u81ea\u5e26\u7684\u5e93\uff0c\u65e0\u9700\u5b89\u88c5\u3002\u521b\u5efa\u4e00\u4e2a\u7b80\u5355\u7684\u7a97\u53e3\u53ea\u9700\u8981\u51e0\u884c\u4ee3\u7801\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import tkinter as tk<\/p>\n<p>root = tk.Tk()<\/p>\n<p>root.title(&quot;Tkinter Demo&quot;)<\/p>\n<p>root.geometry(&quot;300x200&quot;)<\/p>\n<p>label = tk.Label(root, text=&quot;Hello, Tkinter!&quot;)<\/p>\n<p>label.pack()<\/p>\n<p>root.m<a href=\"https:\/\/docs.pingcode.com\/blog\/59162.html\" target=\"_blank\">AI<\/a>nloop()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h4>2\u3001Tkinter\u7684\u63a7\u4ef6\u4e0e\u5e03\u5c40\u7ba1\u7406<\/h4>\n<\/p>\n<p><p>Tkinter\u63d0\u4f9b\u4e86\u591a\u79cd\u63a7\u4ef6\uff0c\u5982Button\u3001Label\u3001Entry\u3001Text\u7b49\uff0c\u5e76\u652f\u6301\u591a\u79cd\u5e03\u5c40\u7ba1\u7406\u5668\uff0c\u5982pack\u3001grid\u3001place\u3002<\/p>\n<\/p>\n<p><p><strong>Button\u63a7\u4ef6\u4e0e\u4e8b\u4ef6\u7ed1\u5b9a\uff1a<\/strong><\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def on_button_click():<\/p>\n<p>    print(&quot;Button clicked!&quot;)<\/p>\n<p>button = tk.Button(root, text=&quot;Click Me&quot;, command=on_button_click)<\/p>\n<p>button.pack()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p><strong>Grid\u5e03\u5c40\u7ba1\u7406\u5668\uff1a<\/strong><\/p>\n<\/p>\n<p><pre><code class=\"language-python\">label1 = tk.Label(root, text=&quot;Label 1&quot;)<\/p>\n<p>label2 = tk.Label(root, text=&quot;Label 2&quot;)<\/p>\n<p>label1.grid(row=0, column=0)<\/p>\n<p>label2.grid(row=0, column=1)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u4e8c\u3001PyQt<\/h3>\n<\/p>\n<p><p>PyQt\u662fQt\u5e93\u7684Python\u7ed1\u5b9a\uff0c\u529f\u80fd\u5f3a\u5927\uff0c\u9002\u7528\u4e8e\u5f00\u53d1\u590d\u6742\u7684GUI\u5e94\u7528\u3002<\/p>\n<\/p>\n<p><h4>1\u3001PyQt\u7684\u5b89\u88c5\u4e0e\u57fa\u672c\u4f7f\u7528<\/h4>\n<\/p>\n<p><p>\u5b89\u88c5PyQt\u53ef\u4ee5\u4f7f\u7528pip\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-bash\">pip install PyQt5<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u521b\u5efa\u4e00\u4e2a\u7b80\u5355\u7684\u7a97\u53e3\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import sys<\/p>\n<p>from PyQt5.QtWidgets import QApplication, QWidget, QLabel<\/p>\n<p>app = QApplication(sys.argv)<\/p>\n<p>window = QWidget()<\/p>\n<p>window.setWindowTitle(&#39;PyQt Demo&#39;)<\/p>\n<p>window.setGeometry(100, 100, 300, 200)<\/p>\n<p>label = QLabel(&#39;Hello, PyQt!&#39;, window)<\/p>\n<p>label.move(50, 50)<\/p>\n<p>window.show()<\/p>\n<p>sys.exit(app.exec_())<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h4>2\u3001PyQt\u7684\u63a7\u4ef6\u4e0e\u5e03\u5c40\u7ba1\u7406<\/h4>\n<\/p>\n<p><p>PyQt\u63d0\u4f9b\u4e86\u4e30\u5bcc\u7684\u63a7\u4ef6\u548c\u5e03\u5c40\u7ba1\u7406\u5668\uff0c\u53ef\u4ee5\u5b9e\u73b0\u590d\u6742\u7684\u754c\u9762\u3002<\/p>\n<\/p>\n<p><p><strong>\u6309\u94ae\u63a7\u4ef6\u4e0e\u4fe1\u53f7\u69fd\u673a\u5236\uff1a<\/strong><\/p>\n<\/p>\n<p><pre><code class=\"language-python\">from PyQt5.QtWidgets import QPushButton<\/p>\n<p>def on_button_click():<\/p>\n<p>    print(&quot;Button clicked!&quot;)<\/p>\n<p>button = QPushButton(&#39;Click Me&#39;, window)<\/p>\n<p>button.clicked.connect(on_button_click)<\/p>\n<p>button.move(50, 100)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p><strong>\u7f51\u683c\u5e03\u5c40\u7ba1\u7406\u5668\uff1a<\/strong><\/p>\n<\/p>\n<p><pre><code class=\"language-python\">from PyQt5.QtWidgets import QGridLayout<\/p>\n<p>layout = QGridLayout()<\/p>\n<p>label1 = QLabel(&#39;Label 1&#39;)<\/p>\n<p>label2 = QLabel(&#39;Label 2&#39;)<\/p>\n<p>layout.addWidget(label1, 0, 0)<\/p>\n<p>layout.addWidget(label2, 0, 1)<\/p>\n<p>window.setLayout(layout)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u4e09\u3001wxPython<\/h3>\n<\/p>\n<p><p>wxPython\u662f\u4e00\u4e2a\u8de8\u5e73\u53f0\u7684GUI\u5e93\uff0c\u652f\u6301Windows\u3001Mac\u548cLinux\u3002<\/p>\n<\/p>\n<p><h4>1\u3001wxPython\u7684\u5b89\u88c5\u4e0e\u57fa\u672c\u4f7f\u7528<\/h4>\n<\/p>\n<p><p>\u5b89\u88c5wxPython\u53ef\u4ee5\u4f7f\u7528pip\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-bash\">pip install wxPython<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u521b\u5efa\u4e00\u4e2a\u7b80\u5355\u7684\u7a97\u53e3\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import wx<\/p>\n<p>app = wx.App(False)<\/p>\n<p>frame = wx.Frame(None, wx.ID_ANY, &quot;wxPython Demo&quot;)<\/p>\n<p>panel = wx.Panel(frame, wx.ID_ANY)<\/p>\n<p>label = wx.StaticText(panel, label=&quot;Hello, wxPython!&quot;, pos=(50, 50))<\/p>\n<p>frame.Show(True)<\/p>\n<p>app.MainLoop()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h4>2\u3001wxPython\u7684\u63a7\u4ef6\u4e0e\u5e03\u5c40\u7ba1\u7406<\/h4>\n<\/p>\n<p><p>wxPython\u63d0\u4f9b\u4e86\u591a\u79cd\u63a7\u4ef6\u548c\u5e03\u5c40\u7ba1\u7406\u5668\uff0c\u53ef\u4ee5\u5b9e\u73b0\u7075\u6d3b\u7684\u754c\u9762\u8bbe\u8ba1\u3002<\/p>\n<\/p>\n<p><p><strong>\u6309\u94ae\u63a7\u4ef6\u4e0e\u4e8b\u4ef6\u7ed1\u5b9a\uff1a<\/strong><\/p>\n<\/p>\n<p><pre><code class=\"language-python\">def on_button_click(event):<\/p>\n<p>    print(&quot;Button clicked!&quot;)<\/p>\n<p>button = wx.Button(panel, label=&quot;Click Me&quot;, pos=(50, 100))<\/p>\n<p>button.Bind(wx.EVT_BUTTON, on_button_click)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p><strong>\u7f51\u683c\u5e03\u5c40\u7ba1\u7406\u5668\uff1a<\/strong><\/p>\n<\/p>\n<p><pre><code class=\"language-python\">grid = wx.GridSizer(2, 2, 10, 10)<\/p>\n<p>label1 = wx.StaticText(panel, label=&quot;Label 1&quot;)<\/p>\n<p>label2 = wx.StaticText(panel, label=&quot;Label 2&quot;)<\/p>\n<p>grid.Add(label1, 0, wx.ALIGN_CENTER)<\/p>\n<p>grid.Add(label2, 0, wx.ALIGN_CENTER)<\/p>\n<p>panel.SetSizer(grid)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u56db\u3001Kivy<\/h3>\n<\/p>\n<p><p>Kivy\u662f\u4e00\u4e2a\u5f00\u6e90\u7684Python\u5e93\uff0c\u9002\u7528\u4e8e\u5f00\u53d1\u591a\u70b9\u89e6\u63a7\u5e94\u7528\u548c\u8de8\u5e73\u53f0\u5e94\u7528\u3002<\/p>\n<\/p>\n<p><h4>1\u3001Kivy\u7684\u5b89\u88c5\u4e0e\u57fa\u672c\u4f7f\u7528<\/h4>\n<\/p>\n<p><p>\u5b89\u88c5Kivy\u53ef\u4ee5\u4f7f\u7528pip\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-bash\">pip install kivy<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u521b\u5efa\u4e00\u4e2a\u7b80\u5355\u7684\u7a97\u53e3\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">from kivy.app import App<\/p>\n<p>from kivy.uix.label import Label<\/p>\n<p>class MyApp(App):<\/p>\n<p>    def build(self):<\/p>\n<p>        return Label(text=&#39;Hello, Kivy!&#39;)<\/p>\n<p>if __name__ == &#39;__main__&#39;:<\/p>\n<p>    MyApp().run()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h4>2\u3001Kivy\u7684\u63a7\u4ef6\u4e0e\u5e03\u5c40\u7ba1\u7406<\/h4>\n<\/p>\n<p><p>Kivy\u63d0\u4f9b\u4e86\u4e30\u5bcc\u7684\u63a7\u4ef6\u548c\u5e03\u5c40\u7ba1\u7406\u5668\uff0c\u53ef\u4ee5\u5b9e\u73b0\u590d\u6742\u7684\u754c\u9762\u3002<\/p>\n<\/p>\n<p><p><strong>\u6309\u94ae\u63a7\u4ef6\u4e0e\u4e8b\u4ef6\u5904\u7406\uff1a<\/strong><\/p>\n<\/p>\n<p><pre><code class=\"language-python\">from kivy.uix.button import Button<\/p>\n<p>def on_button_click(instance):<\/p>\n<p>    print(&quot;Button clicked!&quot;)<\/p>\n<p>class MyApp(App):<\/p>\n<p>    def build(self):<\/p>\n<p>        button = Button(text=&#39;Click Me&#39;)<\/p>\n<p>        button.bind(on_press=on_button_click)<\/p>\n<p>        return button<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p><strong>\u5e03\u5c40\u7ba1\u7406\u5668\uff1a<\/strong><\/p>\n<\/p>\n<p><pre><code class=\"language-python\">from kivy.uix.gridlayout import GridLayout<\/p>\n<p>from kivy.uix.label import Label<\/p>\n<p>class MyApp(App):<\/p>\n<p>    def build(self):<\/p>\n<p>        layout = GridLayout(cols=2)<\/p>\n<p>        layout.add_widget(Label(text=&#39;Label 1&#39;))<\/p>\n<p>        layout.add_widget(Label(text=&#39;Label 2&#39;))<\/p>\n<p>        return layout<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h3>\u4e94\u3001\u603b\u7ed3<\/h3>\n<\/p>\n<p><p>\u5728\u5f00\u53d1Python\u754c\u9762\u5de5\u5177\u65f6\uff0c\u9009\u62e9\u5408\u9002\u7684\u5e93\u548c\u6846\u67b6\u975e\u5e38\u91cd\u8981\u3002<strong>Tkinter\u9002\u5408\u8f7b\u91cf\u7ea7\u5e94\u7528\uff0cPyQt\u529f\u80fd\u5f3a\u5927\u9002\u5408\u590d\u6742\u754c\u9762\uff0cwxPython\u8de8\u5e73\u53f0\u652f\u6301\u597d\uff0cKivy\u9002\u7528\u4e8e\u591a\u70b9\u89e6\u63a7\u5e94\u7528\u3002<\/strong> \u901a\u8fc7\u8be6\u7ec6\u4e86\u89e3\u8fd9\u4e9b\u5e93\u7684\u7279\u70b9\u548c\u4f7f\u7528\u65b9\u6cd5\uff0c\u53ef\u4ee5\u6839\u636e\u5177\u4f53\u9700\u6c42\u9009\u62e9\u6700\u5408\u9002\u7684\u5de5\u5177\uff0c\u63d0\u9ad8\u5f00\u53d1\u6548\u7387\u548c\u7528\u6237\u4f53\u9a8c\u3002<\/p>\n<\/p>\n<h2><strong>\u76f8\u5173\u95ee\u7b54FAQs\uff1a<\/strong><\/h2>\n<p> <strong>\u5982\u4f55\u9009\u62e9\u9002\u5408\u7684Python GUI\u6846\u67b6\uff1f<\/strong><br \/>\u5728\u521b\u5efa\u56fe\u5f62\u7528\u6237\u754c\u9762\uff08GUI\uff09\u5de5\u5177\u65f6\uff0c\u9009\u62e9\u5408\u9002\u7684\u6846\u67b6\u975e\u5e38\u91cd\u8981\u3002\u5e38\u89c1\u7684Python GUI\u6846\u67b6\u5305\u62ecTkinter\u3001PyQt\u3001wxPython\u548cKivy\u3002Tkinter\u662fPython\u7684\u6807\u51c6\u5e93\uff0c\u6613\u4e8e\u4f7f\u7528\uff0c\u9002\u5408\u7b80\u5355\u5e94\u7528\uff1bPyQt\u63d0\u4f9b\u4e30\u5bcc\u7684\u529f\u80fd\u548c\u73b0\u4ee3\u5316\u7684\u754c\u9762\uff0c\u9002\u5408\u590d\u6742\u9879\u76ee\uff1bwxPython\u5219\u5177\u6709\u539f\u751f\u5916\u89c2\u7684\u7279\u70b9\uff1bKivy\u9002\u5408\u5f00\u53d1\u79fb\u52a8\u5e94\u7528\u3002\u6839\u636e\u9879\u76ee\u9700\u6c42\u548c\u4e2a\u4eba\u719f\u6089\u7a0b\u5ea6\u9009\u62e9\u6846\u67b6\uff0c\u53ef\u4ee5\u66f4\u9ad8\u6548\u5730\u5b8c\u6210\u5f00\u53d1\u5de5\u4f5c\u3002<\/p>\n<p><strong>Python GUI\u5de5\u5177\u7684\u5f00\u53d1\u6b65\u9aa4\u6709\u54ea\u4e9b\uff1f<\/strong><br \/>\u5f00\u53d1Python GUI\u5de5\u5177\u901a\u5e38\u5305\u62ec\u51e0\u4e2a\u5173\u952e\u6b65\u9aa4\uff1a\u9996\u5148\uff0c\u660e\u786e\u5e94\u7528\u7684\u529f\u80fd\u9700\u6c42\uff1b\u63a5\u7740\uff0c\u9009\u62e9\u9002\u5408\u7684GUI\u6846\u67b6\u5e76\u5b89\u88c5\u6240\u9700\u5e93\uff1b\u7136\u540e\uff0c\u8bbe\u8ba1\u754c\u9762\u5e03\u5c40\u548c\u7528\u6237\u4ea4\u4e92\u6d41\u7a0b\uff1b\u5728\u6b64\u4e4b\u540e\uff0c\u7f16\u5199\u76f8\u5e94\u7684\u4ee3\u7801\u5b9e\u73b0\u529f\u80fd\uff1b\u6700\u540e\uff0c\u901a\u8fc7\u6d4b\u8bd5\u548c\u8c03\u8bd5\u786e\u4fdd\u5e94\u7528\u7684\u7a33\u5b9a\u6027\u548c\u7528\u6237\u4f53\u9a8c\u3002\u8fc7\u7a0b\u4e2d\u6ce8\u610f\u754c\u9762\u7684\u53cb\u597d\u6027\u548c\u54cd\u5e94\u901f\u5ea6\uff0c\u53ef\u4ee5\u63d0\u5347\u7528\u6237\u6ee1\u610f\u5ea6\u3002<\/p>\n<p><strong>\u5982\u4f55\u63d0\u9ad8Python GUI\u5de5\u5177\u7684\u7528\u6237\u4f53\u9a8c\uff1f<\/strong><br \/>\u63d0\u5347\u7528\u6237\u4f53\u9a8c\u7684\u5173\u952e\u5728\u4e8e\u754c\u9762\u7684\u76f4\u89c2\u8bbe\u8ba1\u548c\u6d41\u7545\u7684\u4ea4\u4e92\u3002\u53ef\u4ee5\u8003\u8651\u4f7f\u7528\u4e00\u81f4\u7684\u989c\u8272\u548c\u5b57\u4f53\uff0c\u4f7f\u754c\u9762\u770b\u8d77\u6765\u4e13\u4e1a\uff1b\u8bbe\u8ba1\u7b80\u6d01\u7684\u5bfc\u822a\u680f\uff0c\u5e2e\u52a9\u7528\u6237\u5feb\u901f\u627e\u5230\u6240\u9700\u529f\u80fd\uff1b\u6dfb\u52a0\u5de5\u5177\u63d0\u793a\u548c\u5e2e\u52a9\u6587\u6863\uff0c\u4ee5\u4fbf\u65b0\u7528\u6237\u7406\u89e3\u529f\u80fd\u3002\u4f18\u5316\u52a0\u8f7d\u901f\u5ea6\u548c\u54cd\u5e94\u65f6\u95f4\uff0c\u786e\u4fdd\u7528\u6237\u5728\u4f7f\u7528\u65f6\u6ca1\u6709\u5361\u987f\u611f\u3002\u5b9a\u671f\u6536\u96c6\u7528\u6237\u53cd\u9988\uff0c\u6839\u636e\u7528\u6237\u9700\u6c42\u4e0d\u65ad\u8fed\u4ee3\u548c\u6539\u8fdb\u5e94\u7528\uff0c\u4e5f\u80fd\u6709\u6548\u63d0\u5347\u7528\u6237\u4f53\u9a8c\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"Python\u505a\u754c\u9762\u5de5\u5177\u53ef\u4ee5\u4f7f\u7528\u591a\u79cd\u5e93\u548c\u6846\u67b6\uff0c\u5982Tkinter\u3001PyQt\u3001wxPython\u3001Kivy\u7b49\u3002 Tki [&hellip;]","protected":false},"author":3,"featured_media":1182103,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[37],"tags":[],"acf":[],"_links":{"self":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1182095"}],"collection":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/comments?post=1182095"}],"version-history":[{"count":"1","href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1182095\/revisions"}],"predecessor-version":[{"id":1182105,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1182095\/revisions\/1182105"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media\/1182103"}],"wp:attachment":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media?parent=1182095"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/categories?post=1182095"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/tags?post=1182095"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}