{"id":7776,"date":"2023-11-02T20:38:27","date_gmt":"2023-11-02T15:08:27","guid":{"rendered":"https:\/\/python-programs.com\/?p=7776"},"modified":"2023-11-10T12:12:33","modified_gmt":"2023-11-10T06:42:33","slug":"python-how-to-get-the-list-of-all-files-in-a-zip-archive","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/","title":{"rendered":"Python : How to get the list of all files in a zip archive"},"content":{"rendered":"

How to get the list of all files in a zip archive in Python<\/h2>\n

In this article we will learn about various ways to get detail about all files in a zip archive like file\u2019s name, size etc.<\/p>\n

How to find name of all the files in the ZIP archive using ZipFile.namelist() :<\/h3>\n

ZipFile<\/span><\/span> class from zipfile<\/code> module provide a member function i.e. ZipFile.namelist()<\/code> to get the names of all files present it.<\/p>\n

from zipfile import ZipFile\r\ndef main():\r\n    # To Create a ZipFile Object and load Document.zip in it\r\n    with ZipFile('DocumentDir.zip', 'r') as zip_Obj:\r\n       # To get list of files names in zip\r\n       fileslist = zip_Obj.namelist()\r\n       # Iterate over the fileslist names in given list & print them\r\n       for ele in fileslist:\r\n           print(ele)\r\nif __name__ == '__main__':\r\n    main()\r\n<\/pre>\n
Output :\r\nDocumentDir\/doc1.csv\r\nDocumentDir\/doc2.csv\r\nDocumentDir\/test.csv<\/pre>\n

Find detail info like name, size etc of the files in a Zip file using ZipFile.infolist() :<\/h3>\n

ZipFile<\/code><\/code>\u00a0class from zipfile<\/code> module also provide a member function i.e. ZipFile.infolist()<\/code> to get the details of each entries present in zipfile.<\/p>\n

Here a list of ZipInfo <\/em>objects is returned where each object has certain information like name, permission, size etc.<\/p>\n

from zipfile import ZipFile\r\ndef main():\r\n        # To Create a ZipFile Object and load Document.zip in it\r\n    with ZipFile('DocumentDir.zip', 'r') as zip_Obj:\r\n        # Get list of ZipInfo objects\r\n        fileslist = zip_Obj.infolist()\r\n        # Iterate of over object\u2019s list and also to access members of the object\r\n        for ele in fileslist:\r\n            print(ele.filename, ' : ', ele.file_size, ' : ', ele.date_time, ' : ', ele.compress_size)\r\nif __name__ == '__main__':\r\n    main()\r\n<\/pre>\n
Output :\r\nDocumentDir\/doc1.csv :\u00a0 2759\u00a0 :\u00a0 (2021, 01, 03, 21, 00, 02)\u00a0 :\u00a0 2759\r\nDocumentDir\/doc2.csv :\u00a0 2856\u00a0 :\u00a0 (2021, 01, 25, 13, 45, 58)\u00a0 :\u00a0 2856\r\nDocumentDir\/test.csv\u00a0 :\u00a0 3458\u00a0 :\u00a0 (2021, 02, 20, 20, 20, 41)\u00a0 :\u00a0 3458<\/pre>\n

Details of ZIP archive to std.out using ZipFile.printdir() :<\/h3>\n

ZipFile<\/code><\/code>\u00a0class from zipfile<\/code> module also provide a member function i.e. ZipFile.printdir()<\/code> which can print the contents of zip file as table.<\/p>\n

from zipfile import ZipFile\r\ndef main():\r\n    # To Create a ZipFile Object and load Document.zip in it\r\n    with ZipFile('DocumentDir.zip', 'r') as zip_Obj:\r\n        zip_Obj.printdir()\r\nif __name__ == '__main__':\r\n    main()\r\n<\/pre>\n
Output :\r\nFile Name\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Modified\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0Size\r\nDocumentDir\/doc1.csv\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 2021-01-03 21:00:02\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 2759\r\nDocumentDir\/doc2.csv\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 2021-01-25 13:45:58\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 2856\r\nDocumentDir\/test.csv\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 2021-02-20 20:20:41\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 3458<\/pre>\n

 <\/p>\n

 <\/p>\n","protected":false},"excerpt":{"rendered":"

How to get the list of all files in a zip archive in Python In this article we will learn about various ways to get detail about all files in a zip archive like file\u2019s name, size etc. How to find name of all the files in the ZIP archive using ZipFile.namelist() : ZipFile class …<\/p>\n

Python : How to get the list of all files in a zip archive<\/span> Read More »<\/a><\/p>\n","protected":false},"author":9,"featured_media":8051,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"spay_email":"","jetpack_publicize_message":"","jetpack_is_tweetstorm":false,"jetpack_publicize_feature_enabled":true},"categories":[5],"tags":[],"yoast_head":"\nPython : How to get the list of all files in a zip archive - Python Programs<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python : How to get the list of all files in a zip archive - Python Programs\" \/>\n<meta property=\"og:description\" content=\"How to get the list of all files in a zip archive in Python In this article we will learn about various ways to get detail about all files in a zip archive like file\u2019s name, size etc. How to find name of all the files in the ZIP archive using ZipFile.namelist() : ZipFile class … Python : How to get the list of all files in a zip archive Read More »\" \/>\n<meta property=\"og:url\" content=\"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/\" \/>\n<meta property=\"og:site_name\" content=\"Python Programs\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/btechgeeks\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-02T15:08:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-10T06:42:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/06\/How-to-get-the-list-of-all-files-in-a-zip-archive.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@btech_geeks\" \/>\n<meta name=\"twitter:site\" content=\"@btech_geeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Satyabrata Jena\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/python-programs.com\/#organization\",\"name\":\"BTech Geeks\",\"url\":\"https:\/\/python-programs.com\/\",\"sameAs\":[\"https:\/\/www.instagram.com\/btechgeeks\/\",\"https:\/\/www.linkedin.com\/in\/btechgeeks\",\"https:\/\/in.pinterest.com\/btechgeek\/\",\"https:\/\/www.youtube.com\/channel\/UC9MlCqdJ3lKqz2p5114SDIg\",\"https:\/\/www.facebook.com\/btechgeeks\",\"https:\/\/twitter.com\/btech_geeks\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/python-programs.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/python-programs.com\/wp-content\/uploads\/2020\/11\/BTechGeeks.png\",\"contentUrl\":\"https:\/\/python-programs.com\/wp-content\/uploads\/2020\/11\/BTechGeeks.png\",\"width\":350,\"height\":70,\"caption\":\"BTech Geeks\"},\"image\":{\"@id\":\"https:\/\/python-programs.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/python-programs.com\/#website\",\"url\":\"https:\/\/python-programs.com\/\",\"name\":\"Python Programs\",\"description\":\"Python Programs with Examples, How To Guides on Python\",\"publisher\":{\"@id\":\"https:\/\/python-programs.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/python-programs.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#primaryimage\",\"url\":\"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/06\/How-to-get-the-list-of-all-files-in-a-zip-archive.png\",\"contentUrl\":\"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/06\/How-to-get-the-list-of-all-files-in-a-zip-archive.png\",\"width\":1280,\"height\":720,\"caption\":\"How to get the list of all files in a zip archive\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#webpage\",\"url\":\"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/\",\"name\":\"Python : How to get the list of all files in a zip archive - Python Programs\",\"isPartOf\":{\"@id\":\"https:\/\/python-programs.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#primaryimage\"},\"datePublished\":\"2023-11-02T15:08:27+00:00\",\"dateModified\":\"2023-11-10T06:42:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/python-programs.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python : How to get the list of all files in a zip archive\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#webpage\"},\"author\":{\"@id\":\"https:\/\/python-programs.com\/#\/schema\/person\/0f6d731bda7051ce3586f71299f391cd\"},\"headline\":\"Python : How to get the list of all files in a zip archive\",\"datePublished\":\"2023-11-02T15:08:27+00:00\",\"dateModified\":\"2023-11-10T06:42:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#webpage\"},\"wordCount\":174,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/python-programs.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/06\/How-to-get-the-list-of-all-files-in-a-zip-archive.png\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#respond\"]}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/python-programs.com\/#\/schema\/person\/0f6d731bda7051ce3586f71299f391cd\",\"name\":\"Satyabrata Jena\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/python-programs.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c1bf8033ec357d085f41815bee1625cc?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c1bf8033ec357d085f41815bee1625cc?s=96&d=mm&r=g\",\"caption\":\"Satyabrata Jena\"},\"url\":\"https:\/\/python-programs.com\/author\/satyabrata\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Python : How to get the list of all files in a zip archive - Python Programs","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/","og_locale":"en_US","og_type":"article","og_title":"Python : How to get the list of all files in a zip archive - Python Programs","og_description":"How to get the list of all files in a zip archive in Python In this article we will learn about various ways to get detail about all files in a zip archive like file\u2019s name, size etc. How to find name of all the files in the ZIP archive using ZipFile.namelist() : ZipFile class … Python : How to get the list of all files in a zip archive Read More »","og_url":"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/","og_site_name":"Python Programs","article_publisher":"https:\/\/www.facebook.com\/btechgeeks","article_published_time":"2023-11-02T15:08:27+00:00","article_modified_time":"2023-11-10T06:42:33+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/06\/How-to-get-the-list-of-all-files-in-a-zip-archive.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_creator":"@btech_geeks","twitter_site":"@btech_geeks","twitter_misc":{"Written by":"Satyabrata Jena","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/python-programs.com\/#organization","name":"BTech Geeks","url":"https:\/\/python-programs.com\/","sameAs":["https:\/\/www.instagram.com\/btechgeeks\/","https:\/\/www.linkedin.com\/in\/btechgeeks","https:\/\/in.pinterest.com\/btechgeek\/","https:\/\/www.youtube.com\/channel\/UC9MlCqdJ3lKqz2p5114SDIg","https:\/\/www.facebook.com\/btechgeeks","https:\/\/twitter.com\/btech_geeks"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/python-programs.com\/#\/schema\/logo\/image\/","url":"https:\/\/python-programs.com\/wp-content\/uploads\/2020\/11\/BTechGeeks.png","contentUrl":"https:\/\/python-programs.com\/wp-content\/uploads\/2020\/11\/BTechGeeks.png","width":350,"height":70,"caption":"BTech Geeks"},"image":{"@id":"https:\/\/python-programs.com\/#\/schema\/logo\/image\/"}},{"@type":"WebSite","@id":"https:\/\/python-programs.com\/#website","url":"https:\/\/python-programs.com\/","name":"Python Programs","description":"Python Programs with Examples, How To Guides on Python","publisher":{"@id":"https:\/\/python-programs.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/python-programs.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#primaryimage","url":"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/06\/How-to-get-the-list-of-all-files-in-a-zip-archive.png","contentUrl":"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/06\/How-to-get-the-list-of-all-files-in-a-zip-archive.png","width":1280,"height":720,"caption":"How to get the list of all files in a zip archive"},{"@type":"WebPage","@id":"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#webpage","url":"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/","name":"Python : How to get the list of all files in a zip archive - Python Programs","isPartOf":{"@id":"https:\/\/python-programs.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#primaryimage"},"datePublished":"2023-11-02T15:08:27+00:00","dateModified":"2023-11-10T06:42:33+00:00","breadcrumb":{"@id":"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/python-programs.com\/"},{"@type":"ListItem","position":2,"name":"Python : How to get the list of all files in a zip archive"}]},{"@type":"Article","@id":"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#article","isPartOf":{"@id":"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#webpage"},"author":{"@id":"https:\/\/python-programs.com\/#\/schema\/person\/0f6d731bda7051ce3586f71299f391cd"},"headline":"Python : How to get the list of all files in a zip archive","datePublished":"2023-11-02T15:08:27+00:00","dateModified":"2023-11-10T06:42:33+00:00","mainEntityOfPage":{"@id":"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#webpage"},"wordCount":174,"commentCount":0,"publisher":{"@id":"https:\/\/python-programs.com\/#organization"},"image":{"@id":"https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#primaryimage"},"thumbnailUrl":"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/06\/How-to-get-the-list-of-all-files-in-a-zip-archive.png","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/python-programs.com\/python-how-to-get-the-list-of-all-files-in-a-zip-archive\/#respond"]}]},{"@type":"Person","@id":"https:\/\/python-programs.com\/#\/schema\/person\/0f6d731bda7051ce3586f71299f391cd","name":"Satyabrata Jena","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/python-programs.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c1bf8033ec357d085f41815bee1625cc?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c1bf8033ec357d085f41815bee1625cc?s=96&d=mm&r=g","caption":"Satyabrata Jena"},"url":"https:\/\/python-programs.com\/author\/satyabrata\/"}]}},"jetpack_featured_media_url":"https:\/\/python-programs.com\/wp-content\/uploads\/2021\/06\/How-to-get-the-list-of-all-files-in-a-zip-archive.png","_links":{"self":[{"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/posts\/7776"}],"collection":[{"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/comments?post=7776"}],"version-history":[{"count":2,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/posts\/7776\/revisions"}],"predecessor-version":[{"id":7778,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/posts\/7776\/revisions\/7778"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/media\/8051"}],"wp:attachment":[{"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/media?parent=7776"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/categories?post=7776"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/tags?post=7776"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}