{"id":86747,"date":"2023-01-23T09:00:36","date_gmt":"2023-01-23T03:30:36","guid":{"rendered":"https:\/\/techvidvan.com\/tutorials\/?p=86747"},"modified":"2023-01-23T09:00:36","modified_gmt":"2023-01-23T03:30:36","slug":"python-tools","status":"publish","type":"post","link":"https:\/\/techvidvan.com\/tutorials\/python-tools\/","title":{"rendered":"Top 10 Amazing Python Tools To Make Your Life Easier"},"content":{"rendered":"<p><span style=\"font-weight: 400\">As a developer, there are moments when I feel as though my list of sprint chores is never-ending. Many of the duties frequently recur, which contributes to the issue. Python Tools have a role in this. Python is a fantastic all-purpose language that is highly powerful yet reads effortlessly (nearly like English). There are so many Python tools, libraries, and supported IDEs that you can discover a package to help solve your difficulty in dealing with those repeating tasks. Additionally, Python provides excellent community support if you can&#8217;t discover it on your own. <\/span><span style=\"font-weight: 400\">This post highlights a few Python tools I always have on hand to help me with the major chores I need to complete regularly, making my life easier. Let&#8217;s start now.<\/span><\/p>\n<h3>Top Python Tools<\/h3>\n<h4><span style=\"font-weight: 400\">1. Simple Web Frameworks with Flask<\/span><\/h4>\n<p><span style=\"font-weight: 400\">You must configure a web server. Have two seconds to spare? Because it takes that long to launch a basic Python web server:<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">python -m http.server 8000<\/pre>\n<p><span style=\"font-weight: 400\">That&#8217;s all there is to it; now your browser can connect to a functioning server. But this might be too straightforward for a small web application. Bring on Flask.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Python was used to create the micro web framework Flask. Its lack of a database abstraction layer, form validations, and mail support makes it a &#8220;micro&#8221; application. As a result, it&#8217;s ideal if you only want to serve up a straightforward API. Fortunately, it includes a sizable collection of extensions you can plug and play with.\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400\">Use the script below to set up a Flask API server:<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">from flask import Flask\nfrom flask import jsonify\n   \napp = Flask(__name__) \n  \n@app.route('\/')\ndef root():\n    return jsonify\n    (\n        app_name=\"Best python tool Flask\",\n        app_user=\"Enter user here\"\n    )\n\n<\/pre>\n<p>You can easily develop it on your personal computer if you want to. Run this program by typing python server.py and saving it as server.py.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">FLASK_APP=flask.py flask run<\/pre>\n<p><span style=\"font-weight: 400\">Finally, the following JSON should appear when you open the URL in a browser:<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">{\"app_name\" : \"Top 10 Python Tools\", \"app_user\" : \"ActiveState\"}<\/pre>\n<h4><span style=\"font-weight: 400\">2. API Calls with Requests<\/span><\/h4>\n<p><span style=\"font-weight: 400\">Requests is a strong HTTP library. With it, virtually anything that involves HTTP requests can be automated, including API calls, so you don&#8217;t have to make them manually using a rest client. In addition, it also has helpful features like handling sessions, JSON\/XML parsing, and authorization handling.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Let&#8217;s take a quick look at an instance of using the GitHub API, which is protected by an authorization wall:<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">import requests\n    requests.get('https:\/\/api.github.com\/user')\n    \n    ==&gt; &lt;Response [401]&gt;\n<\/pre>\n<p><span style=\"font-weight: 400\">Because we attempted to access the API without providing the necessary authorization credentials, we received a 401 &#8220;Unauthorized Error&#8221; message. So let&#8217;s give it another go and ensure you enter a legitimate username and password.<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">import requests\nrequests.get('https:\/\/api.github.com\/user', auth=('user', 'pass'))\n\n==&gt; &lt;Response [200]&gt;\n<\/pre>\n<p><span style=\"font-weight: 400\">This time, a 200 &#8220;Ok\/Success&#8221; message is received. The Requests package provides both deep and broad functionality. Consult the documentation for more details regarding its capabilities.<\/span><\/p>\n<h4><span style=\"font-weight: 400\">3. Command Line Packaging with Click As developers<\/span><\/h4>\n<p><span style=\"font-weight: 400\">We create a lot of scripts to simplify our work, such as those that get external IP addresses and ping servers to see if they&#8217;re still running or looking up the time. So, naturally, you must navigate to the script&#8217;s directory before running it. Want to make a point? Ignore it! You&#8217;ll give up once you&#8217;ve parsed every user choice.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Any Python script exposing functionality to the command line can be packaged using Click. Once packaged, your script is immediately accessible from the terminal.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Let&#8217;s examine an illustration:<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">\"\"\"It's a program that Repeats NAME with greet for a total of x times.\"\"\"\n    import click\n    \n    @click.command()\n    @click.option('--x', default=1, help='write your number here.')\n    @click.option('--name', prompt='Name -',\n                  help='The person you want to greet is Name.')\n    def Welcome to (x, name):\n        \n        for x in range(x):\n            click.echo(Welcome to %s!' % name)\n    \n    if __name__ == '__main__':\n        Welcome to()\n<\/pre>\n<p><span style=\"font-weight: 400\">The method option makes the command aware of the names of its arguments. Here, the arguments count and name are both in the open.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Finally, we&#8217;ll refer to our script as follows:<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">python hello.py --x=5\n\nYour name: TechVidvan\nWelcome to TechVidvan!\nWelcome to TechVidvan!\nWelcome to TechVidvan!\nWelcome to TechVidvan!\n<\/pre>\n<h4><span style=\"font-weight: 400\">4. Automated Testing with Selenium<\/span><\/h4>\n<p><span style=\"font-weight: 400\">A testing framework called Selenium is used to create automated test cases. The Python package offers API-like access to practically all Selenium functions, despite being designed in Java.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Selenium can automate various operations on your computer, including launching a browser, dragging and dropping files, and much more. Selenium is generally used to automate the testing of an application&#8217;s user interface.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Let&#8217;s take a brief look at an example that demonstrates how to launch a browser and access Google&#8217;s home page:<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">from selenium import webdriver \nimport time \n  \nbrowser = webdriver.Chrome(executable_path =\"C:\\Program Files (x86)\\Google\\Chrome\\chromedriver.exe\") \n  \nwebsite_URL =\"https:\/\/www.google.co.in\/\"\nbrower.get(website_URL) \n\nrefreshrate = int(15) \n  \n# This would keep running until you stop the compiler. \nwhile True: \n    time.sleep(refreshrate) \n    browser.refresh() \n<\/pre>\n<p><span style=\"font-weight: 400\">The Google homepage is now refreshed in the browser every 15 seconds by this script.<\/span><\/p>\n<h4><span style=\"font-weight: 400\">5. Data Analytics with Pandas<\/span><\/h4>\n<p><span style=\"font-weight: 400\">Pandas is a straightforward but effective data analytics tool. It may be used to read and clean up massive amounts of data and analyze it statistically. Furthermore, the data can be instantly generated into summaries or even divided.<\/span><\/p>\n<p><span style=\"font-weight: 400\">When you&#8217;re done with the analysis, you may use third-party libraries like Matplotlib to show the results.<\/span><\/p>\n<p><span style=\"font-weight: 400\">The nice thing about Pandas is that NumPy, another fantastic data analysis tool used to apply numerical approaches to data, is built on top of it. The majority of NumPy methods are, therefore, functions that are already present in Pandas.<\/span><\/p>\n<h4><span style=\"font-weight: 400\">6. Web Scraping with Scrapy<\/span><\/h4>\n<p><span style=\"font-weight: 400\">You can &#8220;scrape&#8221; or extract information from web pages using the powerful application known as Scrapy. However, it is not efficient to manually extract significant volumes of information from numerous websites or web pages. Instead, programmers use &#8220;spiders&#8221; or &#8220;crawlers,&#8221; which scrape data from online pages, to automate the process.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Using HTML elements or CSS classes, Scrapy offers simple ways and packages for information extraction. The following command will launch the Scrapy Shell, an interactive mode that enables you to experiment with various techniques:<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">scrapy shell<\/pre>\n<p><span style=\"font-weight: 400\">Let&#8217;s attempt to determine the worth of the search button on the Google homepage as a basic experiment. To accomplish this, we first locate the class that the button belongs to. The class is &#8220;gb1,&#8221; as shown with a simple &#8220;Inspect Element&#8221; command.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Do the following in the interactive Scrapy Shell:<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">response = fetch(\"https:\/\/google.com\")\n   response.css(\".gb1::text\").extract_first()\n   \n   ==&gt; \"Search\"\n<\/pre>\n<h4><span style=\"font-weight: 400\">7. Generating Fake Data with Faker<\/span><\/h4>\n<p><span style=\"font-weight: 400\">Without a doubt, this is the most practical tool I have. I only use Faker whenever I need to add dummy data or fill in the blanks on websites.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Using it, you can create fictitious names, addresses, descriptions, and more! For instance, the script that follows creates a contact entry with a name, address, and brief description:<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">from faker import Faker\nfake = Faker()\n\nfake.name()\n# 'Lucy Cechtelar'\n\nfake.address()\n# '426 Jordy Lodge\n#  Cartwrightshire, SC 88120-6700'\n\nfake.text()\n# 'Sint velit eveniet. Rerum atque repellat voluptatem quia rerum. Numquam excepturi\n#  beatae sint laudantium consequatur. Magni occaecati itaque sint et sit tempore. Nesciunt\n#  amet quidem. Iusto deleniti cum autem ad quia aperiam.\n#  A consectetur quos aliquam. In iste aliquid et aut similique suscipit. Consequatur qui\n#  quaerat iste minus hic expedita. Consequuntur error magni et laboriosam. Aut aspernatur\n<\/pre>\n<h4><span style=\"font-weight: 400\">8. Image Processing with Pillow<\/span><\/h4>\n<p><span style=\"font-weight: 400\">I frequently have to alter photographs to suit my needs better. For example, I might blur specifics, combine several images, or produce thumbnails. My go-to tool as a developer is &#8220;Pillow,&#8221; a potent Python image processing tool, rather than a GUI program like Photoshop.<\/span><\/p>\n<p><span style=\"font-weight: 400\">I frequently mix my Pillow scripts with Click and then use the command line to access them. Useful for accelerating routine image processing activities.<\/span><\/p>\n<p><span style=\"font-weight: 400\">Here is a little illustration of how to blur images:<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">from PIL import Image, ImageFilter\n  \n  try:\n      original = Image.open(\"Logo.png\")\n  \n      # Blur the image\n      blurred = original.filter(ImageFilter.BLUR)\n  \n      # Display both images\n      original.show()\n      blurred.show()\n  \n      blurred.save(\"blurred.png\")\n  \n  except:\n      print \"Unable to load image\"\n<\/pre>\n<h4><span style=\"font-weight: 400\">9. Date and Time Parsing with Pendulum<\/span><\/h4>\n<p><span style=\"font-weight: 400\">Working with date and time formats is never enjoyable. Working with different time zones and odd hours is something I despise. The pendulum is a powerhouse, though the built-in Python DateTime package performs a respectable job. It offers a quicker processing interface that is more intuitive. It enables formatting, DateTime operations, and timezone conversion.<\/span><\/p>\n<p><span style=\"font-weight: 400\">To adjust UTC and obtain the time in 3 different time zones, you need to enter this:<\/span><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">from datetime import datetime\n    import pendulum\n    \n    utc = pendulum.timezone('UTC')\n    pst = pendulum.timezone('America\/Los_Angeles')\n    ist = pendulum.timezone('Asia\/Calcutta')\n<\/pre>\n<h4><span style=\"font-weight: 400\">10. Code Template Creation with CookieCutter<\/span><\/h4>\n<p><span style=\"font-weight: 400\">It&#8217;s a glorified cheat sheet, Cookiecutter! It is a command-line tool that generates projects from project templates known as &#8220;cookiecutters&#8221;.<\/span><\/p>\n<p><span style=\"font-weight: 400\">You can use it to create project templates and share them with your team (or open-source them). All team members can now utilize your project as the foundation for their own, making only the necessary changes to meet their needs.<\/span><\/p>\n<p><span style=\"font-weight: 400\">If you manage a Python project or are interested in publishing a project to PyPI, Audrey\/cookiecutter-package is one of the most popular cookie cutters. You can use it to obtain a &#8220;skeleton&#8221; Python package that includes tests, distributions, and documentation. You can then modify this package to create your own to finish your project and even have it automatically published to PyPI. <\/span><\/p>\n<h3><span style=\"font-weight: 400\">Conclusion<\/span><\/h3>\n<p><span style=\"font-weight: 400\">With TechVidvan, Getting to know a programming language&#8217;s inner workings is the best approach to mastering it. These are some of the most common developer tools you need to be familiar with, regardless of your degree of Python expertise or how long you&#8217;ve been using it. These are the Top 10 Python Tools that will improve the efficiency of your daily tasks.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>As a developer, there are moments when I feel as though my list of sprint chores is never-ending. Many of the duties frequently recur, which contributes to the issue. Python Tools have a role&#46;&#46;&#46;<\/p>\n","protected":false},"author":1,"featured_media":86906,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1053],"tags":[4815],"class_list":["post-86747","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python","tag-python-tools"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Top 10 Amazing Python Tools To Make Your Life Easier - TechVidvan<\/title>\n<meta name=\"description\" content=\"Check the Top 10 Python Tools that will improve the efficiency of your daily tasks in Python. These are must for every Python Developer.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/techvidvan.com\/tutorials\/python-tools\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Top 10 Amazing Python Tools To Make Your Life Easier - TechVidvan\" \/>\n<meta property=\"og:description\" content=\"Check the Top 10 Python Tools that will improve the efficiency of your daily tasks in Python. These are must for every Python Developer.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/techvidvan.com\/tutorials\/python-tools\/\" \/>\n<meta property=\"og:site_name\" content=\"TechVidvan\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/TechVidvan\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-23T03:30:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2023\/01\/top-10-amazing-pytho-tools.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"TechVidvan Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@vidvantech\" \/>\n<meta name=\"twitter:site\" content=\"@vidvantech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"TechVidvan Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Top 10 Amazing Python Tools To Make Your Life Easier - TechVidvan","description":"Check the Top 10 Python Tools that will improve the efficiency of your daily tasks in Python. These are must for every Python Developer.","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:\/\/techvidvan.com\/tutorials\/python-tools\/","og_locale":"en_US","og_type":"article","og_title":"Top 10 Amazing Python Tools To Make Your Life Easier - TechVidvan","og_description":"Check the Top 10 Python Tools that will improve the efficiency of your daily tasks in Python. These are must for every Python Developer.","og_url":"https:\/\/techvidvan.com\/tutorials\/python-tools\/","og_site_name":"TechVidvan","article_publisher":"https:\/\/www.facebook.com\/TechVidvan\/","article_published_time":"2023-01-23T03:30:36+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2023\/01\/top-10-amazing-pytho-tools.webp","type":"image\/webp"}],"author":"TechVidvan Team","twitter_card":"summary_large_image","twitter_creator":"@vidvantech","twitter_site":"@vidvantech","twitter_misc":{"Written by":"TechVidvan Team","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/techvidvan.com\/tutorials\/python-tools\/#article","isPartOf":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-tools\/"},"author":{"name":"TechVidvan Team","@id":"https:\/\/techvidvan.com\/tutorials\/#\/schema\/person\/e9c26e74dd3d87421f7ada9433b8cd22"},"headline":"Top 10 Amazing Python Tools To Make Your Life Easier","datePublished":"2023-01-23T03:30:36+00:00","mainEntityOfPage":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-tools\/"},"wordCount":1327,"commentCount":0,"publisher":{"@id":"https:\/\/techvidvan.com\/tutorials\/#organization"},"image":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-tools\/#primaryimage"},"thumbnailUrl":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2023\/01\/top-10-amazing-pytho-tools.webp","keywords":["Python Tools"],"articleSection":["Python Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/techvidvan.com\/tutorials\/python-tools\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/techvidvan.com\/tutorials\/python-tools\/","url":"https:\/\/techvidvan.com\/tutorials\/python-tools\/","name":"Top 10 Amazing Python Tools To Make Your Life Easier - TechVidvan","isPartOf":{"@id":"https:\/\/techvidvan.com\/tutorials\/#website"},"primaryImageOfPage":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-tools\/#primaryimage"},"image":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-tools\/#primaryimage"},"thumbnailUrl":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2023\/01\/top-10-amazing-pytho-tools.webp","datePublished":"2023-01-23T03:30:36+00:00","description":"Check the Top 10 Python Tools that will improve the efficiency of your daily tasks in Python. These are must for every Python Developer.","breadcrumb":{"@id":"https:\/\/techvidvan.com\/tutorials\/python-tools\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/techvidvan.com\/tutorials\/python-tools\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techvidvan.com\/tutorials\/python-tools\/#primaryimage","url":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2023\/01\/top-10-amazing-pytho-tools.webp","contentUrl":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2023\/01\/top-10-amazing-pytho-tools.webp","width":1200,"height":628,"caption":"top 10 amazing python tools"},{"@type":"BreadcrumbList","@id":"https:\/\/techvidvan.com\/tutorials\/python-tools\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/techvidvan.com\/tutorials\/"},{"@type":"ListItem","position":2,"name":"Top 10 Amazing Python Tools To Make Your Life Easier"}]},{"@type":"WebSite","@id":"https:\/\/techvidvan.com\/tutorials\/#website","url":"https:\/\/techvidvan.com\/tutorials\/","name":"TechVidvan Blogs","description":"","publisher":{"@id":"https:\/\/techvidvan.com\/tutorials\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/techvidvan.com\/tutorials\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/techvidvan.com\/tutorials\/#organization","name":"TechVidvan","url":"https:\/\/techvidvan.com\/tutorials\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techvidvan.com\/tutorials\/#\/schema\/logo\/image\/","url":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2024\/03\/techvidvan-logo-200x50-1.webp","contentUrl":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2024\/03\/techvidvan-logo-200x50-1.webp","width":200,"height":50,"caption":"TechVidvan"},"image":{"@id":"https:\/\/techvidvan.com\/tutorials\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/TechVidvan\/","https:\/\/x.com\/vidvantech"]},{"@type":"Person","@id":"https:\/\/techvidvan.com\/tutorials\/#\/schema\/person\/e9c26e74dd3d87421f7ada9433b8cd22","name":"TechVidvan Team","description":"The TechVidvan Team delivers practical, beginner-friendly tutorials on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. Our experts are here to help you upskill and excel in today\u2019s tech industry."}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/posts\/86747","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/comments?post=86747"}],"version-history":[{"count":0,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/posts\/86747\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/media\/86906"}],"wp:attachment":[{"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/media?parent=86747"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/categories?post=86747"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/tags?post=86747"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}