{"id":1071590,"date":"2025-01-08T11:08:36","date_gmt":"2025-01-08T03:08:36","guid":{"rendered":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/1071590.html"},"modified":"2025-01-08T11:08:39","modified_gmt":"2025-01-08T03:08:39","slug":"python3-7%e5%a6%82%e4%bd%95%e6%9b%b4%e6%94%b9%e5%ad%97%e4%bd%93%e5%a4%a7%e5%b0%8f-2","status":"publish","type":"post","link":"https:\/\/docs.pingcode.com\/ask\/1071590.html","title":{"rendered":"python3.7\u5982\u4f55\u66f4\u6539\u5b57\u4f53\u5927\u5c0f"},"content":{"rendered":"<p style=\"text-align:center;\" ><img decoding=\"async\" src=\"https:\/\/cdn-kb.worktile.com\/kb\/wp-content\/uploads\/2024\/04\/25102050\/10d6fa72-fdea-4ab7-bc9e-a9d159b49dfd.webp\" alt=\"python3.7\u5982\u4f55\u66f4\u6539\u5b57\u4f53\u5927\u5c0f\" \/><\/p>\n<p><p> <strong>\u5728Python 3.7\u4e2d\u66f4\u6539\u5b57\u4f53\u5927\u5c0f\u7684\u65b9\u6cd5\u6709\u591a\u79cd\uff0c\u5305\u62ec\u4f7f\u7528Tkinter\u5e93\u3001Matplotlib\u5e93\u3001Pygame\u5e93\u7b49\u3002\u6700\u5e38\u89c1\u548c\u7b80\u5355\u7684\u65b9\u6cd5\u662f\u4f7f\u7528Tkinter\u5e93\uff0c\u5b83\u662fPython\u5185\u7f6e\u7684\u56fe\u5f62\u7528\u6237\u754c\u9762\uff08GUI\uff09\u5e93\u3002\u9996\u5148\uff0c\u6211\u4eec\u5c06\u7b80\u5355\u4ecb\u7ecd\u5982\u4f55\u5728Tkinter\u4e2d\u66f4\u6539\u5b57\u4f53\u5927\u5c0f\uff0c\u7136\u540e\u6df1\u5165\u63a2\u8ba8\u5176\u4ed6\u65b9\u6cd5\u3002<\/strong><\/p>\n<\/p>\n<p><p>Tkinter\u5e93\u662fPython\u7684\u6807\u51c6GUI\u5e93\uff0c\u53ef\u4ee5\u8f7b\u677e\u521b\u5efa\u7a97\u53e3\u5e76\u5728\u5176\u4e2d\u6dfb\u52a0\u6587\u672c\u3001\u6309\u94ae\u7b49\u7ec4\u4ef6\u3002\u66f4\u6539\u5b57\u4f53\u5927\u5c0f\u901a\u5e38\u6d89\u53ca\u914d\u7f6eTkinter\u5c0f\u90e8\u4ef6\u7684\u201cfont\u201d\u5c5e\u6027\u3002\u901a\u8fc7\u6307\u5b9a\u5b57\u4f53\u540d\u79f0\u548c\u5927\u5c0f\uff0c\u53ef\u4ee5\u8f7b\u677e\u66f4\u6539\u6587\u672c\u7684\u5916\u89c2\u3002\u4e0b\u9762\u5c06\u8be6\u7ec6\u4ecb\u7ecd\u5982\u4f55\u4f7f\u7528Tkinter\u66f4\u6539\u5b57\u4f53\u5927\u5c0f\u3002<\/p>\n<\/p>\n<p><h3>\u4e00\u3001\u4f7f\u7528Tkinter\u66f4\u6539\u5b57\u4f53\u5927\u5c0f<\/h3>\n<\/p>\n<p><p>Tkinter\u662fPython\u7684\u6807\u51c6\u5e93\uff0c\u7528\u4e8e\u521b\u5efa\u56fe\u5f62\u7528\u6237\u754c\u9762\u3002\u4ee5\u4e0b\u662f\u4f7f\u7528Tkinter\u66f4\u6539\u5b57\u4f53\u5927\u5c0f\u7684\u8be6\u7ec6\u6b65\u9aa4\uff1a<\/p>\n<\/p>\n<p><h4>1\u3001\u5b89\u88c5\u548c\u5bfc\u5165Tkinter<\/h4>\n<\/p>\n<p><p>Tkinter\u662fPython\u7684\u5185\u7f6e\u5e93\uff0c\u56e0\u6b64\u4e0d\u9700\u8981\u989d\u5916\u5b89\u88c5\u3002\u53ea\u9700\u5bfc\u5165Tkinter\u6a21\u5757\u5373\u53ef\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import tkinter as tk<\/p>\n<p>from tkinter import font<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h4>2\u3001\u521b\u5efa\u4e3b\u7a97\u53e3<\/h4>\n<\/p>\n<p><p>\u4f7f\u7528Tkinter\u521b\u5efa\u4e00\u4e2a\u4e3b\u7a97\u53e3\uff0c\u5e76\u8bbe\u7f6e\u7a97\u53e3\u7684\u6807\u9898\u548c\u5c3a\u5bf8\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">root = tk.Tk()<\/p>\n<p>root.title(&quot;\u66f4\u6539\u5b57\u4f53\u5927\u5c0f\u793a\u4f8b&quot;)<\/p>\n<p>root.geometry(&quot;400x300&quot;)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h4>3\u3001\u521b\u5efa\u6587\u672c\u5c0f\u90e8\u4ef6\u5e76\u8bbe\u7f6e\u5b57\u4f53<\/h4>\n<\/p>\n<p><p>\u5728\u4e3b\u7a97\u53e3\u4e2d\u521b\u5efa\u4e00\u4e2aLabel\u5c0f\u90e8\u4ef6\uff0c\u5e76\u8bbe\u7f6e\u5176\u5b57\u4f53\u548c\u5927\u5c0f\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">custom_font = font.Font(family=&quot;Helvetica&quot;, size=20)<\/p>\n<p>label = tk.Label(root, text=&quot;\u8fd9\u662f\u4e00\u4e2a\u793a\u4f8b\u6587\u672c&quot;, font=custom_font)<\/p>\n<p>label.pack(pady=20)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h4>4\u3001\u8fd0\u884c\u4e3b\u5faa\u73af<\/h4>\n<\/p>\n<p><p>\u8fd0\u884cTkinter\u7684\u4e3b\u5faa\u73af\uff0c\u4ee5\u663e\u793a\u7a97\u53e3\u548c\u5c0f\u90e8\u4ef6\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">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><p>\u4ee5\u4e0a\u4ee3\u7801\u5c06\u521b\u5efa\u4e00\u4e2a\u5305\u542b\u6587\u672c\u201c\u8fd9\u662f\u4e00\u4e2a\u793a\u4f8b\u6587\u672c\u201d\u7684\u7a97\u53e3\uff0c\u5e76\u5c06\u5b57\u4f53\u5927\u5c0f\u8bbe\u7f6e\u4e3a20\u3002<\/p>\n<\/p>\n<p><h3>\u4e8c\u3001\u4f7f\u7528Matplotlib\u66f4\u6539\u5b57\u4f53\u5927\u5c0f<\/h3>\n<\/p>\n<p><p>Matplotlib\u662f\u4e00\u4e2a\u5f3a\u5927\u7684\u7ed8\u56fe\u5e93\uff0c\u5e7f\u6cdb\u7528\u4e8e\u7ed8\u5236\u56fe\u8868\u3002\u60a8\u53ef\u4ee5\u4f7f\u7528Matplotlib\u66f4\u6539\u56fe\u8868\u4e2d\u7684\u5b57\u4f53\u5927\u5c0f\u3002\u4ee5\u4e0b\u662f\u6b65\u9aa4\uff1a<\/p>\n<\/p>\n<p><h4>1\u3001\u5b89\u88c5\u548c\u5bfc\u5165Matplotlib<\/h4>\n<\/p>\n<p><p>\u9996\u5148\uff0c\u786e\u4fdd\u5df2\u5b89\u88c5Matplotlib\u5e93\u3002\u5982\u679c\u5c1a\u672a\u5b89\u88c5\uff0c\u53ef\u4ee5\u4f7f\u7528\u4ee5\u4e0b\u547d\u4ee4\u8fdb\u884c\u5b89\u88c5\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-bash\">pip install matplotlib<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5bfc\u5165Matplotlib\u5e93\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import matplotlib.pyplot as plt<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h4>2\u3001\u521b\u5efa\u56fe\u8868\u5e76\u8bbe\u7f6e\u5b57\u4f53\u5927\u5c0f<\/h4>\n<\/p>\n<p><p>\u521b\u5efa\u4e00\u4e2a\u7b80\u5355\u7684\u56fe\u8868\uff0c\u5e76\u8bbe\u7f6e\u5176\u6807\u9898\u3001\u8f74\u6807\u7b7e\u548c\u523b\u5ea6\u7684\u5b57\u4f53\u5927\u5c0f\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">plt.figure(figsize=(8, 6))<\/p>\n<p>plt.plot([1, 2, 3, 4], [10, 20, 25, 30], label=&quot;\u793a\u4f8b\u6570\u636e&quot;)<\/p>\n<p>plt.title(&quot;\u56fe\u8868\u6807\u9898&quot;, fontsize=20)<\/p>\n<p>plt.xlabel(&quot;X\u8f74\u6807\u7b7e&quot;, fontsize=15)<\/p>\n<p>plt.ylabel(&quot;Y\u8f74\u6807\u7b7e&quot;, fontsize=15)<\/p>\n<p>plt.xticks(fontsize=12)<\/p>\n<p>plt.yticks(fontsize=12)<\/p>\n<p>plt.legend(fontsize=12)<\/p>\n<p>plt.show()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u4ee5\u4e0a\u4ee3\u7801\u5c06\u521b\u5efa\u4e00\u4e2a\u7b80\u5355\u7684\u6298\u7ebf\u56fe\uff0c\u5e76\u8bbe\u7f6e\u6807\u9898\u3001\u8f74\u6807\u7b7e\u548c\u523b\u5ea6\u7684\u5b57\u4f53\u5927\u5c0f\u3002<\/p>\n<\/p>\n<p><h3>\u4e09\u3001\u4f7f\u7528Pygame\u66f4\u6539\u5b57\u4f53\u5927\u5c0f<\/h3>\n<\/p>\n<p><p>Pygame\u662f\u4e00\u4e2a\u7528\u4e8e\u5f00\u53d1\u6e38\u620f\u7684\u5e93\uff0c\u4e5f\u53ef\u4ee5\u7528\u4e8e\u521b\u5efa\u56fe\u5f62\u754c\u9762\u3002\u4ee5\u4e0b\u662f\u4f7f\u7528Pygame\u66f4\u6539\u5b57\u4f53\u5927\u5c0f\u7684\u6b65\u9aa4\uff1a<\/p>\n<\/p>\n<p><h4>1\u3001\u5b89\u88c5\u548c\u5bfc\u5165Pygame<\/h4>\n<\/p>\n<p><p>\u9996\u5148\uff0c\u786e\u4fdd\u5df2\u5b89\u88c5Pygame\u5e93\u3002\u5982\u679c\u5c1a\u672a\u5b89\u88c5\uff0c\u53ef\u4ee5\u4f7f\u7528\u4ee5\u4e0b\u547d\u4ee4\u8fdb\u884c\u5b89\u88c5\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-bash\">pip install pygame<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5bfc\u5165Pygame\u5e93\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">import pygame<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h4>2\u3001\u521d\u59cb\u5316Pygame\u5e76\u521b\u5efa\u7a97\u53e3<\/h4>\n<\/p>\n<p><p>\u521d\u59cb\u5316Pygame\u5e76\u521b\u5efa\u4e00\u4e2a\u7a97\u53e3\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">pygame.init()<\/p>\n<p>screen = pygame.display.set_mode((800, 600))<\/p>\n<p>pygame.display.set_caption(&quot;\u66f4\u6539\u5b57\u4f53\u5927\u5c0f\u793a\u4f8b&quot;)<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h4>3\u3001\u521b\u5efa\u6587\u672c\u5e76\u8bbe\u7f6e\u5b57\u4f53\u5927\u5c0f<\/h4>\n<\/p>\n<p><p>\u521b\u5efa\u4e00\u4e2a\u5b57\u4f53\u5bf9\u8c61\uff0c\u5e76\u4f7f\u7528\u8be5\u5b57\u4f53\u5bf9\u8c61\u6e32\u67d3\u6587\u672c\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">font = pygame.font.SysFont(&quot;Arial&quot;, 30)<\/p>\n<p>text = font.render(&quot;\u8fd9\u662f\u4e00\u4e2a\u793a\u4f8b\u6587\u672c&quot;, True, (255, 255, 255))<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h4>4\u3001\u5c06\u6587\u672c\u7ed8\u5236\u5230\u7a97\u53e3\u4e0a<\/h4>\n<\/p>\n<p><p>\u5c06\u6e32\u67d3\u7684\u6587\u672c\u7ed8\u5236\u5230\u7a97\u53e3\u4e0a\uff0c\u5e76\u663e\u793a\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">screen.fill((0, 0, 0))<\/p>\n<p>screen.blit(text, (100, 100))<\/p>\n<p>pygame.display.flip()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><h4>5\u3001\u8fd0\u884c\u4e3b\u5faa\u73af<\/h4>\n<\/p>\n<p><p>\u8fd0\u884cPygame\u7684\u4e3b\u5faa\u73af\uff0c\u4ee5\u4fdd\u6301\u7a97\u53e3\u6253\u5f00\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">running = True<\/p>\n<p>while running:<\/p>\n<p>    for event in pygame.event.get():<\/p>\n<p>        if event.type == pygame.QUIT:<\/p>\n<p>            running = False<\/p>\n<p>pygame.quit()<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u4ee5\u4e0a\u4ee3\u7801\u5c06\u521b\u5efa\u4e00\u4e2a\u5305\u542b\u6587\u672c\u201c\u8fd9\u662f\u4e00\u4e2a\u793a\u4f8b\u6587\u672c\u201d\u7684\u7a97\u53e3\uff0c\u5e76\u5c06\u5b57\u4f53\u5927\u5c0f\u8bbe\u7f6e\u4e3a30\u3002<\/p>\n<\/p>\n<p><h3>\u56db\u3001\u603b\u7ed3<\/h3>\n<\/p>\n<p><p>\u5728Python 3.7\u4e2d\uff0c\u53ef\u4ee5\u4f7f\u7528\u591a\u79cd\u5e93\u6765\u66f4\u6539\u5b57\u4f53\u5927\u5c0f\uff0c\u5305\u62ecTkinter\u3001Matplotlib\u548cPygame\u3002\u6bcf\u79cd\u5e93\u90fd\u6709\u5176\u72ec\u7279\u7684\u5e94\u7528\u573a\u666f\u548c\u4f18\u52bf\u3002Tkinter\u9002\u7528\u4e8e\u521b\u5efa\u7b80\u5355\u7684\u56fe\u5f62\u7528\u6237\u754c\u9762\uff0cMatplotlib\u9002\u7528\u4e8e\u7ed8\u5236\u56fe\u8868\uff0c\u800cPygame\u9002\u7528\u4e8e\u5f00\u53d1\u6e38\u620f\u548c\u56fe\u5f62\u754c\u9762\u3002\u6839\u636e\u5177\u4f53\u9700\u6c42\u9009\u62e9\u5408\u9002\u7684\u5e93\u548c\u65b9\u6cd5\uff0c\u53ef\u4ee5\u8f7b\u677e\u5b9e\u73b0\u5b57\u4f53\u5927\u5c0f\u7684\u66f4\u6539\u3002<\/p>\n<\/p>\n<h2><strong>\u76f8\u5173\u95ee\u7b54FAQs\uff1a<\/strong><\/h2>\n<p> <strong>\u5728Python 3.7\u4e2d\uff0c\u5982\u4f55\u6539\u53d8\u56fe\u5f62\u754c\u9762\u4e2d\u7684\u5b57\u4f53\u5927\u5c0f\uff1f<\/strong><br \/>\u5728\u4f7f\u7528Tkinter\u7b49\u56fe\u5f62\u754c\u9762\u5e93\u65f6\uff0c\u53ef\u4ee5\u901a\u8fc7\u8bbe\u7f6e\u5b57\u4f53\u5c5e\u6027\u6765\u66f4\u6539\u5b57\u4f53\u5927\u5c0f\u3002\u5177\u4f53\u800c\u8a00\uff0c\u53ef\u4ee5\u4f7f\u7528<code>font<\/code>\u6a21\u5757\uff0c\u5b9a\u4e49\u5b57\u4f53\u5927\u5c0f\uff0c\u5982\u4e0b\u6240\u793a\uff1a<\/p>\n<pre><code class=\"language-python\">import tkinter as tk\nfrom tkinter import font\n\nroot = tk.Tk()\nmyFont = font.Font(size=20)  # \u8bbe\u7f6e\u5b57\u4f53\u5927\u5c0f\u4e3a20\nlabel = tk.Label(root, text=&quot;Hello, World!&quot;, font=myFont)\nlabel.pack()\nroot.mainloop()\n<\/code><\/pre>\n<p>\u8fd9\u6837\u5c31\u53ef\u4ee5\u5728Tkinter\u7a97\u53e3\u4e2d\u663e\u793a\u6307\u5b9a\u5927\u5c0f\u7684\u5b57\u4f53\u3002<\/p>\n<p><strong>Python 3.7\u5982\u4f55\u5728\u7ed8\u56fe\u65f6\u8c03\u6574\u6587\u672c\u5b57\u4f53\u5927\u5c0f\uff1f<\/strong><br \/>\u5982\u679c\u60a8\u6b63\u5728\u4f7f\u7528Matplotlib\u8fdb\u884c\u7ed8\u56fe\uff0c\u53ef\u4ee5\u901a\u8fc7<code>fontsize<\/code>\u53c2\u6570\u6765\u8c03\u6574\u6587\u672c\u7684\u5b57\u4f53\u5927\u5c0f\u3002\u4f8b\u5982\uff1a<\/p>\n<pre><code class=\"language-python\">import matplotlib.pyplot as plt\n\nplt.plot([1, 2, 3], [4, 5, 6])\nplt.title(&#39;Sample Plot&#39;, fontsize=16)  # \u8bbe\u7f6e\u6807\u9898\u5b57\u4f53\u5927\u5c0f\nplt.xlabel(&#39;X-axis Label&#39;, fontsize=12)  # \u8bbe\u7f6eX\u8f74\u6807\u7b7e\u5b57\u4f53\u5927\u5c0f\nplt.ylabel(&#39;Y-axis Label&#39;, fontsize=12)  # \u8bbe\u7f6eY\u8f74\u6807\u7b7e\u5b57\u4f53\u5927\u5c0f\nplt.show()\n<\/code><\/pre>\n<p>\u8fd9\u6bb5\u4ee3\u7801\u4f1a\u5728\u751f\u6210\u7684\u56fe\u5f62\u4e2d\u4ee5\u6307\u5b9a\u7684\u5b57\u4f53\u5927\u5c0f\u663e\u793a\u6587\u672c\u3002<\/p>\n<p><strong>\u5728Python 3.7\u4e2d\uff0c\u5982\u4f55\u5728\u751f\u6210PDF\u65f6\u8bbe\u7f6e\u5b57\u4f53\u5927\u5c0f\uff1f<\/strong><br \/>\u4f7f\u7528ReportLab\u5e93\u751f\u6210PDF\u6587\u4ef6\u65f6\uff0c\u53ef\u4ee5\u901a\u8fc7<code>setFont<\/code>\u65b9\u6cd5\u6765\u8bbe\u7f6e\u5b57\u4f53\u548c\u5176\u5927\u5c0f\u3002\u793a\u4f8b\u4ee3\u7801\u5982\u4e0b\uff1a<\/p>\n<pre><code class=\"language-python\">from reportlab.lib.pagesizes import letter\nfrom reportlab.pdfgen import canvas\n\nc = canvas.Canvas(&quot;example.pdf&quot;, pagesize=letter)\nc.setFont(&quot;Helvetica&quot;, 14)  # \u8bbe\u7f6e\u5b57\u4f53\u4e3aHelvetica\uff0c\u5927\u5c0f\u4e3a14\nc.drawString(100, 750, &quot;Hello, PDF!&quot;)\nc.save()\n<\/code><\/pre>\n<p>\u8fd9\u5c06\u521b\u5efa\u4e00\u4e2a\u5305\u542b\u6307\u5b9a\u5b57\u4f53\u548c\u5927\u5c0f\u6587\u672c\u7684PDF\u6587\u4ef6\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"\u5728Python 3.7\u4e2d\u66f4\u6539\u5b57\u4f53\u5927\u5c0f\u7684\u65b9\u6cd5\u6709\u591a\u79cd\uff0c\u5305\u62ec\u4f7f\u7528Tkinter\u5e93\u3001Matplotlib\u5e93\u3001Pygam [&hellip;]","protected":false},"author":3,"featured_media":1071597,"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\/1071590"}],"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=1071590"}],"version-history":[{"count":"1","href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1071590\/revisions"}],"predecessor-version":[{"id":1071599,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1071590\/revisions\/1071599"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media\/1071597"}],"wp:attachment":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media?parent=1071590"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/categories?post=1071590"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/tags?post=1071590"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}