{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: GNU General Public License (GPL)", "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Communications :: Email", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. -*- coding: utf-8 -*-\n\n.. image:: https://pypip.in/download/rss2email/badge.png\n :target: https://pypi.python.org/pypi/rss2email/\n :alt: Downloads\n\n.. image:: https://pypip.in/version/rss2email/badge.png\n :target: https://pypi.python.org/pypi/rss2email/\n :alt: Latest Version\n\n.. image:: https://pypip.in/license/rss2email/badge.png\n :target: https://pypi.python.org/pypi/rss2email/\n :alt: License\n\n==============================\nGetting Started With rss2email\n==============================\n\nWe highly recommend that you watch the rss2email project on GitHub\nso you can keep up to date with the latest version, bugfixes and\nfeatures:\n\n https://github.com/rss2email/rss2email\n\n.. contents::\n\nInstalling rss2email\n====================\n\nPackages\n--------\n\nA quick way to get rss2email going is using pre-made packages. There are\nreleases for Debian__, Fedora__, Gentoo__, NetBSD__, NixOS__, OpenBSD__,\nopenSUSE__, and Ubuntu__.\n\n__ `Debian package`_\n__ `Fedora package`_\n__ `Gentoo package`_\n__ `NetBSD package`_\n__ `NixOS package`_\n__ `OpenBSD package`_\n__ `openSUSE package`_\n__ `Ubuntu package`_\n\nInstalling by hand\n------------------\n\nRequirements\n~~~~~~~~~~~~\n\nBefore you install rss2email, you'll need to make sure that a few\nthings are in place.\n\n1. Ensure that a version of Python_ \u22653.6 is installed.\n2. Install the required Python packages.\n\n * feedparser_\n * html2text_\n\n3. Figure out how you are going to send outgoing email. You have two\n options here: either use an SMTP server or a local sendmail\n program. So,\n\n * determine your outgoing email server's SMTP address, or\n * install sendmail (or a compatible replacement like postfix).\n\nDownload\n~~~~~~~~\n\nDownload the latest rss2email source and unpack it. You can choose\nfrom several equivalent formats.\n\n1. A ``.zip`` file (suggested for Microsoft Windows users)\n or ``.tar.gz`` file (suggested for everyone else)::\n\n * Navigate to https://github.com/rss2email/rss2email/releases\n * Click either the ``zip`` or ``tar.gz`` icon for the latest release\n * Download and extract the archive\n\n3. A Git_ checkout (suggested for developers)::\n\n $ git clone git://github.com/rss2email/rss2email.git\n\nInstall\n~~~~~~~\n\nFrom the unpacked directory, run::\n\n $ python setup.py install\n\nYou can pass all the usual options to the ``install`` command,\nincluding ``--user``. If you don't want to install rss2email, you can\nalso run ``r2e`` directly from the source directory.\n\nUpgrading to a new version\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nJust repeat the installation procedure for the new source package. If\nyour config file and data file were in the old source directory, move\nthem over to the new source directory. If the config and data files\nwere in another directory (e.g. ``~/.config`` and ``~/.local/share``),\nthere is no need to move them.\n\nUsing rss2email\n===============\n\nCreate a new feed database to send updates to your email address::\n\n $ r2e new you@yourdomain.com\n\nThis command will create a configuration file\n(``$XDG_CONFIG_HOME/rss2email.cfg`` by default) and a feed database\n(``$XDG_DATA_HOME/rss2email.json`` by default). If you'd rather those\nfiles were stored in other locations, use the ``--config`` and\n``--data`` options. ``XDG_CONFIG_HOME`` defaults to ``$HOME/.config``\nand ``XDG_DATA_HOME`` defaults to ``$HOME/.local/share``.\n\nYou should edit the default configuration file now to adjust rss2email\nfor your local system. Unless you've installed a local\nsendmail-equivalent, you'll need to edit the SMTP_ options.\n\nSubscribe to some feeds::\n\n $ r2e add eff https://www.eff.org/rss/updates.xml\n\nThat will cause rss2email to notify you when there is a new announcement from\nthe Electronic Frontier Foundation. Repeat this for each feed you want to\nsubscribe to.\n\nWhen you run rss2email, it emails you about every story it hasn't seen\nbefore. But the first time you run it, that will be every story. To\navoid this, you can ask rss2email not to send you any stories the\nfirst time you run it::\n\n r2e run --no-send\n\nThen later, you can ask it to email you new stories::\n\n r2e run\n\nWhen a run is made, rss2email stores the list of already seen items for each feed in `$HOME/.local/share/rss2email.json`.\n\nCustomizing rss2email\n=====================\n\nThere are a number of options, described in full in\n``rss2email/config.py``, to customize the way rss2email behaves. If\nyou want to change something, edit the configuration file that was\ncreated by ``r2e new``.\n\nFor example, if you want to receive HTML mail, instead of having\nentries converted to plain text::\n\n html-mail = True\n\nTo be notified every time a post changes, instead of just when it's\nfirst posted (see also ``trust-link`` and ``reply-changes``, described in\n``rss2email/config.py``)::\n\n trust-guid = True\n\nAnd to make the emails look as if they were sent when the item was\nposted::\n\n date-header = True\n\nIf you get an error message ``Sender domain must exist``, add the\nfollowing to your configuration file::\n\n from = rss2email@yoursite.com\n force-from = True\n\nYou can make the email address whatever you want, but your mail server\nrequires that the ``yoursite.com`` part actually exists.\n\n\nSMTP\n----\n\nBy default, rss2email uses sendmail (or an equivalent) to send\noutgoing email. If you don't have such a program installed, or simply\nprefer to use SMTP__ directly, edit the configuration file and fill in\nyour outgoing email server's details::\n\n [DEFAULT]\n ...\n email-protocol = smtp\n smtp-server = smtp.example.net:587\n smtp-auth = False\n ...\n\nIf your server requires you to login, change ``smtp-auth = False`` to\n``smtp-auth = True`` and enter your email username and password::\n\n smtp-auth = True\n smtp-username = username\n smtp-password = password\n\nIf your server requires an `TLS/SSL`_ connection (SMTPS), change\n``smtp-ssl = False`` to ``smtp-ssl = True``. If your server does\nnot require a SMTPS connection but you request authentication,\nrss2email will use STARTTLS_ to encrypt the connection before sending\nyour login credentials to the server.\n\n__ `Simple Mail Transport Protocol`_\n\nPost-processing\n---------------\n\nrss2email has a mechanism to post-process entries. A post-processor can be used to change the content of each entry\nbefore rss2email sends the email out. A hook is added by defining the variable ``post-process`` in the\nconfig file. It takes two arguments, the module and the function to call. For example:\n\n post-process = rss2email.post_process.prettify process\n\nExamples of built-in post-processors:\n\n* ``prettify.py`` prettifies the HTML content with BeautifulSoup.\n* ``redirect.py`` remove redirects on the post URL for privacy or durability.\n\n\nAutomating rss2email\n====================\n\nMore than likely you will want rss2email to run automatically at a\nregular interval. Under Windows this is can be easily accomplished\nusing the Windows Task Scheduler. This site has a\nnice tutorial__ on it. Just select ``r2e.bat`` as the program to run. Once\nyou've created the task, double click on it in the task list and\nchange the Run entry so that ``run`` comes\nafter ``r2e.bat``. For example, if you installed rss2email in\nthe ``C:\\rss2email`` directory, then you would change the Run\nentry from ``C:\\rss2email\\r2e.bat``\nto ``C:\\rss2email\\r2e.bat run``.\n\n__ `windows scheduler`_\n\nOn Unix/Linux systems, you should add a cron_ job that runs ``r2e``.\nFor example, run ``r2e`` every night (at 1:23 am) with::\n\n 23 1 * * * r2e run\n\nDevelopment\n===========\n\nCommunity\n---------\n\nUser discussion and development take place on GitHub. Please feel free\nto post bug reports, feature requests, comments, and patches. If you do\nnot have a GitHub account and do not wish to acquire one, please come\nchat in the IRC channel.\n\nThere is a developer chat on the `freenode IRC server`_, in the\n``rss2email`` channel. Feel free to idle.\n\nTips and tricks\n---------------\n\nWhen adding a new test case, it is possible to just add the new input\nfiles, and then run the test suite with ``FORCE_TESTDATA_CREATION=1``,\nand the test suite will automatically generate the output file. Just\nmake sure to check that the output file does match what is wanted before\nchecking it in.\n\n.. _Debian package:\n http://packages.qa.debian.org/r/rss2email.html\n.. _Fedora package:\n https://src.fedoraproject.org/rpms/rss2email\n.. _Gentoo package:\n http://gpo.zugaina.org/net-mail/rss2email\n.. _NetBSD package:\n http://ftp.netbsd.org/pub/pkgsrc/current/pkgsrc/mail/rss2email/README.html\n.. _NixOS package:\n https://search.nixos.org/packages?channel=unstable&from=0&size=50&sort=relevance&query=rss2email\n.. _OpenBSD package:\n http://openports.se/mail/rss2email\n.. _openSUSE package:\n https://build.opensuse.org/package/show/openSUSE:Factory/rss2email\n.. _Ubuntu package:\n https://launchpad.net/ubuntu/+source/rss2email\n.. _Python: http://www.python.org\n.. _feedparser: http://pypi.python.org/pypi/feedparser\n.. _html2text: http://pypi.python.org/pypi/html2text\n.. _Git: http://git-scm.com/\n.. _Simple Mail Transport Protocol: http://en.wikipedia.org/wiki/Simple_Mail_Transport_Protocol\n.. _TLS/SSL: http://en.wikipedia.org/wiki/Transport_Layer_Security\n.. _STARTTLS: http://en.wikipedia.org/wiki/STARTTLS\n.. _windows scheduler: http://www.iopus.com/guides/winscheduler.htm\n.. _cron: http://en.wikipedia.org/wiki/Cron\n.. _freenode IRC server: https://freenode.net\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/rss2email/rss2email/archive/v3.13.1.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/rss2email/rss2email", "keywords": "", "license": "GNU General Public License (GPL)", "maintainer": "The rss2email maintainers", "maintainer_email": "rss2email@tremily.us", "name": "rss2email", "package_url": "https://pypi.org/project/rss2email/", "platform": "all", "project_url": "https://pypi.org/project/rss2email/", "project_urls": { "Download": "https://github.com/rss2email/rss2email/archive/v3.13.1.tar.gz", "Homepage": "https://github.com/rss2email/rss2email" }, "release_url": "https://pypi.org/project/rss2email/3.13.1/", "requires_dist": [ "feedparser (>=6.0.0)", "html2text (>=2020.1.16)" ], "requires_python": "", "summary": "A python script that converts RSS/Atom newsfeeds to email", "version": "3.13.1", "yanked": false, "yanked_reason": null }, "last_serial": 10366589, "releases": { "2.71": [], "3.0": [ { "comment_text": "", "digests": { "md5": "ad237eda0ea356ce7439887f4ab4cd79", "sha256": "d6b192a70aaf5c80cfedf4702e07248ea31cc84dfe92f521b882b128a9c6a096" }, "downloads": -1, "filename": "rss2email-3.0.tar.gz", "has_sig": false, "md5_digest": "ad237eda0ea356ce7439887f4ab4cd79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 148299, "upload_time": "2013-02-13T15:06:04", "upload_time_iso_8601": "2013-02-13T15:06:04.468232Z", "url": "https://files.pythonhosted.org/packages/6e/53/118682493e28259379b8505f20bd541744df8d15ccaf403ce62668b1fa3b/rss2email-3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1": [ { "comment_text": "", "digests": { "md5": "8d22814a7e036f9a5bedd8e9924f5f88", "sha256": "fd046c38bdfd1386fb76fb7b5d9014e189bb059d713882d5b1dd8d6a861832a5" }, "downloads": -1, "filename": "rss2email-3.1.tar.gz", "has_sig": false, "md5_digest": "8d22814a7e036f9a5bedd8e9924f5f88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 148327, "upload_time": "2013-02-14T13:35:36", "upload_time_iso_8601": "2013-02-14T13:35:36.861583Z", "url": "https://files.pythonhosted.org/packages/e1/53/91cda8580d42001d8814c88260bed55fcac284c85109c73a419a9dcc11c4/rss2email-3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.10": [ { "comment_text": "", "digests": { "md5": "53f45661d40717a8e2f8c274ab075561", "sha256": "81c393383f89fde30d597ee84135c1a8266815acb84ccc6ffd43cdb9645ee673" }, "downloads": -1, "filename": "rss2email-3.10-py3-none-any.whl", "has_sig": false, "md5_digest": "53f45661d40717a8e2f8c274ab075561", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 49879, "upload_time": "2019-09-01T14:22:58", "upload_time_iso_8601": "2019-09-01T14:22:58.026610Z", "url": "https://files.pythonhosted.org/packages/a5/b4/bc0f0585519a027e5984c2513b4af4fa3d917165de24aacb7d5d7cee44d8/rss2email-3.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3ecad9c0fcd7f5f88da59b3cff4b949", "sha256": "01c65b52b10ef84ff66492d4e75e7bb89e29d6a7c49ac9b9bf55ca84ef5b4ffa" }, "downloads": -1, "filename": "rss2email-3.10.tar.gz", "has_sig": false, "md5_digest": "c3ecad9c0fcd7f5f88da59b3cff4b949", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65388, "upload_time": "2019-09-01T14:23:00", "upload_time_iso_8601": "2019-09-01T14:23:00.190078Z", "url": "https://files.pythonhosted.org/packages/94/79/9b767211307f06dd11e5c24e1ff7078a8381ea680604d324b0211c25d51a/rss2email-3.10.tar.gz", "yanked": false, "yanked_reason": null } ], "3.11": [ { "comment_text": "", "digests": { "md5": "5c3af37e5178d048a5238ed179db9dc4", "sha256": "35702abef69f9849dc2fae0a147248fbb457f7ff1f9911e09bda08711c9cd06e" }, "downloads": -1, "filename": "rss2email-3.11-py3-none-any.whl", "has_sig": false, "md5_digest": "5c3af37e5178d048a5238ed179db9dc4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 50630, "upload_time": "2019-10-27T11:45:17", "upload_time_iso_8601": "2019-10-27T11:45:17.153873Z", "url": "https://files.pythonhosted.org/packages/ad/77/c9394529048d71b128982f276fab3346d77526bbb58bfeb69e49e8b9055d/rss2email-3.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b22710f8cc1dd6ba4b038497575d4f02", "sha256": "36c3bdb279cca8ab64c64e41af025d02963fb09ff84530240eacc22a2ed565ee" }, "downloads": -1, "filename": "rss2email-3.11.tar.gz", "has_sig": false, "md5_digest": "b22710f8cc1dd6ba4b038497575d4f02", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68020, "upload_time": "2019-10-27T11:45:20", "upload_time_iso_8601": "2019-10-27T11:45:20.110793Z", "url": "https://files.pythonhosted.org/packages/f1/fd/7acf50ee9d70c9645dcbca74d3a1c98c40e37c7d12db61c3f86385d580e6/rss2email-3.11.tar.gz", "yanked": false, "yanked_reason": null } ], "3.12": [ { "comment_text": "", "digests": { "md5": "4008d1810975135dd6a2c2ff3b1b0945", "sha256": "4beb6869c6bf7b971d4dd836e6d00254e8968ddb00ffeaa9da201f70ba957779" }, "downloads": -1, "filename": "rss2email-3.12-py3-none-any.whl", "has_sig": false, "md5_digest": "4008d1810975135dd6a2c2ff3b1b0945", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 53599, "upload_time": "2020-08-02T13:06:52", "upload_time_iso_8601": "2020-08-02T13:06:52.850781Z", "url": "https://files.pythonhosted.org/packages/9a/b0/c6f7b5e4de097734c46ebc45486cd0f0c8b9feb10997b288b0014d5c63dd/rss2email-3.12-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ec0f8e6dd195166844b170f4ceeda93b", "sha256": "9352c954f357f46613fede8dbc133c2a28450278d41224dbe84c1e86377d985a" }, "downloads": -1, "filename": "rss2email-3.12.tar.gz", "has_sig": false, "md5_digest": "ec0f8e6dd195166844b170f4ceeda93b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75025, "upload_time": "2020-08-02T13:06:56", "upload_time_iso_8601": "2020-08-02T13:06:56.051938Z", "url": "https://files.pythonhosted.org/packages/d9/24/ea9e0b110ff5eadf1cd2b9832b484e7d4bf85644271c4a1d12d3ec93f2da/rss2email-3.12.tar.gz", "yanked": false, "yanked_reason": null } ], "3.12.1": [ { "comment_text": "", "digests": { "md5": "74ae686e4d7c85ad701f85498c3caf7b", "sha256": "f1ab54c65a13e2cea226af0814c77e5187571d3ffdf33dcfe289dcc2e8f06c2f" }, "downloads": -1, "filename": "rss2email-3.12.1-py3-none-any.whl", "has_sig": false, "md5_digest": "74ae686e4d7c85ad701f85498c3caf7b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 53634, "upload_time": "2020-08-02T16:41:23", "upload_time_iso_8601": "2020-08-02T16:41:23.772358Z", "url": "https://files.pythonhosted.org/packages/ea/5c/3f4b2c3b7ec5810b2a7647ebf097f23343c1abd2ab2748db99b33c473ca1/rss2email-3.12.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "28c8017e68626ef0eb211d016bbb7a1e", "sha256": "8062fd5d23900eee3fd3737dc98aff3673e8606ac6f8c41ded86e630e08a177f" }, "downloads": -1, "filename": "rss2email-3.12.1.tar.gz", "has_sig": false, "md5_digest": "28c8017e68626ef0eb211d016bbb7a1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82342, "upload_time": "2020-08-02T16:41:25", "upload_time_iso_8601": "2020-08-02T16:41:25.473713Z", "url": "https://files.pythonhosted.org/packages/e2/d5/7d8df21c6c07a04f8b69607279c8f0556e67184bd08cf5c7a621562fb942/rss2email-3.12.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.12.2": [ { "comment_text": "", "digests": { "md5": "60aad0292b53351811b6378a987192ba", "sha256": "c8ae5cf9e3e5b7798ed3a87a45fc6c0765b7f97ff23840f88d1d39e405b33714" }, "downloads": -1, "filename": "rss2email-3.12.2-py3-none-any.whl", "has_sig": false, "md5_digest": "60aad0292b53351811b6378a987192ba", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 53644, "upload_time": "2020-08-31T15:27:42", "upload_time_iso_8601": "2020-08-31T15:27:42.525998Z", "url": "https://files.pythonhosted.org/packages/b9/ea/5a05dbadfa0fe245c97b1b7068d04552dd5f84860d476da425d883c1ce15/rss2email-3.12.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49599fe910e3211f8858fd8f8abae169", "sha256": "59c2273729e14bc68330fc8b91de537a2b5508b5d5fbee4ea8dd70cd01ea868b" }, "downloads": -1, "filename": "rss2email-3.12.2.tar.gz", "has_sig": false, "md5_digest": "49599fe910e3211f8858fd8f8abae169", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75229, "upload_time": "2020-08-31T15:27:44", "upload_time_iso_8601": "2020-08-31T15:27:44.298661Z", "url": "https://files.pythonhosted.org/packages/02/64/777de5baa36cccaa1f47acaae2bb0c7d5a3e3fcc58de6f3f801f52590212/rss2email-3.12.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.12.3": [ { "comment_text": "", "digests": { "md5": "16c2b3fefddbef491b6ed57e711b2c4a", "sha256": "9f68afdb75fea4602634d54d368502b2f20617d416526e2b1221cdd0dd608c29" }, "downloads": -1, "filename": "rss2email-3.12.3-py3-none-any.whl", "has_sig": false, "md5_digest": "16c2b3fefddbef491b6ed57e711b2c4a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 53656, "upload_time": "2021-03-19T00:49:35", "upload_time_iso_8601": "2021-03-19T00:49:35.987890Z", "url": "https://files.pythonhosted.org/packages/c3/c7/50098da4b38267bfe8bbf169d5e2df25456258f7c3444d4809f2a5d3ad5f/rss2email-3.12.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fb0fb240dc641430194ede208726c94b", "sha256": "7b47893fc27f5a494a9df9813ac0572a59d69c0b54ed476038059303f7be6b26" }, "downloads": -1, "filename": "rss2email-3.12.3.tar.gz", "has_sig": false, "md5_digest": "fb0fb240dc641430194ede208726c94b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77405, "upload_time": "2021-03-19T00:49:37", "upload_time_iso_8601": "2021-03-19T00:49:37.761452Z", "url": "https://files.pythonhosted.org/packages/50/f4/a557df9b1fd0a8c0b132e8ba6110c3411054dee112f9b68487768a2be60d/rss2email-3.12.3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.13": [ { "comment_text": "", "digests": { "md5": "cdc416c2f37a7976d266c08ffcc9c7cd", "sha256": "9760f56763ab80b4fd21a116f17c714ba1198f1f8a7cea4d3ca1181075ac2f58" }, "downloads": -1, "filename": "rss2email-3.13-py3-none-any.whl", "has_sig": false, "md5_digest": "cdc416c2f37a7976d266c08ffcc9c7cd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 54310, "upload_time": "2021-04-02T23:35:44", "upload_time_iso_8601": "2021-04-02T23:35:44.281931Z", "url": "https://files.pythonhosted.org/packages/31/4b/e5014ff6b99c907253d90d5080881dc96d08d80a150b85300cf9bfb99536/rss2email-3.13-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43ac92afa0bd5279453d15b68c75e761", "sha256": "ca52f652788577a4040d43ce4b0e242ebef8a5353b5aed7df240ec1581177727" }, "downloads": -1, "filename": "rss2email-3.13.tar.gz", "has_sig": false, "md5_digest": "43ac92afa0bd5279453d15b68c75e761", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158031, "upload_time": "2021-04-02T23:35:46", "upload_time_iso_8601": "2021-04-02T23:35:46.181670Z", "url": "https://files.pythonhosted.org/packages/bc/91/688735f0c2d583ad490e345d4c9f2c67b97c601ec4ffc6fc42f61555864a/rss2email-3.13.tar.gz", "yanked": false, "yanked_reason": null } ], "3.13.1": [ { "comment_text": "", "digests": { "md5": "c1af690d559b10ba888498f20886f66c", "sha256": "24e126aff54218ccddb0bafc40fe2cf02b69ba99c00cea0d6154a8517c130a0e" }, "downloads": -1, "filename": "rss2email-3.13.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c1af690d559b10ba888498f20886f66c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 54352, "upload_time": "2021-05-15T18:33:07", "upload_time_iso_8601": "2021-05-15T18:33:07.512816Z", "url": "https://files.pythonhosted.org/packages/51/91/a989eb3bc8731569107f246fdf1177acdf9ce801c528cd0f0a8d7daf9c1c/rss2email-3.13.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8cc72190a7c62ad84c7d287c88f9321b", "sha256": "3994444766874bb35c9f886da76f3b24be1cb7bbaf40fad12b16f2af80ac1296" }, "downloads": -1, "filename": "rss2email-3.13.1.tar.gz", "has_sig": false, "md5_digest": "8cc72190a7c62ad84c7d287c88f9321b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 164683, "upload_time": "2021-05-15T18:33:09", "upload_time_iso_8601": "2021-05-15T18:33:09.407551Z", "url": "https://files.pythonhosted.org/packages/f1/30/6c605859d5aa1376ca304e24d576fe6b484c3eccc8744866810b09464be3/rss2email-3.13.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2": [ { "comment_text": "", "digests": { "md5": "684d46742f5a6dc726dd873bb3afe768", "sha256": "b786b1d2d6f2443b1d9f59f55948b307d3cb8369db5550eca0e2d18bc690e18f" }, "downloads": -1, "filename": "rss2email-3.2.tar.gz", "has_sig": false, "md5_digest": "684d46742f5a6dc726dd873bb3afe768", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149104, "upload_time": "2013-03-13T13:56:22", "upload_time_iso_8601": "2013-03-13T13:56:22.956362Z", "url": "https://files.pythonhosted.org/packages/b6/bf/40bd9a57d5d3ed7a1158150985f4e065d8bed2058952896b05aea384fdbc/rss2email-3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3": [ { "comment_text": "", "digests": { "md5": "bfdda2cda10417e5b9fe8951017a5686", "sha256": "1f1f78534b51c306e4bd9af827f1bb64ba9bfe4ec772c8b2865d50eca7a9f039" }, "downloads": -1, "filename": "rss2email-3.3.tar.gz", "has_sig": false, "md5_digest": "bfdda2cda10417e5b9fe8951017a5686", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 295287, "upload_time": "2013-04-13T23:30:55", "upload_time_iso_8601": "2013-04-13T23:30:55.102590Z", "url": "https://files.pythonhosted.org/packages/e3/78/5fe0636a73e87f178e2be5ec6ccf8124ec9d52cac86294bb40f274510fd4/rss2email-3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.4": [ { "comment_text": "", "digests": { "md5": "e86cfbaac6e604794eed6ef5f31db020", "sha256": "93ec87f371118b7cac54981dec3ee9a85d3c9154556f927d9858fcb21e74e198" }, "downloads": -1, "filename": "rss2email-3.4.tar.gz", "has_sig": false, "md5_digest": "e86cfbaac6e604794eed6ef5f31db020", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 301837, "upload_time": "2013-06-07T01:08:39", "upload_time_iso_8601": "2013-06-07T01:08:39.132461Z", "url": "https://files.pythonhosted.org/packages/ba/47/ae6078b657fb4282603af5ec45f2e48e5ef5be4ad18966086665caa0cdee/rss2email-3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "3.5": [ { "comment_text": "", "digests": { "md5": "d2fb42d8f61152662d0617bbe7d8816d", "sha256": "2cc4d9c083f18deed4e4688c6ff2253780ad3050370ee368cbb2d5a4c6a34aed" }, "downloads": -1, "filename": "rss2email-3.5.tar.gz", "has_sig": false, "md5_digest": "d2fb42d8f61152662d0617bbe7d8816d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 304981, "upload_time": "2013-06-07T01:08:53", "upload_time_iso_8601": "2013-06-07T01:08:53.249357Z", "url": "https://files.pythonhosted.org/packages/43/f7/8a9c1556409953a424c557be85159228209e1d47be8b3479e04985fc4d04/rss2email-3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "3.6": [ { "comment_text": "", "digests": { "md5": "54b902332aea7f4c8133ac4271cd8844", "sha256": "6c10df8dfb30c14e7d185c1b88a84708eebc900775596a864005b93198a00d86" }, "downloads": -1, "filename": "rss2email-3.6.tar.gz", "has_sig": false, "md5_digest": "54b902332aea7f4c8133ac4271cd8844", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305419, "upload_time": "2013-09-09T17:31:13", "upload_time_iso_8601": "2013-09-09T17:31:13.531385Z", "url": "https://files.pythonhosted.org/packages/c8/5c/9e27df573de0ecc0eafebf68b72afa5bee208dfdf3f555e339cd2fcfb19a/rss2email-3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "3.7": [ { "comment_text": "", "digests": { "md5": "d99e66004325a6e0a4cde5d89317c7b6", "sha256": "ba6ef79e23a11a59468c320649c170e540466385970143b15b9078e6f7ca7129" }, "downloads": -1, "filename": "rss2email-3.7.tar.gz", "has_sig": false, "md5_digest": "d99e66004325a6e0a4cde5d89317c7b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 304007, "upload_time": "2013-10-11T16:34:28", "upload_time_iso_8601": "2013-10-11T16:34:28.841724Z", "url": "https://files.pythonhosted.org/packages/4a/e7/e94f07e57045554b1749f1b80ba5d37ddf5f17239e20258236fd1f90bd25/rss2email-3.7.tar.gz", "yanked": false, "yanked_reason": null } ], "3.8": [ { "comment_text": "", "digests": { "md5": "bd12836eabd73790cee972712d8cc679", "sha256": "91862618401287cae17ed9ce03ac25462b71c2dbb90a825427872c306e6114d7" }, "downloads": -1, "filename": "rss2email-3.8.tar.gz", "has_sig": false, "md5_digest": "bd12836eabd73790cee972712d8cc679", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 304587, "upload_time": "2014-01-18T18:48:06", "upload_time_iso_8601": "2014-01-18T18:48:06.150612Z", "url": "https://files.pythonhosted.org/packages/63/cb/8515929f9af998e5dc77ea51ed7294ca80f1734857e1aabb96b3b59a9611/rss2email-3.8.tar.gz", "yanked": false, "yanked_reason": null } ], "3.9": [ { "comment_text": "", "digests": { "md5": "23be063b045be29cc4edc76fe6d141ff", "sha256": "2557a8042021dfbdba7d8a7777a4135f08c342bde98318d442d50b56e14f920b" }, "downloads": -1, "filename": "rss2email-3.9.tar.gz", "has_sig": false, "md5_digest": "23be063b045be29cc4edc76fe6d141ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 400583, "upload_time": "2014-09-01T23:25:44", "upload_time_iso_8601": "2014-09-01T23:25:44.928263Z", "url": "https://files.pythonhosted.org/packages/cf/1c/c712de9d848ad6d966fd98675464683bd45564937952f3a52c5059a46a31/rss2email-3.9.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c1af690d559b10ba888498f20886f66c", "sha256": "24e126aff54218ccddb0bafc40fe2cf02b69ba99c00cea0d6154a8517c130a0e" }, "downloads": -1, "filename": "rss2email-3.13.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c1af690d559b10ba888498f20886f66c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 54352, "upload_time": "2021-05-15T18:33:07", "upload_time_iso_8601": "2021-05-15T18:33:07.512816Z", "url": "https://files.pythonhosted.org/packages/51/91/a989eb3bc8731569107f246fdf1177acdf9ce801c528cd0f0a8d7daf9c1c/rss2email-3.13.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8cc72190a7c62ad84c7d287c88f9321b", "sha256": "3994444766874bb35c9f886da76f3b24be1cb7bbaf40fad12b16f2af80ac1296" }, "downloads": -1, "filename": "rss2email-3.13.1.tar.gz", "has_sig": false, "md5_digest": "8cc72190a7c62ad84c7d287c88f9321b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 164683, "upload_time": "2021-05-15T18:33:09", "upload_time_iso_8601": "2021-05-15T18:33:09.407551Z", "url": "https://files.pythonhosted.org/packages/f1/30/6c605859d5aa1376ca304e24d576fe6b484c3eccc8744866810b09464be3/rss2email-3.13.1.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }