{ "info": { "author": "Yuchen Li", "author_email": "ychnlgy@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "# MailUpdater\n\nA Python module for easily sending mail updates to yourself.\n\n## Quickstart\n\n```python3\n\nimport mailupdater\n\nusername = input(\"Email address: \")\n\nservice = mailupdater.Service(username)\n\nwith service.create(\"Hello world\") as email:\n email.write(\"Python is great for sending emails.\")\n\n# A new email will appear in your inbox.\n\n```\n\nYou can also attach files and send multiple emails:\n\n```python3\n\nimport mailupdater\n\nusername = input(\"Email address: \")\n\nservice = mailupdater.Service(username)\n\nwith service.create(\"Vacation pix\") as email:\n email.write(\"See attachments.\")\n email.attach(\"file.txt\")\n email.attach(\"image.png\")\n email.write(\"These are my vacation pictures.\")\n\nwith service.create(\"Reminder\") as email:\n email.write(\"Did you see the previous email I sent?\")\n\n# Two new emails will appear in your inbox.\n\n```\n\nSending emails to multiple recipients is easy:\n\n```python3\n\nimport mailupdater\n\nusername = \"jon@mail1.com\"\nrecipients = [\"mary@mail2.com\", \"bob@mail3.com\"]\n\nservice = mailupdater.Service(username, recipients)\n\nwith service.create(\"Party invitation\") as email:\n email.write(\"Come to my party!\")\n\n# All recipients, including yourself, will recieve the email.\n\n```\n\n## Installation\n\n```bash\npip3 install mailupdater\n```\n\n## Testing\n\nDo:\n\n```python3\n\nimport mailupdater\n\nmailupdater.test()\n\n```\n\nThen follow the instructions of the program.\n\nIf the program finishes successfully, then you should see two new emails in your inbox.", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ychnlgy/MailUpdater", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "mailupdater", "package_url": "https://pypi.org/project/mailupdater/", "platform": "", "project_url": "https://pypi.org/project/mailupdater/", "project_urls": { "Homepage": "https://github.com/ychnlgy/MailUpdater" }, "release_url": "https://pypi.org/project/mailupdater/0.0.3/", "requires_dist": null, "requires_python": "", "summary": "Easily send mail updates to yourself.", "version": "0.0.3" }, "last_serial": 4669858, "releases": { "0.0.0": [ { "comment_text": "", "digests": { "md5": "a60df4c21cdfa92b422c533034fc85a7", "sha256": "54b325ac64eb1069fe3b9d564661546bcf2ea37ab680f3843f0f06c1fa6dc4df" }, "downloads": -1, "filename": "mailupdater-0.0.0.tar.gz", "has_sig": false, "md5_digest": "a60df4c21cdfa92b422c533034fc85a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8034, "upload_time": "2019-01-06T01:14:28", "url": "https://files.pythonhosted.org/packages/cb/83/41e5d7834cb0045e34f0da04f699e70c86274b68f9aed2416cfdb744ddad/mailupdater-0.0.0.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "fa7f06d7deca0108494bf1638ec43f56", "sha256": "3a1533987ba8c304dd55c7d5f8dc19e57bc9816359d1296bf9399628c2375dfe" }, "downloads": -1, "filename": "mailupdater-0.0.2.tar.gz", "has_sig": false, "md5_digest": "fa7f06d7deca0108494bf1638ec43f56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8414, "upload_time": "2019-01-07T00:32:08", "url": "https://files.pythonhosted.org/packages/70/f9/2dac887d57384e6d59fd02cbb5b3473e7cca9c02cd0eae5984383094b6bc/mailupdater-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "7370000990456cf1998c6f64cc262137", "sha256": "671bec4038b1a4e35f21d197dc1e76cb34bd4bde3711feadd68dd720e840e56e" }, "downloads": -1, "filename": "mailupdater-0.0.3.tar.gz", "has_sig": false, "md5_digest": "7370000990456cf1998c6f64cc262137", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8699, "upload_time": "2019-01-07T18:44:36", "url": "https://files.pythonhosted.org/packages/e5/81/bd226d80036cb4d6be7cc003379ec05e8d507c257d91b65a71eac02e2c2e/mailupdater-0.0.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7370000990456cf1998c6f64cc262137", "sha256": "671bec4038b1a4e35f21d197dc1e76cb34bd4bde3711feadd68dd720e840e56e" }, "downloads": -1, "filename": "mailupdater-0.0.3.tar.gz", "has_sig": false, "md5_digest": "7370000990456cf1998c6f64cc262137", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8699, "upload_time": "2019-01-07T18:44:36", "url": "https://files.pythonhosted.org/packages/e5/81/bd226d80036cb4d6be7cc003379ec05e8d507c257d91b65a71eac02e2c2e/mailupdater-0.0.3.tar.gz" } ] }