{"id":4038,"date":"2023-11-04T23:14:01","date_gmt":"2023-11-04T23:14:01","guid":{"rendered":"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/"},"modified":"2023-11-05T05:48:23","modified_gmt":"2023-11-05T05:48:23","slug":"how-to-use-spacy-for-natural-language-processing-in-python","status":"publish","type":"post","link":"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/","title":{"rendered":"How to Use spaCy for Natural Language Processing in Python"},"content":{"rendered":"

Natural Language Processing (NLP) is a field of artificial intelligence that focuses on the interaction between computers and human language. It involves tasks such as text classification, named entity recognition, part-of-speech tagging, and more.<\/p>\n

spaCy is a popular open-source library for NLP in Python. It provides a simple and efficient way to process and analyze text data, making it a powerful tool for various NLP applications. In this tutorial, we will explore how to use spaCy for natural language processing tasks.<\/p>\n

Installation<\/h2>\n

To start using spaCy, you need to install it first. Open your terminal and run the following command:<\/p>\n

pip install spacy\n<\/code><\/pre>\n

Once the installation is complete, you can download and install the language model you want to work with. spaCy supports various models for different languages. For example, if you want to work with English text, you can download the English language model using the following command:<\/p>\n

python -m spacy download en_core_web_sm\n<\/code><\/pre>\n

This will download a small English language model (sm) that is suitable for most general NLP tasks. You can find other language models on the spaCy website.<\/p>\n

Basic Usage<\/h2>\n

Let’s start with a simple example to understand the basic usage of spaCy. Open a Python interpreter and run the following code:<\/p>\n

import spacy\n\n# Load the language model\nnlp = spacy.load(\"en_core_web_sm\")\n\n# Process a text\ntext = \"Hello, world! This is a sample sentence.\"\ndoc = nlp(text)\n\n# Print the tokens\nfor token in doc:\n    print(token.text)\n<\/code><\/pre>\n

When you run the code, you should see the following output:<\/p>\n

Hello\n,\nworld\n!\nThis\nis\na\nsample\nsentence\n.\n<\/code><\/pre>\n

Here’s what the code does:<\/p>\n

    \n
  1. Import the spacy<\/code> module.<\/li>\n
  2. Load the English language model using spacy.load(\"en_core_web_sm\")<\/code>.<\/li>\n
  3. Create a Doc<\/code> object by processing the given text with the language model.<\/li>\n
  4. Iterate over the tokens in the document and print their text.<\/li>\n<\/ol>\n

    In spaCy, a Doc<\/code> object represents a sequence of tokens, which can be words, punctuation marks, or other meaningful elements. We can access various information and properties of the tokens, such as their text, part-of-speech tag, and dependency relation.<\/p>\n

    Tokenization<\/h2>\n

    Tokenization is the process of splitting a text into individual tokens. In spaCy, tokenization is automatically performed when we process a text with a language model. Each token represents a meaningful unit of the text, such as a word or a punctuation mark.<\/p>\n

    Let’s modify the previous example to print additional information about the tokens:<\/p>\n

    import spacy\n\nnlp = spacy.load(\"en_core_web_sm\")\n\ntext = \"Hello, world! This is a sample sentence.\"\ndoc = nlp(text)\n\nfor token in doc:\n    print(token.text, token.pos_, token.dep_)\n<\/code><\/pre>\n

    When you run the code, you should see the following output:<\/p>\n

    Hello INTJ intj\n, PUNCT punct\nworld NOUN nsubj\n! PUNCT punct\nThis DET nsubj\nis AUX ROOT\na DET det\nsample ADJ amod\nsentence NOUN attr\n. PUNCT punct\n<\/code><\/pre>\n

    Here’s what the modified code does:<\/p>\n

      \n
    1. Import the spacy<\/code> module.<\/li>\n
    2. Load the English language model using spacy.load(\"en_core_web_sm\")<\/code>.<\/li>\n
    3. Create a Doc<\/code> object by processing the given text with the language model.<\/li>\n
    4. Iterate over the tokens in the document and print their text, part-of-speech tag, and dependency relation.<\/li>\n<\/ol>\n

      In the output, you can see that each token is now accompanied by its part-of-speech tag and dependency relation. The part-of-speech tag (pos_) describes the grammatical role of the token, such as noun, verb, adjective, etc. The dependency relation (dep_) describes the syntactic relationship between the token and its parent in the parse tree.<\/p>\n

      Part-of-Speech Tagging<\/h2>\n

      Part-of-speech tagging is the process of assigning a part-of-speech tag to each word in a text. A part-of-speech tag represents the grammatical category of a word, such as noun, verb, adjective, etc. spaCy provides an easy way to perform part-of-speech tagging using its language models.<\/p>\n

      Let’s see an example of part-of-speech tagging using spaCy:<\/p>\n

      import spacy\n\nnlp = spacy.load(\"en_core_web_sm\")\n\ntext = \"I love eating pizza.\"\ndoc = nlp(text)\n\nfor token in doc:\n    print(token.text, token.pos_)\n<\/code><\/pre>\n

      When you run the code, you should see the following output:<\/p>\n

      I PRON\nlove VERB\neating VERB\npizza NOUN\n. PUNCT\n<\/code><\/pre>\n

      Here’s what the code does:<\/p>\n

        \n
      1. Import the spacy<\/code> module.<\/li>\n
      2. Load the English language model using spacy.load(\"en_core_web_sm\")<\/code>.<\/li>\n
      3. Create a Doc<\/code> object by processing the given text with the language model.<\/li>\n
      4. Iterate over the tokens in the document and print their text and part-of-speech tag.<\/li>\n<\/ol>\n

        In spaCy, each token has a pos_<\/code> attribute that represents its part-of-speech tag. In the output, you can see that the words “I” and “pizza” are tagged as pronoun (PRON) and noun (NOUN), respectively.<\/p>\n

        Named Entity Recognition<\/h2>\n

        Named Entity Recognition (NER) is the process of identifying named entities in text and classifying them into predefined categories such as person names, organizations, locations, medical codes, time expressions, etc. spaCy provides a built-in approach to perform NER using its language models.<\/p>\n

        Let’s see an example of named entity recognition using spaCy:<\/p>\n

        import spacy\n\nnlp = spacy.load(\"en_core_web_sm\")\n\ntext = \"Apple is looking to buy a startup in the United States for $1 billion.\"\ndoc = nlp(text)\n\nfor ent in doc.ents:\n    print(ent.text, ent.label_)\n<\/code><\/pre>\n

        When you run the code, you should see the following output:<\/p>\n

        Apple ORG\nthe United States GPE\n$1 billion MONEY\n<\/code><\/pre>\n

        Here’s what the code does:<\/p>\n

          \n
        1. Import the spacy<\/code> module.<\/li>\n
        2. Load the English language model using spacy.load(\"en_core_web_sm\")<\/code>.<\/li>\n
        3. Create a Doc<\/code> object by processing the given text with the language model.<\/li>\n
        4. Iterate over the named entities in the document and print their text and label.<\/li>\n<\/ol>\n

          In spaCy, each named entity has a text<\/code> attribute that represents its text and a label_<\/code> attribute that represents its label. In the output, you can see that the named entities “Apple” and “the United States” are classified as an organization (ORG) and a geopolitical entity (GPE), respectively.<\/p>\n

          Dependency Parsing<\/h2>\n

          Dependency parsing is the process of analyzing the grammatical structure of a sentence to determine the relationships between words. It involves identifying the head (governing word) and dependent words, and classifying the syntactic relationship between them. spaCy provides a built-in approach to perform dependency parsing using its language models.<\/p>\n

          Let’s see an example of dependency parsing using spaCy:<\/p>\n

          import spacy\n\nnlp = spacy.load(\"en_core_web_sm\")\n\ntext = \"I have a cat named Max.\"\ndoc = nlp(text)\n\nfor token in doc:\n    print(token.text, token.dep_, token.head.text)\n<\/code><\/pre>\n

          When you run the code, you should see the following output:<\/p>\n

          I nsubj have\nhave ROOT have\na det cat\ncat dobj have\nnamed acl cat\nMax dobj named\n. punct have\n<\/code><\/pre>\n

          Here’s what the code does:<\/p>\n

            \n
          1. Import the spacy<\/code> module.<\/li>\n
          2. Load the English language model using spacy.load(\"en_core_web_sm\")<\/code>.<\/li>\n
          3. Create a Doc<\/code> object by processing the given text with the language model.<\/li>\n
          4. Iterate over the tokens in the document and print their text, dependency relation, and head text.<\/li>\n<\/ol>\n

            In spaCy, each token has a dep_<\/code> attribute that represents its dependency relation and a head<\/code> attribute that represents its head. In the output, you can see that the word “cat” is the direct object (dobj) of the verb “have”, and the word “Max” is the direct object (dobj) of the verb “named”.<\/p>\n

            Lemmatization<\/h2>\n

            Lemmatization is the process of reducing a word to its base or dictionary form, called a lemma. It allows us to group together different forms of a word and perform more accurate analysis of the text. spaCy provides a built-in lemmatizer that we can use to perform lemmatization.<\/p>\n

            Let’s see an example of lemmatization using spaCy:<\/p>\n

            import spacy\n\nnlp = spacy.load(\"en_core_web_sm\")\n\ntext = \"I have a cat named Max.\"\ndoc = nlp(text)\n\nfor token in doc:\n    print(token.text, token.lemma_)\n<\/code><\/pre>\n

            When you run the code, you should see the following output:<\/p>\n

            I -PRON-\nhave have\na a\ncat cat\nnamed name\nMax max\n. .\n<\/code><\/pre>\n

            Here’s what the code does:<\/p>\n

              \n
            1. Import the spacy<\/code> module.<\/li>\n
            2. Load the English language model using spacy.load(\"en_core_web_sm\")<\/code>.<\/li>\n
            3. Create a Doc<\/code> object by processing the given text with the language model.<\/li>\n
            4. Iterate over the tokens in the document and print their text and lemma.<\/li>\n<\/ol>\n

              In spaCy, each token has a lemma_<\/code> attribute that represents its lemma. In the output, you can see that the lemmas of the words “I” and “Max” are “-PRON-” and “max”, respectively.<\/p>\n

              Conclusion<\/h2>\n

              spaCy is a powerful library for natural language processing in Python. In this tutorial, we explored the basic usage of spaCy and learned how to perform various NLP tasks such as tokenization, part-of-speech tagging, named entity recognition, dependency parsing, and lemmatization. spaCy provides many other features and capabilities that can be used to build more advanced NLP applications.<\/p>\n

              To learn more about spaCy, you can refer to the official spaCy documentation<\/a> and explore the various tutorials, guides, and examples available. Happy coding!<\/p>\n","protected":false},"excerpt":{"rendered":"

              Natural Language Processing (NLP) is a field of artificial intelligence that focuses on the interaction between computers and human language. It involves tasks such as text classification, named entity recognition, part-of-speech tagging, and more. spaCy is a popular open-source library for NLP in Python. It provides a simple and efficient Continue Reading<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[1],"tags":[338,973,976,977,979,41,974,40,206,972,75,970,975,969,971,978,968,243],"yoast_head":"\nHow to Use spaCy for Natural Language Processing in Python - Pantherax Blogs<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use spaCy for Natural Language Processing in Python\" \/>\n<meta property=\"og:description\" content=\"Natural Language Processing (NLP) is a field of artificial intelligence that focuses on the interaction between computers and human language. It involves tasks such as text classification, named entity recognition, part-of-speech tagging, and more. spaCy is a popular open-source library for NLP in Python. It provides a simple and efficient Continue Reading\" \/>\n<meta property=\"og:url\" content=\"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/\" \/>\n<meta property=\"og:site_name\" content=\"Pantherax Blogs\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-04T23:14:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-05T05:48:23+00:00\" \/>\n<meta name=\"author\" content=\"Panther\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Panther\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\n\t \"@context\": \"https:\/\/schema.org\",\n\t \"@graph\": [\n\t {\n\t \"@type\": \"Article\",\n\t \"@id\": \"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/#article\",\n\t \"isPartOf\": {\n\t \"@id\": \"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/\"\n\t },\n\t \"author\": {\n\t \"name\": \"Panther\",\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7\"\n\t },\n\t \"headline\": \"How to Use spaCy for Natural Language Processing in Python\",\n\t \"datePublished\": \"2023-11-04T23:14:01+00:00\",\n\t \"dateModified\": \"2023-11-05T05:48:23+00:00\",\n\t \"mainEntityOfPage\": {\n\t \"@id\": \"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/\"\n\t },\n\t \"wordCount\": 1146,\n\t \"publisher\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#organization\"\n\t },\n\t \"keywords\": [\n\t \"\\\"Data preprocessing\\\"\",\n\t \"\\\"dependency parsing\\\"\",\n\t \"\\\"entity extraction\\\"\",\n\t \"\\\"information extraction\\\"\",\n\t \"\\\"lemmatization\\\"]\",\n\t \"\\\"Machine Learning\\\"\",\n\t \"\\\"named entity recognition\\\"\",\n\t \"\\\"Natural Language Processing\\\"\",\n\t \"\\\"NLP\\\"\",\n\t \"\\\"part-of-speech tagging\\\"\",\n\t \"\\\"Python\\\"\",\n\t \"\\\"semantic analysis\\\"\",\n\t \"\\\"sentiment analysis\\\"\",\n\t \"\\\"text analytics\\\"\",\n\t \"\\\"tokenization\\\"\",\n\t \"\\\"word vectors\\\"\",\n\t \"[\\\"spaCy\\\"\",\n\t \"[\\\"text classification\\\"\"\n\t ],\n\t \"inLanguage\": \"en-US\"\n\t },\n\t {\n\t \"@type\": \"WebPage\",\n\t \"@id\": \"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/\",\n\t \"url\": \"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/\",\n\t \"name\": \"How to Use spaCy for Natural Language Processing in Python - Pantherax Blogs\",\n\t \"isPartOf\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#website\"\n\t },\n\t \"datePublished\": \"2023-11-04T23:14:01+00:00\",\n\t \"dateModified\": \"2023-11-05T05:48:23+00:00\",\n\t \"breadcrumb\": {\n\t \"@id\": \"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/#breadcrumb\"\n\t },\n\t \"inLanguage\": \"en-US\",\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"ReadAction\",\n\t \"target\": [\n\t \"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/\"\n\t ]\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"BreadcrumbList\",\n\t \"@id\": \"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/#breadcrumb\",\n\t \"itemListElement\": [\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 1,\n\t \"name\": \"Home\",\n\t \"item\": \"http:\/\/localhost:10003\/\"\n\t },\n\t {\n\t \"@type\": \"ListItem\",\n\t \"position\": 2,\n\t \"name\": \"How to Use spaCy for Natural Language Processing in Python\"\n\t }\n\t ]\n\t },\n\t {\n\t \"@type\": \"WebSite\",\n\t \"@id\": \"http:\/\/localhost:10003\/#website\",\n\t \"url\": \"http:\/\/localhost:10003\/\",\n\t \"name\": \"Pantherax Blogs\",\n\t \"description\": \"\",\n\t \"publisher\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#organization\"\n\t },\n\t \"potentialAction\": [\n\t {\n\t \"@type\": \"SearchAction\",\n\t \"target\": {\n\t \"@type\": \"EntryPoint\",\n\t \"urlTemplate\": \"http:\/\/localhost:10003\/?s={search_term_string}\"\n\t },\n\t \"query-input\": \"required name=search_term_string\"\n\t }\n\t ],\n\t \"inLanguage\": \"en-US\"\n\t },\n\t {\n\t \"@type\": \"Organization\",\n\t \"@id\": \"http:\/\/localhost:10003\/#organization\",\n\t \"name\": \"Pantherax Blogs\",\n\t \"url\": \"http:\/\/localhost:10003\/\",\n\t \"logo\": {\n\t \"@type\": \"ImageObject\",\n\t \"inLanguage\": \"en-US\",\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/logo\/image\/\",\n\t \"url\": \"http:\/\/localhost:10003\/wp-content\/uploads\/2023\/11\/cropped-9e7721cb-2d62-4f72-ab7f-7d1d8db89226.jpeg\",\n\t \"contentUrl\": \"http:\/\/localhost:10003\/wp-content\/uploads\/2023\/11\/cropped-9e7721cb-2d62-4f72-ab7f-7d1d8db89226.jpeg\",\n\t \"width\": 1024,\n\t \"height\": 1024,\n\t \"caption\": \"Pantherax Blogs\"\n\t },\n\t \"image\": {\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/logo\/image\/\"\n\t }\n\t },\n\t {\n\t \"@type\": \"Person\",\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7\",\n\t \"name\": \"Panther\",\n\t \"image\": {\n\t \"@type\": \"ImageObject\",\n\t \"inLanguage\": \"en-US\",\n\t \"@id\": \"http:\/\/localhost:10003\/#\/schema\/person\/image\/\",\n\t \"url\": \"http:\/\/2.gravatar.com\/avatar\/b8c0eda5a49f8f31ec32d0a0f9d6f838?s=96&d=mm&r=g\",\n\t \"contentUrl\": \"http:\/\/2.gravatar.com\/avatar\/b8c0eda5a49f8f31ec32d0a0f9d6f838?s=96&d=mm&r=g\",\n\t \"caption\": \"Panther\"\n\t },\n\t \"sameAs\": [\n\t \"http:\/\/localhost:10003\"\n\t ],\n\t \"url\": \"http:\/\/localhost:10003\/author\/pepethefrog\/\"\n\t }\n\t ]\n\t}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Use spaCy for Natural Language Processing in Python - Pantherax Blogs","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":"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/","og_locale":"en_US","og_type":"article","og_title":"How to Use spaCy for Natural Language Processing in Python","og_description":"Natural Language Processing (NLP) is a field of artificial intelligence that focuses on the interaction between computers and human language. It involves tasks such as text classification, named entity recognition, part-of-speech tagging, and more. spaCy is a popular open-source library for NLP in Python. It provides a simple and efficient Continue Reading","og_url":"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/","og_site_name":"Pantherax Blogs","article_published_time":"2023-11-04T23:14:01+00:00","article_modified_time":"2023-11-05T05:48:23+00:00","author":"Panther","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Panther","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/#article","isPartOf":{"@id":"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/"},"author":{"name":"Panther","@id":"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7"},"headline":"How to Use spaCy for Natural Language Processing in Python","datePublished":"2023-11-04T23:14:01+00:00","dateModified":"2023-11-05T05:48:23+00:00","mainEntityOfPage":{"@id":"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/"},"wordCount":1146,"publisher":{"@id":"http:\/\/localhost:10003\/#organization"},"keywords":["\"Data preprocessing\"","\"dependency parsing\"","\"entity extraction\"","\"information extraction\"","\"lemmatization\"]","\"Machine Learning\"","\"named entity recognition\"","\"Natural Language Processing\"","\"NLP\"","\"part-of-speech tagging\"","\"Python\"","\"semantic analysis\"","\"sentiment analysis\"","\"text analytics\"","\"tokenization\"","\"word vectors\"","[\"spaCy\"","[\"text classification\""],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/","url":"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/","name":"How to Use spaCy for Natural Language Processing in Python - Pantherax Blogs","isPartOf":{"@id":"http:\/\/localhost:10003\/#website"},"datePublished":"2023-11-04T23:14:01+00:00","dateModified":"2023-11-05T05:48:23+00:00","breadcrumb":{"@id":"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/localhost:10003\/how-to-use-spacy-for-natural-language-processing-in-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/localhost:10003\/"},{"@type":"ListItem","position":2,"name":"How to Use spaCy for Natural Language Processing in Python"}]},{"@type":"WebSite","@id":"http:\/\/localhost:10003\/#website","url":"http:\/\/localhost:10003\/","name":"Pantherax Blogs","description":"","publisher":{"@id":"http:\/\/localhost:10003\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/localhost:10003\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/localhost:10003\/#organization","name":"Pantherax Blogs","url":"http:\/\/localhost:10003\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/localhost:10003\/#\/schema\/logo\/image\/","url":"http:\/\/localhost:10003\/wp-content\/uploads\/2023\/11\/cropped-9e7721cb-2d62-4f72-ab7f-7d1d8db89226.jpeg","contentUrl":"http:\/\/localhost:10003\/wp-content\/uploads\/2023\/11\/cropped-9e7721cb-2d62-4f72-ab7f-7d1d8db89226.jpeg","width":1024,"height":1024,"caption":"Pantherax Blogs"},"image":{"@id":"http:\/\/localhost:10003\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"http:\/\/localhost:10003\/#\/schema\/person\/b63d816f4964b163e53cbbcffaa0f3d7","name":"Panther","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/localhost:10003\/#\/schema\/person\/image\/","url":"http:\/\/2.gravatar.com\/avatar\/b8c0eda5a49f8f31ec32d0a0f9d6f838?s=96&d=mm&r=g","contentUrl":"http:\/\/2.gravatar.com\/avatar\/b8c0eda5a49f8f31ec32d0a0f9d6f838?s=96&d=mm&r=g","caption":"Panther"},"sameAs":["http:\/\/localhost:10003"],"url":"http:\/\/localhost:10003\/author\/pepethefrog\/"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts\/4038"}],"collection":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/comments?post=4038"}],"version-history":[{"count":1,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts\/4038\/revisions"}],"predecessor-version":[{"id":4494,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/posts\/4038\/revisions\/4494"}],"wp:attachment":[{"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/media?parent=4038"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/categories?post=4038"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/localhost:10003\/wp-json\/wp\/v2\/tags?post=4038"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}