{ "info": { "author": "Mohammmed Yaseen", "author_email": "hmyaseen05@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3" ], "description": "# ecapture\n[![Downloads](https://pepy.tech/badge/ecapture)](https://pepy.tech/project/ecapture) [![Downloads](https://pepy.tech/badge/ecapture/month)](https://pepy.tech/project/ecapture/month) [![Downloads](https://pepy.tech/badge/ecapture/week)](https://pepy.tech/project/ecapture/week)\n## Image Capture Demo\n\nFirst run the following command in a cmd window\n~~~\npip install ecapture\n~~~\n\nThen, Create a new python script\n\nOpen the script\n\nImport the module\n~~~python\nfrom ecapture import ecapture as ec\n~~~ \nCapture using webcam\n~~~python\n(ec.capture(0,False,\"img.jpg\"))\n~~~\nThe capture function takes three arguments:\n\n Camera index(first connected webcam will be of index 0. The next webcam will be of index 1)\n\n Window name (It can be a variable or a string. If you don't wish to see the window, type False)\n\n ~~~python\n ec.capture(0,False,\"img.jpg\")\n ~~~\n\n Save name (It can be a variable or a string. If you don't wish to save the image, type False)\n ~~~python\n ec.capture(0,\"test\",False)\n ~~~\nThe full code\n~~~python\nfrom ecapture import ecapture as ec\n\nec.capture(0,\"test\",\"img.jpg\")\n~~~\n## Delayed Image Capture Demo\nCreate a new python script\n\nOpen the script\n\nImport the module\n~~~python\nfrom ecapture import ecapture as ec\n~~~ \nCapture the image using webcam\n~~~python\nec.delay_imcapture(0,\"Image\",\"Demo.jpg\",2)\n~~~\nThe delay_imcapture function takes four arguments:\n\n Camera index(first connected webcam will be of index 0. The next webcam will be of index 1)\n\n Window name (It can be a variable or a string)\n\n ~~~python\n ec.delay_imcapture(0,\"Video\",\"Demo.jpg\",2)\n ~~~\n\n Save name (It can be a variable or a string. If you don't wish to save the image, type False)\n ~~~python\n ec.delay_imcapture(0,\"Video\",False,2)\n ~~~\n\n The delay(The time till capturing the image)\n ~~~python\n ec.delay_imcapture(0,\"Video\",\"Demo.jpg\",2)\n ~~~\nThe full code\n~~~python\nfrom ecapture import ecapture as ec\n\nec.delay_imcapture(0,\"Video\",\"Demo.jpg\",2)\n~~~\n## Video Capture Demo\nCreate a new python script\n\nOpen the script\n\nImport the module\n~~~python\nfrom ecapture import ecapture as ec\n~~~ \nCapture the video using webcam\n~~~python\nec.vidcapture(0,\"Video\",\"Demo.avi\",\"q\")\n~~~\nThe vidcapture function takes four arguments:\n\n Camera index(first connected webcam will be of index 0. The next webcam will be of index 1)\n\n Window name (It can be a variable or a string)\n\n ~~~python\n ec.vidcapture(0,\"Video\",\"Demo.avi\",\"q\")\n ~~~\n\n Save name (It can be a variable or a string. If you don't wish to save the video, type False)\n ~~~python\n ec.vidcapture(0,\"Video\",False,\"q\")\n ~~~\n\n Exit key (The key you press to stop recording the video. It can be (\"q\", \"x\", \"a\" or any other letter))\n ~~~python\n ec.vidcapture(0,\"Video\",\"Demo.avi\",\"x\")\n ~~~\nThe full code\n~~~python\nfrom ecapture import ecapture as ec\n\nec.vidcapture(0,\"Video\",\"Demo.avi\",\"q\")\n~~~\n## Auto Video Capture Demo\nCreate a new python script\n\nOpen the script\n\nImport the module\n~~~python\nfrom ecapture import ecapture as ec\n~~~ \nCapture the video using webcam\n~~~python\nec.auto_vidcapture(0,\"Video\",\"Demo.avi\",5)\n~~~\nThe auto_vidcapture function takes four arguments:\n\n Camera index(first connected webcam will be of index 0. The next webcam will be of index 1)\n\n Window name (It can be a variable or a string)\n\n ~~~python\n ec.auto_vidcapture(0,\"Vid\",\"Demo.avi\",5)\n ~~~\n\n Save name (It can be a variable or a string. If you don't wish to save the video, type False)\n ~~~python\n ec.auto_vidcapture(0,\"Video\",False,5)\n ~~~\n\n Exit time (The time until stopping recording of the video. It can be (5, 10, 15, 20 or any number of seconds in between)\n ~~~python\n ec.auto_vidcapture(0,\"Video\",\"Demo.avi\",10)\n ~~~\nThe full code\n~~~python\nfrom ecapture import ecapture as ec\n\nec.auto_vidcapture(0,\"Video\",\"Demo.avi\",5)\n~~~\n## Motion Detection\nCreate a new python script\n\nOpen the script\n\nImport the module\n~~~python\nfrom ecapture import motion as md\n~~~ \nCheck for movement using webcam\n~~~python\nmd.motion_detect(0,\"x\",0.85,\"Detection\")\n~~~\nThe motion_detect function takes four arguments:\n\n Camera index(first connected webcam will be of index 0. The next webcam will be of index 1)\n\n Key to stop checking for motion. It can be (\"q\", \"x\", \"a\" or any other letter)\n\n Window name (It can be a variable or a string. If you don't wish to see the window, type False)\n\n Threshold(any value from 0-1)If threshold is set to high value(0.6-1), even the slightest movement will be detected. \n And if threshold is set to a low value(0-0.59), only more rapid monement will be detected\n\nThe full code\n~~~python\nfrom ecapture import motion as md\n\nmd.motion_detect(0,\"x\",0.85,\"Detection\")\n~~~ \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": "https://github.com/YFOMNN/ecapture", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "ecapture", "package_url": "https://pypi.org/project/ecapture/", "platform": "", "project_url": "https://pypi.org/project/ecapture/", "project_urls": { "Homepage": "https://github.com/YFOMNN/ecapture" }, "release_url": "https://pypi.org/project/ecapture/0.1.8/", "requires_dist": [ "opencv-python", "scikit-image (==0.14.2)" ], "requires_python": "", "summary": "Webcams made easy", "version": "0.1.8" }, "last_serial": 5258752, "releases": { "0.0.5": [ { "comment_text": "", "digests": { "md5": "cb6ad0a84dc094b3666903a579375af5", "sha256": "a192b3d32bfdf183f3fb02aa7f6ccfb821ce1b9165ff1c26cb3e212535e0acbb" }, "downloads": -1, "filename": "ecapture-0.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "cb6ad0a84dc094b3666903a579375af5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3306, "upload_time": "2019-04-26T09:03:22", "url": "https://files.pythonhosted.org/packages/76/ea/cac5b0dd13dfa4ec835dc73e2336aeaae4e25e9f84f3a1ff90136aa6279e/ecapture-0.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6542fad44ed3d508e859843b4f875643", "sha256": "473da6100c21a3aa07d5f00ee308f3bffce2c0476987fa024088b291dbd026a1" }, "downloads": -1, "filename": "ecapture-0.0.5.tar.gz", "has_sig": false, "md5_digest": "6542fad44ed3d508e859843b4f875643", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1806, "upload_time": "2019-04-26T09:03:24", "url": "https://files.pythonhosted.org/packages/0a/a0/59a3d3465a6b982ba595e5e4cbdb112514941d126527627f2259af8cc9bc/ecapture-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "fe9ad3148bb30956cef22abe43c46217", "sha256": "fdc5b1bf85f74d975a4c954fdd035142a274621e09248a4d188d5507ce4cc038" }, "downloads": -1, "filename": "ecapture-0.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "fe9ad3148bb30956cef22abe43c46217", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3406, "upload_time": "2019-05-03T05:13:10", "url": "https://files.pythonhosted.org/packages/3b/af/5c1059558156dd54c3d4a2fa050e7a5a7199122ff375c0118e4d43ffa8d9/ecapture-0.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1b1375702797354dfceb78821229748e", "sha256": "abb0ed954c0521dac5183f7245d2f1932f5d9ce8c772dfed56a2f1b4945e2af7" }, "downloads": -1, "filename": "ecapture-0.0.6.tar.gz", "has_sig": false, "md5_digest": "1b1375702797354dfceb78821229748e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1868, "upload_time": "2019-05-03T05:13:12", "url": "https://files.pythonhosted.org/packages/7c/3e/734a415ab9a4423b41f9b954012459a552e2fe8a125a1878c1e2782372cb/ecapture-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "3c40c893548bd3556a381796c964b91a", "sha256": "9aaef6e0aa55f520f3dbd9917408dc93b11b88ca9d1c09a20285308328a2f1cc" }, "downloads": -1, "filename": "ecapture-0.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "3c40c893548bd3556a381796c964b91a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3412, "upload_time": "2019-05-03T05:27:23", "url": "https://files.pythonhosted.org/packages/f0/fe/ee8cf058910dcb0eab268d9453ffebfe421df55a076ca3911a5b22b5c26c/ecapture-0.0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1e599de80781703ae1f881a47170b943", "sha256": "c7d7bd1dc625f41b2e48581f6d9ff5b5f81afdb2e38e5388a3920dace3f8a7a8" }, "downloads": -1, "filename": "ecapture-0.0.7.tar.gz", "has_sig": false, "md5_digest": "1e599de80781703ae1f881a47170b943", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1853, "upload_time": "2019-05-03T05:27:25", "url": "https://files.pythonhosted.org/packages/2a/13/8b22a56a9fe84e75d6ee2b7174dd0948771c63ff8291e777ecda334412e0/ecapture-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "1933bb3c4dd825f581d22db6a61eba16", "sha256": "1728afde4afe035d46edc38ad3d3b1ed4ae4de8108f3d50670c2b540bcf973c2" }, "downloads": -1, "filename": "ecapture-0.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "1933bb3c4dd825f581d22db6a61eba16", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3417, "upload_time": "2019-05-03T05:31:30", "url": "https://files.pythonhosted.org/packages/1d/cb/7ba0cf15f92e002b4a67fd199548c104dac3d46dcbfb2c430174a7570459/ecapture-0.0.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "42fd2aaa73bf84933325b633fcba7179", "sha256": "73a4eda66e11d72f111afda00ac1222e10b99457b87e12bd3367ace4ed6aba05" }, "downloads": -1, "filename": "ecapture-0.0.8.tar.gz", "has_sig": false, "md5_digest": "42fd2aaa73bf84933325b633fcba7179", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1855, "upload_time": "2019-05-03T05:31:31", "url": "https://files.pythonhosted.org/packages/55/0d/e922763a12a1f69b46eb069ceded542c8feb309a0756219ff2dae9de8dc9/ecapture-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "1fb108fdd7c18f4aa91325c6cd3107e5", "sha256": "863763bde1342ca7530d4d0ef6726a1dc7fb73ff7eb7dea47895d5b63772f88f" }, "downloads": -1, "filename": "ecapture-0.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "1fb108fdd7c18f4aa91325c6cd3107e5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4226, "upload_time": "2019-05-03T15:16:42", "url": "https://files.pythonhosted.org/packages/95/e8/b2288eed9cf1faca4f46a2fc541aa241e1fca245360839126042f68a9dc7/ecapture-0.0.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bd849f5115cc766cc0c24bcd53185f35", "sha256": "e01d32415f216683eb0cb1521119ff13d329f1ad5d6b4fbc8f29f857576b0625" }, "downloads": -1, "filename": "ecapture-0.0.9.tar.gz", "has_sig": false, "md5_digest": "bd849f5115cc766cc0c24bcd53185f35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2476, "upload_time": "2019-05-03T15:16:44", "url": "https://files.pythonhosted.org/packages/a1/f9/b3bbb122449deae00742764727bfa85d78c8f3b59d04433416b87844d51f/ecapture-0.0.9.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "8b32d6a4e8b0ab7dfb5841c8d003217f", "sha256": "794b8e1ca5d7a70dd3e6e095e6706e156eae3895f3df43ed56d9ea3fdef99f33" }, "downloads": -1, "filename": "ecapture-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8b32d6a4e8b0ab7dfb5841c8d003217f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4585, "upload_time": "2019-05-04T19:04:25", "url": "https://files.pythonhosted.org/packages/05/69/a82effbf6a3edfee3dd58835cd6944989381a1b041362ab6dcaa07874096/ecapture-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "54b24f7c692be442b53e7776ba0fa644", "sha256": "d8b47afbada1d6350f9b15ebe1b95e8318791877bbba397de23cedd138a2c29c" }, "downloads": -1, "filename": "ecapture-0.1.0.tar.gz", "has_sig": false, "md5_digest": "54b24f7c692be442b53e7776ba0fa644", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2761, "upload_time": "2019-05-04T19:04:27", "url": "https://files.pythonhosted.org/packages/17/c5/7e2cc5237ffad660e00964eeb5f714b5841baa6f9449e1e8695758590160/ecapture-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "cf82fc4f13cbde2bc8ee7c98c6b6da7e", "sha256": "f31858b9db6a715243edd9cb0c4c5ddf4dca9beaf7dd6524f89beed622aba553" }, "downloads": -1, "filename": "ecapture-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "cf82fc4f13cbde2bc8ee7c98c6b6da7e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4581, "upload_time": "2019-05-05T11:26:06", "url": "https://files.pythonhosted.org/packages/71/8d/18f21f9ee6ab2c7c3137b1b59846aeeac861f3169d4f8542fb88a3a9bf73/ecapture-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d107e997cf11e726fb8bb18d5d4892f1", "sha256": "0e3809e6c06321b8aa6213621b5e0cac541e63eaa8f321c3f442366aa4f58564" }, "downloads": -1, "filename": "ecapture-0.1.1.tar.gz", "has_sig": false, "md5_digest": "d107e997cf11e726fb8bb18d5d4892f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2745, "upload_time": "2019-05-05T11:26:07", "url": "https://files.pythonhosted.org/packages/c4/b2/678cc0eef64370bd7aa430b72ca29ab3367c41b6d6fc35d5ddab9e3f9aca/ecapture-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "c22dfd068effdf37202bd89873d33e37", "sha256": "028f81e2445b011df79cb097088307333c340c7ce08bb049715da44cfe8e2ae1" }, "downloads": -1, "filename": "ecapture-0.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "c22dfd068effdf37202bd89873d33e37", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4714, "upload_time": "2019-05-05T12:28:08", "url": "https://files.pythonhosted.org/packages/4c/24/cdd86ea170f43c538ba67b935270f80e7409057e2afde8803e301a583d97/ecapture-0.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ea4af2f2d50fc2160b46b9939ef2c9ff", "sha256": "cc46899cf9eb86aae563cb37795de335fd0f1ce36b263c91286f66736f6a73a2" }, "downloads": -1, "filename": "ecapture-0.1.2.tar.gz", "has_sig": false, "md5_digest": "ea4af2f2d50fc2160b46b9939ef2c9ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2896, "upload_time": "2019-05-05T12:28:10", "url": "https://files.pythonhosted.org/packages/9a/89/58bb4530ff23e57cede4541d7e8e15bab08880526e8ccb50f9d4bbdfa7f1/ecapture-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "c32b4555be78b93464425087a9393825", "sha256": "d63ec863ed7758757d593762869cbae9477eaf10c85427ba1f4be030885ea187" }, "downloads": -1, "filename": "ecapture-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "c32b4555be78b93464425087a9393825", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5567, "upload_time": "2019-05-08T16:09:10", "url": "https://files.pythonhosted.org/packages/6e/dc/9dfb92e123865f7367b27dddbaa3efc7253fdfc5d60e9bc29e7b8f74a80c/ecapture-0.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ce51cba7cca114ea4e59f29209460ff5", "sha256": "614414d1fcbd3b199604778fb52b54504a268314bb13ee109baed98b4121133d" }, "downloads": -1, "filename": "ecapture-0.1.3.tar.gz", "has_sig": false, "md5_digest": "ce51cba7cca114ea4e59f29209460ff5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3439, "upload_time": "2019-05-08T16:09:11", "url": "https://files.pythonhosted.org/packages/3c/f3/089fda7fcdce68410672ff5b06fce86a82bf2ce32673dcf0f80c51684f57/ecapture-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "4cf3c5f3c010de757da1de6f8800d889", "sha256": "be5436668d72c27f1d1be89e42fa44cd5761879b3a0302ec68da16b1ddc867ba" }, "downloads": -1, "filename": "ecapture-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "4cf3c5f3c010de757da1de6f8800d889", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5683, "upload_time": "2019-05-09T10:48:46", "url": "https://files.pythonhosted.org/packages/fb/b9/3dc45a1da87cfe402048b3f68b080a782edc196289a8c1fa764f68c65dce/ecapture-0.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3038f2b2a90d3547363012bfbe3a8882", "sha256": "dd36ca0975ca20330d3c5d0c9b2810ccc9460fd9b8d3c58ce4ac0695e0ee6f7e" }, "downloads": -1, "filename": "ecapture-0.1.4.tar.gz", "has_sig": false, "md5_digest": "3038f2b2a90d3547363012bfbe3a8882", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3552, "upload_time": "2019-05-09T10:48:47", "url": "https://files.pythonhosted.org/packages/e7/39/06a6a7f52edbb231034cdde4c5689598fd9765f38636919d7f58b7795327/ecapture-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "b6da16a75902fcdaa13c47cc605a076a", "sha256": "ca42cbd4e5a60cc6523299264b74678d322bd7fc154b2498bd9271d30cf28c06" }, "downloads": -1, "filename": "ecapture-0.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "b6da16a75902fcdaa13c47cc605a076a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5699, "upload_time": "2019-05-09T11:14:06", "url": "https://files.pythonhosted.org/packages/58/37/f48936a1283a4072a98e2eb3f20fe390a2d65859c63225c5d12da5ecdfb5/ecapture-0.1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "18a57de09024281ac589ffefae6fe764", "sha256": "9be5fd367691b5a9bafb8721195831e1441f2dae94a1c4e5037823a3e1396a92" }, "downloads": -1, "filename": "ecapture-0.1.5.tar.gz", "has_sig": false, "md5_digest": "18a57de09024281ac589ffefae6fe764", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3568, "upload_time": "2019-05-09T11:14:08", "url": "https://files.pythonhosted.org/packages/b0/ec/c26906802429b2266bb746c4c3b2a6485e56efe22688d7ef3ef205db2350/ecapture-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "291b48de6e2b3b16eee24e91bef5463f", "sha256": "37b00d059a41eac693b618118542678b416d50cd273f927794d5416ae01ab269" }, "downloads": -1, "filename": "ecapture-0.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "291b48de6e2b3b16eee24e91bef5463f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 5901, "upload_time": "2019-05-10T10:00:13", "url": "https://files.pythonhosted.org/packages/cf/d9/ecb9b6b26f8e8fad83b830bcb69a371fbcd8c9173895936847e599485a06/ecapture-0.1.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "30fc1a10a2d853e98a849042a9ca8615", "sha256": "20541f121f611a6c889e9256c72874b4f12da4975418d5bb0dba7277f257d1fa" }, "downloads": -1, "filename": "ecapture-0.1.6.tar.gz", "has_sig": false, "md5_digest": "30fc1a10a2d853e98a849042a9ca8615", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3699, "upload_time": "2019-05-10T10:00:15", "url": "https://files.pythonhosted.org/packages/8a/13/49bc98dcb3711d56945da4c0717c364c3828117baa601fdb872d6b7d659a/ecapture-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "7dad5d93c95ee0d6cf05f43759befced", "sha256": "3cd8b871bd59ec1d2c3a4c7cc936ed5e3e34062057f9cc9f032b2e2f5bcf30bc" }, "downloads": -1, "filename": "ecapture-0.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "7dad5d93c95ee0d6cf05f43759befced", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6808, "upload_time": "2019-05-11T07:07:48", "url": "https://files.pythonhosted.org/packages/49/5e/8c2d2b1fec49f7d319bbefc23dde135f739964f9fbe294cb843851ce4f9d/ecapture-0.1.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1693b321ffcea3c31bfdfb2761fe3df7", "sha256": "be6dd27757fe1d33fbdf8265f25452c50255bb4f35f0b4ea291550b3473b918d" }, "downloads": -1, "filename": "ecapture-0.1.7.tar.gz", "has_sig": false, "md5_digest": "1693b321ffcea3c31bfdfb2761fe3df7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3757, "upload_time": "2019-05-11T07:07:50", "url": "https://files.pythonhosted.org/packages/be/09/b92e513e648b3aed198dbbdaf6fc00b2e907fa33b3b1ec58b371b4ad8e1e/ecapture-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "3adfb33445d59268b754cc1fef8caa6f", "sha256": "a481dc20ba83f2b21d7089223b2e2ca4b0541f52a650ae56079227e86d5b38a1" }, "downloads": -1, "filename": "ecapture-0.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "3adfb33445d59268b754cc1fef8caa6f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6799, "upload_time": "2019-05-12T11:58:25", "url": "https://files.pythonhosted.org/packages/b8/6b/ce22b8ee292d8dab520190c1a7e778db3679051187886066391da3306c87/ecapture-0.1.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e115e7357e7df0aec6fea2558bdda38f", "sha256": "c1234a451c7876a28a5fe9df412c35a65c4a9491236eca3e6e32eea994f05e91" }, "downloads": -1, "filename": "ecapture-0.1.8.tar.gz", "has_sig": false, "md5_digest": "e115e7357e7df0aec6fea2558bdda38f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3751, "upload_time": "2019-05-12T11:58:27", "url": "https://files.pythonhosted.org/packages/cd/e7/939605c7cf6674f5c49d589c738a80e1f9c7c0a2b5378bc97ea3518fd986/ecapture-0.1.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3adfb33445d59268b754cc1fef8caa6f", "sha256": "a481dc20ba83f2b21d7089223b2e2ca4b0541f52a650ae56079227e86d5b38a1" }, "downloads": -1, "filename": "ecapture-0.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "3adfb33445d59268b754cc1fef8caa6f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6799, "upload_time": "2019-05-12T11:58:25", "url": "https://files.pythonhosted.org/packages/b8/6b/ce22b8ee292d8dab520190c1a7e778db3679051187886066391da3306c87/ecapture-0.1.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e115e7357e7df0aec6fea2558bdda38f", "sha256": "c1234a451c7876a28a5fe9df412c35a65c4a9491236eca3e6e32eea994f05e91" }, "downloads": -1, "filename": "ecapture-0.1.8.tar.gz", "has_sig": false, "md5_digest": "e115e7357e7df0aec6fea2558bdda38f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3751, "upload_time": "2019-05-12T11:58:27", "url": "https://files.pythonhosted.org/packages/cd/e7/939605c7cf6674f5c49d589c738a80e1f9c7c0a2b5378bc97ea3518fd986/ecapture-0.1.8.tar.gz" } ] }