{"library":"simplegmail","title":"SimpleGmail","description":"SimpleGmail is a Python library providing a simple API client for Gmail, allowing users to send, read, delete, and manage emails and labels via the Gmail API. The latest version is 4.1.1 (released 2025-11-07). The library follows an irregular release cadence.","language":"python","status":"active","last_verified":"Sat May 09","install":{"commands":["pip install simplegmail"],"cli":null},"imports":["from simplegmail import Gmail","from simplegmail import Message","from simplegmail import construct_query"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from simplegmail import Gmail\n\ngmail = Gmail()  # will prompt OAuth if no token\n\n# Get all inbox messages\nmessages = gmail.get_inbox()\nfor msg in messages:\n    print(f\"Subject: {msg.subject}\")\n    print(f\"From: {msg.sender}\")\n    print(f\"Snippet: {msg.snippet}\\n\")","lang":"python","description":"Quickstart: Initialize Gmail (triggers OAuth if needed) and list inbox messages.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}