{ "info": { "author": "Zaman", "author_email": "7amaaan@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3 :: Only", "Topic :: Utilities" ], "description": "# ezsub\n\n[![Downloads](https://img.shields.io/pypi/dw/ezsub.svg)](https://pypi.org/project/ezsub/)\n[![Published Version](https://img.shields.io/pypi/v/ezsub.svg)](https://pypi.org/project/ezsub/)\n![GitHub Release](https://img.shields.io/github/release/7aman/ezsub.svg?label=repo%20version)\n[![License: MIT](https://img.shields.io/github/license/7aman/ezsub.svg)](https://github.com/7aman/ezsub/blob/master/LICENSE)\n[![Build Status](https://travis-ci.org/7aman/ezsub.svg?branch=master)](https://travis-ci.org/7aman/ezsub)\n\n`ezsub` downloads subtitles from [subscene.com](https://subscene.com/) and its persian clones\nsuch as [subf2m.co](https://subf2m.co/). \nFor more details see [How ezsub Works](./wiki/How-ezsub-Works.md).\n\n
\n\n## Table of Contents\n\n* [Install](#install)\n* [How to use](#how-to-use)\n * [Download: `ezsub dl`](#download)\n * [Extract Previously Downloaded Subtitles: `ezsub unzip`](#extract-previously-downloaded-subtitles)\n * [Login: `ezsub login`](#login)\n * [Info: `ezsub info`](#info)\n * [Config: `ezsub config`](#config)\n * [Clean: `ezsub clean`](#Clean)\n * [Update: `ezsub update`](#Update)\n * [Backup: `ezsub backup`](#Backup)\n * [History: `ezsub history`](#History)\n* [Report Errors](#report-errors)\n\n
\n\n## Install\n\nDependencies:\n\n* python3.7+\n* unrar [optional]\n\nInstall latest published release using pip3\n\n```shell\n# linux and mac\npython3 -m pip install --user --upgrade ezsub\n\n# windows\npython -m pip install --user --upgrade ezsub\n```\n\nFor installing latest in progress version from github (not recommended) use this command:\n\n```shell\npython3 -m pip install --user --upgrade https://github.com/7aman/ezsub/archive/master.zip\n\n# windows\npython -m pip install --user --upgrade https://github.com/7aman/ezsub/archive/master.zip\n```\n\nSee [here](./wiki/Install.md) for more details.\n\n
\n\n## How to Use\n\n### Download\n\n```shell\nezsub dl -t|-T TITLE -l LNG1 [LANG2 ...] -d DESTINATION -s SITE1 [SITE2 ...] -a|-A -o|-O -S -g|G\n```\n\nFor details on each switch see [this](./wiki/Download.md#Switches)\n\nExamples:\n\n```shell\n# if search keywords are distinctive enough, use auto select (-a)\nezsub dl -t riverdale third season -l fa -a\n\n# determine site. If site is not responding, ezsub will choose first responding site automatically.\nezsub dl -t game of thrones -s subscene\n\n# movies, tv series, video musics are not different.\nezsub dl -t how to train your dragon\n\n# if you know exact title used in url use this -T\n# for example subscene page for first season of \"the end of the f***ing world\" is:\n# https://subscene.com/subtitles/the-end-of-the-fing-world\n#so:\nezsub dl -T the-end-of-the-fing-world\n\n# extract here and relative to here (both windows and unix)\nezsub dl -t aquaman -d .\nezsub dl -t aquaman -d ./children/to/here\nezsub dl -t aquaman -d ../sibling/to/here\n\n# absolute and relative path (unix)\nezsub dl -t aquaman -d /absolute/path/to/a/destination\nezsub dl -t aquaman -d ~/relative/path/to/home/directory\n\n# absolute path (windows)\nezsub dl -t aquaman -d 'D:\\Movies\\Aquaman\\'\n```\n\n### Extract Previously Downloaded Subtitles\n\n```shell\nezsub unzip -t|-T Title of Movie or TV Series -l LNG1 [LNG2 ...] -d DESTINATION -a|-A -o|-O -g|-G\n```\n\nswitches are same as `ezsub dl` [switches](#download) except there is no `-s` and `-S`. `ezsub` searches through `\"cache\"` folder. Rest is same as the download process.\n\n[More Details](./wiki/Unzip.md)\n\n### Login\n\nSince June 2019, subscene added google re-captcha. If user logs in, this captcha will not be required anymore. \nAt now (October 2019) it is easy to get a token even without user and password. Also persian mirrors such as 'hasti' and 'subf2m' do not require login.\n\n### Info\n\n```shell\nezsub info\nezsub info -v {-t|-s|-n}\n```\n\nprints some useful information such as version and cache folder details. \nWith `-v` lists all downloaded titles with size and number of files sorted by title (`-t`). for sorting based on size (s) and number of files (n) use `-s` and `-n`.\n\n### Config\n\n```shell\nezsub config show\nezsub config set OPTION VALUE\n```\n\ncommand to show or change default values.\n\n[More Details](./wiki/Config.md)\n\n```shell\nezsub config set Defaults.site hasti\n# to reset to default\nezsub config set Defaults.languages -\n```\n\n### Clean\n\n```shell\nezsub clean -t|-T TITLE -l LNG1 [LNG2 ...] [-0] -a|-A\nezsub clean --all -l LNG1 [LNG2 ...] [-0] -a|-A\n```\n\nsearches cache directory for given title and language. then:\n\n* with `-0` or `--zero` it will replace each downloaded files with empty zip files.\n* without `-0` it will delete downloaded files completely.\n\nIf you want to delete or empty all subtitles use `--all` switch. \n\n### Update\n\n```shell\nezsub update\n```\n\nCheck if there is a new version of ezsub available. If user confirms, new version will be installed. \nAlso if last check was before 7 days ago, at next call it warns user to check for update.\n\n### Backup\n\nCreate a zip archive from cache folder. It accepts `-d` option for destination and `-o|-O` for opening destination folder after backup is completed.\n\n### History\n\nTo check history of previously called ezsub command. \n\n```shell\n# show previous calls\nezsub history show\n# or simply:\nezsub history\n\n# select a previous call [its line number] to run again.\nezsub history run NUMBER\n\n# short version\nezsub h show|run\n```\n\n\n
\n\n## Report Errors\n\n`ezsub` logs some messages that could be found in `ROOT/ezsub.log` file. \nIf you getting error, you can run each `ezsub` command with `--loglevel=Debug` switch. Get `ezsub.log` content and create an issue [here](https://github.com/7aman/ezsub/issues) to report.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/7aman/ezsub", "keywords": "subtitle movie subscene", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "ezsub", "package_url": "https://pypi.org/project/ezsub/", "platform": "", "project_url": "https://pypi.org/project/ezsub/", "project_urls": { "Homepage": "http://github.com/7aman/ezsub", "source": "http://github.com/7aman/ezsub" }, "release_url": "https://pypi.org/project/ezsub/2021.9.7/", "requires_dist": [ "bs4", "requests-futures", "rarfile" ], "requires_python": ">=3.7", "summary": "Download subtitle from subscene", "version": "2021.9.7", "yanked": false, "yanked_reason": null }, "last_serial": 11379004, "releases": { "2019.10.17": [ { "comment_text": "", "digests": { "md5": "587ca968c094024afc07fe3ac2d01b4c", "sha256": "2959e47e528283d7090089079f3c30bd055b5d3e1d5620a084b6035c75ae9720" }, "downloads": -1, "filename": "ezsub-2019.10.17-py3-none-any.whl", "has_sig": false, "md5_digest": "587ca968c094024afc07fe3ac2d01b4c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 3821, "upload_time": "2019-10-17T20:28:35", "upload_time_iso_8601": "2019-10-17T20:28:35.030792Z", "url": "https://files.pythonhosted.org/packages/09/07/9b238c63f4a933d073fb327b971116e22aa4c12c8ee9dfd968f3c0550ed7/ezsub-2019.10.17-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31ec2e05eb03fa1d96539ccd10b67ab3", "sha256": "b0d49fc600e0a46b0c6db4d8e42b0a7a29670b7aa96723d491707d3495fa5493" }, "downloads": -1, "filename": "ezsub-2019.10.17.tar.gz", "has_sig": false, "md5_digest": "31ec2e05eb03fa1d96539ccd10b67ab3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 2810, "upload_time": "2019-10-17T20:28:37", "upload_time_iso_8601": "2019-10-17T20:28:37.634706Z", "url": "https://files.pythonhosted.org/packages/bd/6e/aee2752690b872f2108176bdac17d803bd116b05f1fd0d069b2fa65533a1/ezsub-2019.10.17.tar.gz", "yanked": false, "yanked_reason": null } ], "2019.10.26": [ { "comment_text": "", "digests": { "md5": "1c012e01317a15daae9479e0225dc8b5", "sha256": "53c66414a8e0111b6271137f142bb3a6c858c69065ea9171324ea14f8fee748a" }, "downloads": -1, "filename": "ezsub-2019.10.26-py3-none-any.whl", "has_sig": false, "md5_digest": "1c012e01317a15daae9479e0225dc8b5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 27306, "upload_time": "2019-10-26T10:20:38", "upload_time_iso_8601": "2019-10-26T10:20:38.521878Z", "url": "https://files.pythonhosted.org/packages/d6/71/40a6865d715ed855b0b3fb0d12ffea4c9a16be733e02f7994245daee89a6/ezsub-2019.10.26-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cde4b32144d615486a0179fe2674882b", "sha256": "cac4054a190ddb3148a0e8a1340ad1711f62f18863a12c0bc4f97ab2c09cf5c1" }, "downloads": -1, "filename": "ezsub-2019.10.26.tar.gz", "has_sig": false, "md5_digest": "cde4b32144d615486a0179fe2674882b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 22550, "upload_time": "2019-10-26T10:20:40", "upload_time_iso_8601": "2019-10-26T10:20:40.512263Z", "url": "https://files.pythonhosted.org/packages/5a/0b/354d2747da8859b855b37ea8c8d707e34b1d4291909d7b21a8445d0a924c/ezsub-2019.10.26.tar.gz", "yanked": false, "yanked_reason": null } ], "2019.10.28": [ { "comment_text": "", "digests": { "md5": "b50a738a4605277b6be7d6dbcaf8d425", "sha256": "ae372baf4681ccc00d9c604eee46de6ca515b754b479d9c1363020503e73fbbd" }, "downloads": -1, "filename": "ezsub-2019.10.28-py3-none-any.whl", "has_sig": false, "md5_digest": "b50a738a4605277b6be7d6dbcaf8d425", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 28609, "upload_time": "2019-10-28T19:34:41", "upload_time_iso_8601": "2019-10-28T19:34:41.582223Z", "url": "https://files.pythonhosted.org/packages/81/c0/9b7aebd76c0f79f10cb9ee9b2af41ac82e3fd61c7a2bf5be5d691e635a81/ezsub-2019.10.28-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de90378555ec4fc0034af87eec633d01", "sha256": "002e6452a5c0524b5b4a3dd81b54d2475d584ea3ecc1cdb749c92965ddaff2dd" }, "downloads": -1, "filename": "ezsub-2019.10.28.tar.gz", "has_sig": false, "md5_digest": "de90378555ec4fc0034af87eec633d01", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 23472, "upload_time": "2019-10-28T19:34:43", "upload_time_iso_8601": "2019-10-28T19:34:43.456363Z", "url": "https://files.pythonhosted.org/packages/b2/02/6439ec4b51a35deedb2d50e882e1859ad59120f340eeb48cd69fe0a02679/ezsub-2019.10.28.tar.gz", "yanked": false, "yanked_reason": null } ], "2019.11.1": [ { "comment_text": "", "digests": { "md5": "8985590062242cecd3f40d6226482e56", "sha256": "6f5982867e5252e61ccc85477d27898e065d8e144cbcaa4b93e3696e14149b38" }, "downloads": -1, "filename": "ezsub-2019.11.1-py3-none-any.whl", "has_sig": false, "md5_digest": "8985590062242cecd3f40d6226482e56", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 28549, "upload_time": "2019-10-31T23:01:52", "upload_time_iso_8601": "2019-10-31T23:01:52.231201Z", "url": "https://files.pythonhosted.org/packages/fb/12/bcc9d38e339a48d1a4f6479e643ec9a0440771aec8f7b655d720e9532006/ezsub-2019.11.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df9c4cbb05fd06edf1817b3c99ba8b81", "sha256": "3ae8ae16af27ee84153efdf34eeff72e22b34eb855c253a6b7c5dbf56d412d20" }, "downloads": -1, "filename": "ezsub-2019.11.1.tar.gz", "has_sig": false, "md5_digest": "df9c4cbb05fd06edf1817b3c99ba8b81", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 23722, "upload_time": "2019-10-31T23:01:54", "upload_time_iso_8601": "2019-10-31T23:01:54.424114Z", "url": "https://files.pythonhosted.org/packages/a7/c7/56c25facec547984192a042884a3922ec6b15de3e70899a236a413986bbc/ezsub-2019.11.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2019.11.6": [ { "comment_text": "", "digests": { "md5": "859e374531890b4fcc304347a7af1787", "sha256": "cab01f3c5d28aac5ca5fdac81d09dab353936058048a9466caf7ec199ff05090" }, "downloads": -1, "filename": "ezsub-2019.11.6-py3-none-any.whl", "has_sig": false, "md5_digest": "859e374531890b4fcc304347a7af1787", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 29494, "upload_time": "2019-11-06T18:31:50", "upload_time_iso_8601": "2019-11-06T18:31:50.160390Z", "url": "https://files.pythonhosted.org/packages/5d/df/eecaf2b82d9789e537674a2560140c70ef6ef32556a5b6986a0607e3fa6a/ezsub-2019.11.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ee08b40156ba67c283de5406e4b0e77", "sha256": "8acc12aaaff7302984a0b91094afd8e21f79027376930fce58744d760f2059ad" }, "downloads": -1, "filename": "ezsub-2019.11.6.tar.gz", "has_sig": false, "md5_digest": "5ee08b40156ba67c283de5406e4b0e77", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 24901, "upload_time": "2019-11-06T18:31:52", "upload_time_iso_8601": "2019-11-06T18:31:52.346786Z", "url": "https://files.pythonhosted.org/packages/42/ad/16e91b9abd7bf1b958e66b0cf0f7000d5a30adac02ed4bd5f64f4d1c354d/ezsub-2019.11.6.tar.gz", "yanked": false, "yanked_reason": null } ], "2019.11.8": [ { "comment_text": "", "digests": { "md5": "49c7a2de7533e81c7e5c058259ccb575", "sha256": "24cbc8008943d530169a23206ffbbec4300b55ec02cf4e7c9219f662403b7e32" }, "downloads": -1, "filename": "ezsub-2019.11.8-py3-none-any.whl", "has_sig": false, "md5_digest": "49c7a2de7533e81c7e5c058259ccb575", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 29614, "upload_time": "2019-11-08T15:30:22", "upload_time_iso_8601": "2019-11-08T15:30:22.858148Z", "url": "https://files.pythonhosted.org/packages/d6/6f/f08303314086b4e06b70696f637f20155b93ae5e222e11ce6bc22d2b5c99/ezsub-2019.11.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7f7c44eb672ee4d080904d9f9f397d3", "sha256": "92ad56ca9a7a4d88b3584f4e98ff363e1a76f5a8396ced23d7b3175cd27cfff9" }, "downloads": -1, "filename": "ezsub-2019.11.8.tar.gz", "has_sig": false, "md5_digest": "b7f7c44eb672ee4d080904d9f9f397d3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 24909, "upload_time": "2019-11-08T15:30:27", "upload_time_iso_8601": "2019-11-08T15:30:27.162054Z", "url": "https://files.pythonhosted.org/packages/64/31/a12ae5713af40d6d3b14a85a9881abdce475dc77f016e6d7f0c4899c40cb/ezsub-2019.11.8.tar.gz", "yanked": false, "yanked_reason": null } ], "2020.2.17": [ { "comment_text": "", "digests": { "md5": "752831abe9cbb1865a2912b238d07273", "sha256": "54ed31d3b6f4f6456247854a2ea3a371b7083345d738a86a420c2a11f4c81e38" }, "downloads": -1, "filename": "ezsub-2020.2.17-py3-none-any.whl", "has_sig": false, "md5_digest": "752831abe9cbb1865a2912b238d07273", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 29941, "upload_time": "2020-02-17T18:34:32", "upload_time_iso_8601": "2020-02-17T18:34:32.765085Z", "url": "https://files.pythonhosted.org/packages/8b/e6/31b99b9b36b2720788b0dd8b35dcbef8af5a18fd9efc97b2816415eed7d2/ezsub-2020.2.17-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99033ca447f1a67646134b6df1f06795", "sha256": "7db839e5ea6dc77e08ba42cf5548eeeef747980472223f151ec046c660dd3256" }, "downloads": -1, "filename": "ezsub-2020.2.17.tar.gz", "has_sig": false, "md5_digest": "99033ca447f1a67646134b6df1f06795", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 25227, "upload_time": "2020-02-17T18:34:34", "upload_time_iso_8601": "2020-02-17T18:34:34.695281Z", "url": "https://files.pythonhosted.org/packages/b4/e4/ca16cb32fc78b33fcfdd390d08d7c79850f5aa90dbb43720869c48cdeb1d/ezsub-2020.2.17.tar.gz", "yanked": false, "yanked_reason": null } ], "2020.2.28": [ { "comment_text": "", "digests": { "md5": "a68e3d191c69510e2f253298ed4d0c09", "sha256": "33b05433bb91d4e21fa672feb133b460582e13c99170a158be8ed16d3b33f8b8" }, "downloads": -1, "filename": "ezsub-2020.2.28-py3-none-any.whl", "has_sig": false, "md5_digest": "a68e3d191c69510e2f253298ed4d0c09", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 29946, "upload_time": "2020-02-28T05:12:31", "upload_time_iso_8601": "2020-02-28T05:12:31.648530Z", "url": "https://files.pythonhosted.org/packages/7b/83/3fb11c361cc8389ca0bd69c1224b04f5354539e348c5cb269c1b646349d1/ezsub-2020.2.28-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "538a9c8f548be26f168ce8c59029b3dc", "sha256": "5f7576e154aa43f98d135eb0520c09eac299396962c33750cea32da0cc4b5cab" }, "downloads": -1, "filename": "ezsub-2020.2.28.tar.gz", "has_sig": false, "md5_digest": "538a9c8f548be26f168ce8c59029b3dc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 26447, "upload_time": "2020-02-28T05:12:33", "upload_time_iso_8601": "2020-02-28T05:12:33.585249Z", "url": "https://files.pythonhosted.org/packages/8a/24/57c2769fa6d9191d3c3829d5a0486789382dcb8dddf67ec8ab089672fa3b/ezsub-2020.2.28.tar.gz", "yanked": false, "yanked_reason": null } ], "2020.9.17": [ { "comment_text": "", "digests": { "md5": "8e89b565e6c5cf4170c85353ae6ba060", "sha256": "f1cd3670b103c2900e39e5508068fe323abb5480af12c202c1e8ff5b19a7bb05" }, "downloads": -1, "filename": "ezsub-2020.9.17-py3-none-any.whl", "has_sig": false, "md5_digest": "8e89b565e6c5cf4170c85353ae6ba060", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 30950, "upload_time": "2020-09-17T19:44:00", "upload_time_iso_8601": "2020-09-17T19:44:00.351754Z", "url": "https://files.pythonhosted.org/packages/1f/ae/04c6db1faff679bcb3a7d0f3e5856f002f949736db67c7fe94386e5b8f80/ezsub-2020.9.17-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c878538bc6df2eb82bb501c0a5af1941", "sha256": "fb4761c4de3a7fd11e29fe8e0ebeaf83b892c2541e919552b7633527079ffa7a" }, "downloads": -1, "filename": "ezsub-2020.9.17.tar.gz", "has_sig": false, "md5_digest": "c878538bc6df2eb82bb501c0a5af1941", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 27700, "upload_time": "2020-09-17T19:44:01", "upload_time_iso_8601": "2020-09-17T19:44:01.713656Z", "url": "https://files.pythonhosted.org/packages/53/79/9c7626acbfeb07c2f7ce241cac64bbbab9544b15ba0d23869b2c577d6ef2/ezsub-2020.9.17.tar.gz", "yanked": false, "yanked_reason": null } ], "2021.2.24": [ { "comment_text": "", "digests": { "md5": "dbb6ac05e943eb38d44cd58c0a7b1276", "sha256": "ebad8fca78b4b05ff73270dbc8fe05239bab526d2f7d949a4aaa78d49c5b1ac3" }, "downloads": -1, "filename": "ezsub-2021.2.24-py3-none-any.whl", "has_sig": false, "md5_digest": "dbb6ac05e943eb38d44cd58c0a7b1276", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 30941, "upload_time": "2021-02-24T06:35:54", "upload_time_iso_8601": "2021-02-24T06:35:54.310783Z", "url": "https://files.pythonhosted.org/packages/09/00/f4becd89c7c6e864c0420a9d7a8bfa4bba7e8e54d76a1d20d3b62a7a4187/ezsub-2021.2.24-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5bf9f865f8adba0116687ae821f5fc19", "sha256": "525979445f3739c96c48b3a995419380f83e8f8bacfdddf505ee9d2257805140" }, "downloads": -1, "filename": "ezsub-2021.2.24.tar.gz", "has_sig": false, "md5_digest": "5bf9f865f8adba0116687ae821f5fc19", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 27737, "upload_time": "2021-02-24T06:35:56", "upload_time_iso_8601": "2021-02-24T06:35:56.858781Z", "url": "https://files.pythonhosted.org/packages/81/df/9f8af93083c9d10e870e3f7cbda1dc8760120f0fd5ebfb6441d75ef00dca/ezsub-2021.2.24.tar.gz", "yanked": false, "yanked_reason": null } ], "2021.4.4": [ { "comment_text": "", "digests": { "md5": "05da0e50fb50a19e7c86511d9681fe8c", "sha256": "06038de6c529c46981a9501c56216f205c132e3764a962581ee98ed5f77c1e5d" }, "downloads": -1, "filename": "ezsub-2021.4.4-py3-none-any.whl", "has_sig": false, "md5_digest": "05da0e50fb50a19e7c86511d9681fe8c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 30927, "upload_time": "2021-04-04T05:08:29", "upload_time_iso_8601": "2021-04-04T05:08:29.659552Z", "url": "https://files.pythonhosted.org/packages/06/83/24a001a7b1fd4ad1475c31a115965b5d2cbf4da4c3d989dcf8d1d4118d35/ezsub-2021.4.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d45792554b7a62312a02b6b611d1880", "sha256": "f2c4376194c2d908f4377c18111f57d9ab95c4e41fd80b7d92a60213f4378cda" }, "downloads": -1, "filename": "ezsub-2021.4.4.tar.gz", "has_sig": false, "md5_digest": "3d45792554b7a62312a02b6b611d1880", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 27585, "upload_time": "2021-04-04T05:08:31", "upload_time_iso_8601": "2021-04-04T05:08:31.010679Z", "url": "https://files.pythonhosted.org/packages/82/bb/b285808e7b4167c02597b987cd0f2f00942601b96705ed26388e3b8e7f0a/ezsub-2021.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "2021.9.6": [ { "comment_text": "", "digests": { "md5": "04e8d7b260d714f14e66931fb0d2f6b3", "sha256": "66ae1686a76d24e62e8135d1b03c8293eebab689014be64aa69e53ddb5c882aa" }, "downloads": -1, "filename": "ezsub-2021.9.6-py3-none-any.whl", "has_sig": false, "md5_digest": "04e8d7b260d714f14e66931fb0d2f6b3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 30926, "upload_time": "2021-09-06T18:24:26", "upload_time_iso_8601": "2021-09-06T18:24:26.362796Z", "url": "https://files.pythonhosted.org/packages/60/39/2ce459ee584e4ecdf103eff9725e75bd1757f12b3f697372045dd9940d96/ezsub-2021.9.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e492732e219848dff72bca841473402d", "sha256": "4aebe02dc9017bd2509f8608896f2b27ad72d527bcb41ec4aaba47762cfbb635" }, "downloads": -1, "filename": "ezsub-2021.9.6.tar.gz", "has_sig": false, "md5_digest": "e492732e219848dff72bca841473402d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 27640, "upload_time": "2021-09-06T18:24:29", "upload_time_iso_8601": "2021-09-06T18:24:29.102713Z", "url": "https://files.pythonhosted.org/packages/fe/6f/c2d3681de333513674126edb44866fe92b0d5378642e7ab432d77c4b105d/ezsub-2021.9.6.tar.gz", "yanked": false, "yanked_reason": null } ], "2021.9.7": [ { "comment_text": "", "digests": { "md5": "9c5e547816c6af49c2f35c8b5419f87a", "sha256": "6de8e3702a2b067f8071cd5a7d04f545ba1efa6cc67c00bb277d3fbd03941355" }, "downloads": -1, "filename": "ezsub-2021.9.7-py3-none-any.whl", "has_sig": false, "md5_digest": "9c5e547816c6af49c2f35c8b5419f87a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 30921, "upload_time": "2021-09-06T18:48:41", "upload_time_iso_8601": "2021-09-06T18:48:41.170784Z", "url": "https://files.pythonhosted.org/packages/c8/9c/b774da2ce8805cdfcdb39684313d31930a8870dafd91da8a1eadffe0d5f9/ezsub-2021.9.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88c393cbaf70532da38063af2182394c", "sha256": "bf79ab7c733b4f51342fcbf6ff51d74542ddbbad3cd2d1750dd1e686512a8f5c" }, "downloads": -1, "filename": "ezsub-2021.9.7.tar.gz", "has_sig": false, "md5_digest": "88c393cbaf70532da38063af2182394c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 27650, "upload_time": "2021-09-06T18:48:43", "upload_time_iso_8601": "2021-09-06T18:48:43.567068Z", "url": "https://files.pythonhosted.org/packages/bb/4d/a97aa3f08918a33befdc86556e1144af28d2e7ba7c85c9050ef1d678afd6/ezsub-2021.9.7.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9c5e547816c6af49c2f35c8b5419f87a", "sha256": "6de8e3702a2b067f8071cd5a7d04f545ba1efa6cc67c00bb277d3fbd03941355" }, "downloads": -1, "filename": "ezsub-2021.9.7-py3-none-any.whl", "has_sig": false, "md5_digest": "9c5e547816c6af49c2f35c8b5419f87a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 30921, "upload_time": "2021-09-06T18:48:41", "upload_time_iso_8601": "2021-09-06T18:48:41.170784Z", "url": "https://files.pythonhosted.org/packages/c8/9c/b774da2ce8805cdfcdb39684313d31930a8870dafd91da8a1eadffe0d5f9/ezsub-2021.9.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88c393cbaf70532da38063af2182394c", "sha256": "bf79ab7c733b4f51342fcbf6ff51d74542ddbbad3cd2d1750dd1e686512a8f5c" }, "downloads": -1, "filename": "ezsub-2021.9.7.tar.gz", "has_sig": false, "md5_digest": "88c393cbaf70532da38063af2182394c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 27650, "upload_time": "2021-09-06T18:48:43", "upload_time_iso_8601": "2021-09-06T18:48:43.567068Z", "url": "https://files.pythonhosted.org/packages/bb/4d/a97aa3f08918a33befdc86556e1144af28d2e7ba7c85c9050ef1d678afd6/ezsub-2021.9.7.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }