{
    "content": [
        {
            "type": "text",
            "text": "# requests (pydoc)\n\n**Summary:** requests\n\n## Section Outline\n\n- **NAME** (2 lines)\n- **DESCRIPTION** (33 lines)\n- **PACKAGE CONTENTS** (18 lines)\n- **FUNCTIONS** (1 lines) — 1 subsections\n  - check_compatibility (1 lines)\n- **DATA** (10 lines)\n- **VERSION** (2 lines)\n- **AUTHOR** (2 lines)\n- **FILE** (3 lines)\n\n## Full Content\n\n### NAME\n\nrequests\n\n### DESCRIPTION\n\nRequests HTTP Library\n~~~~~~~~~~~~~~~~~~~~~\n\nRequests is an HTTP library, written in Python, for human beings.\nBasic GET usage:\n\n>>> import requests\n>>> r = requests.get('https://www.python.org')\n>>> r.statuscode\n200\n>>> b'Python is a programming language' in r.content\nTrue\n\n... or POST:\n\n>>> payload = dict(key1='value1', key2='value2')\n>>> r = requests.post('https://httpbin.org/post', data=payload)\n>>> print(r.text)\n{\n...\n\"form\": {\n\"key1\": \"value1\",\n\"key2\": \"value2\"\n},\n...\n}\n\nThe other HTTP methods are supported - see `requests.api`. Full documentation\nis at <https://requests.readthedocs.io>.\n\n:copyright: (c) 2017 by Kenneth Reitz.\n:license: Apache 2.0, see LICENSE for more details.\n\n### PACKAGE CONTENTS\n\nversion\ninternalutils\nadapters\napi\nauth\ncerts\ncompat\ncookies\nexceptions\nhelp\nhooks\nmodels\npackages\nsessions\nstatuscodes\nstructures\nutils\n\n### FUNCTIONS\n\n#### check_compatibility\n\n### DATA\n\nauthoremail = 'me@kennethreitz.org'\nbuild = 140545\ncake = '✨ 🍰 ✨'\ncopyright = 'Copyright 2020 Kenneth Reitz'\ndescription = 'Python HTTP for Humans.'\nlicense = 'Apache 2.0'\ntitle = 'requests'\nurl = 'https://requests.readthedocs.io'\ncodes = <lookup 'statuscodes'>\n\n### VERSION\n\n2.25.1\n\n### AUTHOR\n\nKenneth Reitz\n\n### FILE\n\n/usr/lib/python3/dist-packages/requests/init.py\n\n"
        }
    ],
    "structuredContent": {
        "command": "requests",
        "section": "",
        "mode": "pydoc",
        "summary": "requests",
        "synopsis": null,
        "tldr_summary": null,
        "tldr_examples": [],
        "tldr_source": null,
        "flags": [],
        "examples": [],
        "see_also": [],
        "section_outline": [
            {
                "name": "NAME",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "DESCRIPTION",
                "lines": 33,
                "subsections": []
            },
            {
                "name": "PACKAGE CONTENTS",
                "lines": 18,
                "subsections": []
            },
            {
                "name": "FUNCTIONS",
                "lines": 1,
                "subsections": [
                    {
                        "name": "check_compatibility",
                        "lines": 1
                    }
                ]
            },
            {
                "name": "DATA",
                "lines": 10,
                "subsections": []
            },
            {
                "name": "VERSION",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "AUTHOR",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "FILE",
                "lines": 3,
                "subsections": []
            }
        ]
    }
}