{ "info": { "author": "Greg Gandenberger", "author_email": "gsganden@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "# Creevey\n\n![](https://images.pottermore.com/bxd3o8b291gf/22qh5bCcA0g28OeKCwgwgE/70be84ace5da257fbd54d1ca0c06972c/ColinCreevey_WB_F2_ColinHoldingCamera_Still_080615_Land.jpg?w=320&h=320&fit=thumb&f=left&q=85)\n\n**Creevey provides a simple framework for batch file processing pipelines that handles threading, piping, logging, and (optionally) skipping existing files for you.** It is designed for IO-bound batch workflows that involve reading files into memory, doing some processing on their contents, and writing out the results. **Creevey also provides predefined, extensible pipelines and reusable pipeline components, particularly for image processing.** \n\n## Example\n\nFor instance, the following code takes a list of image URLs and for each one downloads the file contents, trims off its bottom 100 pixels, resizes it to 224x224, and writes the result to disk, using ten threads for concurrency. Because `exceptions_to_catch=AttributeError` is being passed to the `run` call, this code will catch `AttributeError`s that arise during file processing, logging them as errors but continuing execution. (This error-handling functionality is useful for dealing with occasional corrupted input files.)\n\n```python\nfrom functools import partial\n\nfrom creevey import Pipeline\nfrom creevey.load_funcs.image import load_image_from_url\nfrom creevey.ops.image import resize\nfrom creevey.write_funcs.image import write_image\nfrom creevey.path_funcs import join_outdir_filename_extension\n\n\ntrim_bottom_100 = lambda image: image[:-100, :]\nresize_224 = partial(resize, shape=(224, 224))\n\ntrim_resize_pipeline = Pipeline(\n load_func=load_image_from_url, ops=[trim_bottom_100, resize_224], write_func=write_image\n)\n\nimage_filenames = ['2RsJ8EQ', '2TqoToT', '2VocS58', '2scKPIp', '2TsO6Pc', '2SCv0q7']\nimage_urls = [f'https://bit.ly/{filename}' for filename in image_filenames]\n\nkeep_filename_png_in_cwd = partial(\n join_outdir_filename_extension, outdir='.', extension='.png'\n)\nrun_report = trim_resize_pipeline.run(\n inpaths=image_urls,\n path_func=keep_filename_png_in_cwd,\n n_jobs=10,\n skip_existing=True,\n exceptions_to_catch=AttributeError,\n)\n```\n\n`trim_resize_pipeline.run(...)` returns a \"run report:\" a Pandas DataFrame with each input path as its index and columns indicating the corresponding output path (\"outpath\"), whether processing was skipped because a file already existed at the output path (\"skipped_existing\"), whether processing failed due to an exception in `exceptions_to_catch` (\"exception_handled\"), and a timestamp indicating when processing completed (\"time_finished\").\n\nIf `n_jobs` is greater than 1, then the order of the input files in the run report typically will not match the order in `inpaths`; a command like `run_report.loc[inpaths, :]` can be used to restore the original ordering if desired. \n\n## The `Pipeline` Class\n\nCreevey's core abstraction is the `Pipeline` class.\n\n### Creating a `Pipeline`\n\n A `Pipeline` constructor takes three arguments:\n\n1. A function `load_func` that takes a string or Path object and returns some kind of data structure in memory. In this example, `download_image` takes an image URL and returns the contents of the corresponding image as a NumPy array.\n1. A list `ops` of single-argument functions that can be piped together, with the first taking the return value of `load_func` as its input. Using a common data structure type for a single type of data is recommended so that it is easy to recombine `ops` functions; for instance, Creevey uses NumPy arrays for image data.\n1. A function `write_image` that takes the output of the last function in `ops` and writes it out to a specified location. In this example, `write_image` takes a NumPy array image and writes it to disk.\n\n### Running a `Pipeline`\n\nA `Pipeline` object's `run` method takes the following arguments:\n\n1. An iterable `inpaths` of input paths (a list of image URLs in this example).\n1. A function `outpath_func` for transforming each path in `inpaths` into a corresponding output path. In this example, `keep_filename_png_in_cwd` uses the filename from the URL but gives it a PNG extension and places it in the current working directory.\n1. The number `n_jobs` of threads to run (10 in this example).\n1. A Boolean `skip_existing` indicating whether to overwrite existing files or to skip processing input files that would result in overwriting existing files.\n1. An exception type or tuple of exceptions types `exceptions_to_catch` (optional) to catch and log without raising.\n\n### Extending an Existing Pipeline\n\nWe can simplify our sample code snippet by using an existing pipeline for downloading and writing images and simply adding our `ops`.\n\n```python\nfrom creevey.pipelines.image import download_image_pipeline\n\ntrim_resize_pipeline = download_image_pipeline\ntrim_resize_pipeline.ops = [trim_bottom_100, resize_224]\n```\n\nMore generally, it is easy to modify an existing `Pipeline` object simply by modifying the relevant attributes.\n\n## The `CustomReportingPipeline` Class\n\nThe `Pipeline` class's `run` method returns a \"run report\" with basic information about what happened during the run. The `CustomReportingPipeline` allows you to add additional information to these reports by adding to them within your `load_func`, `ops`, and `write_func`. For instance, when processing a set of image files you might wish to record each image's mean brightness while you already have it open so that you can later experiment with removing washed-out images from your dataset.\n\nYou define and run a `CustomReportingPipeline` object in the same way that you define and run a basic `Pipeline` object, except that the elements of `ops` and `write_func` need to accept the input path as an additional keyword argument \"inpath\"; and `write_func`, `ops` and `write_func` need to accept a `defaultdict(dict)` object as another keyword argument \"log_dict\", which stores the run report information for a single file. You can then enrich your run reports in one of these functions by writing e.g. `log_dict[inpath]['mean_brightness'] = mean_brightness` inside one of the functions in the pipeline (assuming that you have calculated `mean_brightness`).\n\nCreevey has some predefined pipeline component functions such as `record_mean_brightness` that are designed for use with `CustomReportingPipeline` objects. These functions all have names that start with \"record.\" Other Creevey functions accept arbitrary keyword arguments so that they they work with `CustomReportingPipeline` objects, but they do not do any custom logging. You can add logging to them if desired by writing wrappers, or you can simply add another pipeline stage that does logging.\n\nFiles that would be written to an output location where there is an existing file are skipped entirely when `skip_existing=True`, so custom logs will not be written for those files.\n\n## Limitations\n\nCreevey provides concurrency through threading rather than multiprocessing, which is appropriate for **IO-bound rather than CPU-bound** workflows.\n\n**Creevey does not force you to write threadsafe code.** It is intended to be used for workflows in which multiple files are all processed separately and written out to separate locations. This pattern is generally threadsafe, but it has some pitfalls. For instance, if your `write_func` checks whether an output directory exists and creates it if it does not, then it can happen that the process switches threads between checking whether the directory exists and attempting to create it, so that the attempt to create it raises an error. (One solution to this problem is to wrap the directory creation step in a `try/except` block, as in `creevey.write_funcs.image.write_image`.)\n\n## Structure\n\nCreevey contains the following modules. Generally, each one has a submodule which shares its name that defines generic components and an `image` submodule that defines components for working with images. Items in the former are imported into the module namespace, so that you can write e.g. `from creevey.path_funcs import combine_outdir_dirname_extension` rather than `from creevey.path_funcs.path_funcs import combine_outdir_dirname_extension`.\n\n\n1. `pipelines` contains a `core` submodule that defines the `Pipeline` and `CustomReportingPipeline` classes in addition to submodules that define extensible instances of that class. The `Pipeline` class is also in the main `Creevey` namespace so that you can simply `from creevey import Pipeline`.\n1. `load_funcs` provides functions such as `load_image_from_url` for reading files into memory.\n1. `ops` provides functions such as `resize` for processing file contents after they have been loaded into memory.\n1. `write_funcs` provides functions such as `write_image` for writing out the output of `ops`.\n1. `path_funcs` provides functions such as `combine_outdir_dirname_extension` for deriving output paths from input paths.\n1. `util` contains utility functions that complement Creevey's core functionality, such as a function to generate a list of paths to all image files recursively within a specified directory.\n\n## Q&A\n\n### Question\n\nWhat if I want to download a file, write it to disk, do further processing on it, and then write it to disk again?\n\n### Response\n\nA Creevey pipeline starts with a `load_func` that loads an item into memory from a specified location (which can be e.g. a URL or a location on disk) and ends with a `write_func` that writes out an item to a specified location (which can be e.g. an S3 URI or a location on disk). If you want to write to disk twice as described, then you have two options: \n\n1. Run two pipelines in succession, where the first downloads and writes to disk, and the second loads back in from disk, does the additional processing, and then writes to disk again.\n2. Create a `load_func` that writes to disk as a side effect.\n\nOption 2 is more efficient in theory because it avoids reading from disk. However, it is likely that you will need to iterate on your image processing, whereas you will only have to download and write to disk once. As a result, Option 1 can be more efficient in practice.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/ShopRunner/creevey/tarball/1.5.0", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ShopRunner/creevey", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "creevey", "package_url": "https://pypi.org/project/creevey/", "platform": "", "project_url": "https://pypi.org/project/creevey/", "project_urls": { "Download": "https://github.com/ShopRunner/creevey/tarball/1.5.0", "Homepage": "https://github.com/ShopRunner/creevey" }, "release_url": "https://pypi.org/project/creevey/1.5.0/", "requires_dist": [ "boto3", "joblib", "opencv-contrib-python", "pandas", "pillow", "requests", "retrying", "scikit-learn", "tqdm", "boto3 ; extra == 'dev'", "joblib ; extra == 'dev'", "opencv-contrib-python ; extra == 'dev'", "pandas ; extra == 'dev'", "pillow ; extra == 'dev'", "requests ; extra == 'dev'", "retrying ; extra == 'dev'", "scikit-learn ; extra == 'dev'", "tqdm ; extra == 'dev'", "black ; extra == 'dev'", "flake8 ; extra == 'dev'", "flake8-docstrings ; extra == 'dev'", "flake8-import-order ; extra == 'dev'", "matplotlib ; extra == 'dev'", "pytest ; extra == 'dev'", "pytest-cov ; extra == 'dev'", "responses ; extra == 'dev'" ], "requires_python": "", "summary": "Bulk image processing", "version": "1.5.0" }, "last_serial": 5992119, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "404fb2690623b7add074ea4b0738c337", "sha256": "4501ec860a07da54533247f8c619645f60a7d69fcd7bdb96bc96b31ab376cf4b" }, "downloads": -1, "filename": "creevey-0.1.0.tar.gz", "has_sig": false, "md5_digest": "404fb2690623b7add074ea4b0738c337", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10045, "upload_time": "2019-01-11T22:20:08", "url": "https://files.pythonhosted.org/packages/02/c1/7d61f00f08f7d3bc83e2b73a1b0861cec6a8c4958072595e14a6b9402e86/creevey-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "99a77ee9289e140d1bc17e93600b8d89", "sha256": "b40535bd4cb1f6a09553f931cf823ebfc7871a3c54fcc3a9289ef29ee116f2de" }, "downloads": -1, "filename": "creevey-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "99a77ee9289e140d1bc17e93600b8d89", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 12596, "upload_time": "2019-01-13T01:19:30", "url": "https://files.pythonhosted.org/packages/2b/f5/bbd20caf2ba01f2599a7dcc84f087504167c23448f9bf148f674aca3cca6/creevey-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c675cc1e7b7d5896a5c91cc89b0a394c", "sha256": "6196eb6a9a200cbc6e50e482afb6ce0804e17350f3d0fa21920172b365a8f54f" }, "downloads": -1, "filename": "creevey-0.1.1.tar.gz", "has_sig": false, "md5_digest": "c675cc1e7b7d5896a5c91cc89b0a394c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10089, "upload_time": "2019-01-11T23:14:19", "url": "https://files.pythonhosted.org/packages/48/2b/8f060f5e7dbb4789221ad5c9bff975c78c5a33883cc1f7d46d04f87cea96/creevey-0.1.1.tar.gz" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "139eddd2ee13bd78f300930573c4a35e", "sha256": "b1ef8afa6140ef8618a65df862a118ad72d7b14e879423e6926d7e4480fd3bd4" }, "downloads": -1, "filename": "creevey-0.1.11-py3-none-any.whl", "has_sig": false, "md5_digest": "139eddd2ee13bd78f300930573c4a35e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13769, "upload_time": "2019-01-17T22:03:20", "url": "https://files.pythonhosted.org/packages/25/a3/814b2710932c58acc939e5222fce80e15912bb0e84bfc899ff38c78eeec0/creevey-0.1.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8fc93ff6717200ece8340db5e2a0399f", "sha256": "c17ab85f1e272c2f5ac6dd90c9d64e60ab50b2d305bd359afe93e8f75397bca8" }, "downloads": -1, "filename": "creevey-0.1.11.tar.gz", "has_sig": false, "md5_digest": "8fc93ff6717200ece8340db5e2a0399f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10217, "upload_time": "2019-01-17T22:03:21", "url": "https://files.pythonhosted.org/packages/e8/21/b5004dac5658c5e7cf6b2978b3ca19aa3d9635b0d4b5b6cc810ea47806e7/creevey-0.1.11.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "121fbab9627d8e094bfb8a0a7214937b", "sha256": "cfab88fab89fd95fd32ae958b2f38c629b7f4facf0ebe838ab24b17799a66b75" }, "downloads": -1, "filename": "creevey-0.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "121fbab9627d8e094bfb8a0a7214937b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 12597, "upload_time": "2019-01-13T01:29:20", "url": "https://files.pythonhosted.org/packages/bf/db/ce44b298b0c67691eff29938f6d5672769a9054d9fe3eed8147cdcaee159/creevey-0.1.2-py3-none-any.whl" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "bdf8d9098c28d4d1fd867fdd9014231f", "sha256": "2a3349baeb6d497190614704c3be8e1b63fd44041e6b001ae445d02eb1733cd0" }, "downloads": -1, "filename": "creevey-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "bdf8d9098c28d4d1fd867fdd9014231f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 12667, "upload_time": "2019-01-15T21:57:20", "url": "https://files.pythonhosted.org/packages/24/54/3426bc14a782937e47819db1a10331e2788b267918bc10c010bdedeb6b0c/creevey-0.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a3272f3321cc9d1b70d9eaac7bf69019", "sha256": "cc026c01758da5fd33126068a16da2f4ebcd771fc516d4f1757566e5fe2a7767" }, "downloads": -1, "filename": "creevey-0.1.3.tar.gz", "has_sig": false, "md5_digest": "a3272f3321cc9d1b70d9eaac7bf69019", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10151, "upload_time": "2019-01-15T21:57:22", "url": "https://files.pythonhosted.org/packages/ed/bf/f0932e5e939c63c1673c707f142abe008631730de8a7214a4c5cb0e8eb9b/creevey-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "94ea4465a056f41c7dba842f492a292c", "sha256": "39a2ba277dbfdb0e09a6452c7a0042ada598b0eef8c5e90ff7b0e34bafb8ed7b" }, "downloads": -1, "filename": "creevey-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "94ea4465a056f41c7dba842f492a292c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13600, "upload_time": "2019-01-17T20:23:14", "url": "https://files.pythonhosted.org/packages/e0/e4/25e2002d271ed65b07208707601a9af7cfd0c59b460a7d4f66669d656191/creevey-0.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d47a5380cc4aadb63e0ca2d9ad2b2459", "sha256": "01f9b281f933fd43bdc85a843f12aff0e4d0ac1f46b673b7bae59bc3f9d797ad" }, "downloads": -1, "filename": "creevey-0.1.4.tar.gz", "has_sig": false, "md5_digest": "d47a5380cc4aadb63e0ca2d9ad2b2459", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10143, "upload_time": "2019-01-17T20:23:15", "url": "https://files.pythonhosted.org/packages/e6/9b/514466de3152c613c0323273c47fe664a3c547b3c77dead0a3adea41580e/creevey-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "be26ab572303b9ad1b8b332dd97dec41", "sha256": "12cdb7093bd1a188b9c1f99ca60677daa96555c5087694d14b9e7b55fedbbe73" }, "downloads": -1, "filename": "creevey-0.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "be26ab572303b9ad1b8b332dd97dec41", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13600, "upload_time": "2019-01-17T20:29:53", "url": "https://files.pythonhosted.org/packages/6f/c4/38d493599a951d8a7c9cb0dc9cc65644c101f224076e958df72d40ce8361/creevey-0.1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f2c3bdcc0693e0331ac2a8d13f1d7498", "sha256": "c9e3b9ffeb1eb94c01557a6758ba41615f8102b13bf413764365a06522f9efad" }, "downloads": -1, "filename": "creevey-0.1.5.tar.gz", "has_sig": false, "md5_digest": "f2c3bdcc0693e0331ac2a8d13f1d7498", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10142, "upload_time": "2019-01-17T20:29:54", "url": "https://files.pythonhosted.org/packages/55/a7/9c7e860a60fa0ed16664bf609d5bc68df120b546c1e101f7a6431e8952b9/creevey-0.1.5.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "d9938880e30fac0b643d8f7ae92dd397", "sha256": "1e2a80c9b09b1e3f8a12f5ec414495013e4bcd724c132831502c1fbf053b28ca" }, "downloads": -1, "filename": "creevey-0.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "d9938880e30fac0b643d8f7ae92dd397", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13615, "upload_time": "2019-01-17T21:02:48", "url": "https://files.pythonhosted.org/packages/5c/8c/52478583b4c9b0bebc9caf29fabd8e1c7c68ef699559284a9997dfb9dbd3/creevey-0.1.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "52a154af905332f0515b67a3049cfe3a", "sha256": "f5cb5e6124a25fa1fe28d5d2ae6d30037200f5d7123240149e57b7bcf33b7b27" }, "downloads": -1, "filename": "creevey-0.1.7.tar.gz", "has_sig": false, "md5_digest": "52a154af905332f0515b67a3049cfe3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10147, "upload_time": "2019-01-17T21:02:56", "url": "https://files.pythonhosted.org/packages/ab/86/c7cda9fa68853a7b7d8480bcd6bc08e8ab1245c2d3963818ebf8cfbfa94d/creevey-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "43d1ac0845ce7f4f9c398bb8b755cc5e", "sha256": "05a9cfcd6dd871296393794f64086ecdebc80f852917c22514e4956c9499fd2a" }, "downloads": -1, "filename": "creevey-0.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "43d1ac0845ce7f4f9c398bb8b755cc5e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 13616, "upload_time": "2019-01-17T21:15:43", "url": "https://files.pythonhosted.org/packages/6b/67/01de52ae8455afe1ac41833476760fc3a1efac701795d680fe1fdb4c60ad/creevey-0.1.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "25d9732e808fee7ea4b51523885e82d1", "sha256": "1790446850a2d5ac70d47d1b146ae43fc6a23229f8b1e67a41a44263005ae967" }, "downloads": -1, "filename": "creevey-0.1.8.tar.gz", "has_sig": false, "md5_digest": "25d9732e808fee7ea4b51523885e82d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10154, "upload_time": "2019-01-17T21:15:44", "url": "https://files.pythonhosted.org/packages/41/c4/d89b249ce81ed6e20deceda095a61fcb85625eda30fd9ffa7f31a99399e4/creevey-0.1.8.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "cbf6b8d5fb71c66e2faa9a4cb0f2df56", "sha256": "8defe032d09a1e441a4ebc0314b8d4b55e34a6739c3daf562185aafee3e87a5d" }, "downloads": -1, "filename": "creevey-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "cbf6b8d5fb71c66e2faa9a4cb0f2df56", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18336, "upload_time": "2019-01-31T21:29:40", "url": "https://files.pythonhosted.org/packages/d6/33/3b6e039965bf7b12d3030c45e46a49241d1138808fbea09928bd83ceba55/creevey-0.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fd8bc47587c81c6c78a33fbd46c7116e", "sha256": "4a03631bc9a8fd26bc52458d749d9dfb894143c2cc00ee2f210a37328c366615" }, "downloads": -1, "filename": "creevey-0.3.1.tar.gz", "has_sig": false, "md5_digest": "fd8bc47587c81c6c78a33fbd46c7116e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13838, "upload_time": "2019-01-31T21:29:41", "url": "https://files.pythonhosted.org/packages/97/a2/4d7ec23d199c98320a5b60bf65d00a7545158909879ea31279e9ec0ec6ce/creevey-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "695fd94820aa120e22496ee992e727fb", "sha256": "4cf35512745e6f18cc64584f0ea8f1e12a86b16388f365598728ac9e31ae6521" }, "downloads": -1, "filename": "creevey-0.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "695fd94820aa120e22496ee992e727fb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18410, "upload_time": "2019-02-18T18:45:28", "url": "https://files.pythonhosted.org/packages/a5/10/59f54db20a7c4cdc3ff17f8e417fd48002ead07e0b4506f8ad8f1e931bda/creevey-0.3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "75bf9d622d1c0826f4d7b3814711ed09", "sha256": "e4f19e718602688ef3e1ae75b56e2d28abb65c95a734eaf9f5111032d4f0225a" }, "downloads": -1, "filename": "creevey-0.3.2.tar.gz", "has_sig": false, "md5_digest": "75bf9d622d1c0826f4d7b3814711ed09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13904, "upload_time": "2019-02-18T18:45:29", "url": "https://files.pythonhosted.org/packages/80/37/17bd431f24488b1bd3a768b631d30cfc68b4bd4df4d6408f7c603ea0e1bc/creevey-0.3.2.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "3ec500160688a823169a935705f521b8", "sha256": "fcaef4f6298c942ee4bfdee18f3a7ebb950213c843dd35c55b7aac55bc927860" }, "downloads": -1, "filename": "creevey-1.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3ec500160688a823169a935705f521b8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 15021, "upload_time": "2019-03-07T21:23:50", "url": "https://files.pythonhosted.org/packages/99/81/c907337d967aa38920d6f91c528d40abd837cfc1c6ba8fad908b4a2ca176/creevey-1.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3f43bbb85d6c8082463d0ec789cb0bbc", "sha256": "40c66e7ec8dbf8599e71291ef232cfc5800847e560c7968988becfbdac475f0b" }, "downloads": -1, "filename": "creevey-1.2.0.tar.gz", "has_sig": false, "md5_digest": "3f43bbb85d6c8082463d0ec789cb0bbc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11380, "upload_time": "2019-03-07T21:23:52", "url": "https://files.pythonhosted.org/packages/00/63/13b341b8c18cada6f8f1ba5e09825090a2f7be883e16174458ebd008e381/creevey-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "742820d1b30c47040bfbe7d028183217", "sha256": "92c4e15f248f85eb3f9d3cb970379c76978280919d3a0dceccea17638f3428cb" }, "downloads": -1, "filename": "creevey-1.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "742820d1b30c47040bfbe7d028183217", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 15014, "upload_time": "2019-03-13T21:21:57", "url": "https://files.pythonhosted.org/packages/3c/bb/cf4848ab72e38e9e624999e5f1e7dc908051e629d0f9d4850f7a601c142c/creevey-1.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c64b505bbcaf10790aaae654ff639dce", "sha256": "0d772d7a89b50aef2d8200577fd774bc99ac526b6321836594dcec6731c13550" }, "downloads": -1, "filename": "creevey-1.2.1.tar.gz", "has_sig": false, "md5_digest": "c64b505bbcaf10790aaae654ff639dce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11345, "upload_time": "2019-03-13T21:21:59", "url": "https://files.pythonhosted.org/packages/5b/40/7d2249d8af762db95379e369aac144d80495d122a31311adbbfddd612715/creevey-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "92e2b8ebf5e37a5330844ed3f361d869", "sha256": "161bfcfe3c3af9fe0342a22bec01ac18135ec6d067f320014dc4a1d1489974e9" }, "downloads": -1, "filename": "creevey-1.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "92e2b8ebf5e37a5330844ed3f361d869", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17484, "upload_time": "2019-03-14T00:04:48", "url": "https://files.pythonhosted.org/packages/ed/ba/d583c5263137fcc3f51ea2e579d15ab47d95960557ec04106c7d4fb148a0/creevey-1.2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f7d747c47991d688622d64f211aa4faa", "sha256": "6b602652dc736c52402cf80f0b5b84e5b46b5d32eade3c270637785bc22a1c93" }, "downloads": -1, "filename": "creevey-1.2.2.tar.gz", "has_sig": false, "md5_digest": "f7d747c47991d688622d64f211aa4faa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12626, "upload_time": "2019-03-14T00:04:49", "url": "https://files.pythonhosted.org/packages/f9/5c/b28f01fe61364fb459e1b8ae31ac300f3427d0a8d55b41736fffd076ab08/creevey-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "ff3074028cf8ceddd7b7a1b367db67c2", "sha256": "f8ca2905b1a42839cee645bfee595cc509b5443e2aace955112f7be40671996c" }, "downloads": -1, "filename": "creevey-1.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "ff3074028cf8ceddd7b7a1b367db67c2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17548, "upload_time": "2019-03-22T20:07:15", "url": "https://files.pythonhosted.org/packages/34/a0/6a1d80423983cee4573821fe1aa5d624415c38a0931107c006f9ed4bbe5a/creevey-1.2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1a53e313d738aa769e3b7a8899bcbfec", "sha256": "e7542c75d510490fa6f1ac58bba10bd3199c117d1050b5ced6434712874e3da6" }, "downloads": -1, "filename": "creevey-1.2.3.tar.gz", "has_sig": false, "md5_digest": "1a53e313d738aa769e3b7a8899bcbfec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12670, "upload_time": "2019-03-22T20:07:17", "url": "https://files.pythonhosted.org/packages/65/86/be492ccd6a613e5e64fff680fc59521a30667cae47baaf87469465c09ac8/creevey-1.2.3.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "c5350b8673e855058c895e168aa83eb8", "sha256": "c0bd53076f9227225b902c28a2ea3da56024d266c321bb3d03dd763a136af28a" }, "downloads": -1, "filename": "creevey-1.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c5350b8673e855058c895e168aa83eb8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17712, "upload_time": "2019-04-11T16:53:06", "url": "https://files.pythonhosted.org/packages/4d/34/1d65fbbf00374ad3b6732b4a646ecfaf99160bd99f9cd6955cc809d7acf8/creevey-1.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d915a7790398bfc7879b34761056471f", "sha256": "51cabffe82bbfe113ec132ea177b071a9ac4b452f12bc6dac4a43cd2b730ef56" }, "downloads": -1, "filename": "creevey-1.3.0.tar.gz", "has_sig": false, "md5_digest": "d915a7790398bfc7879b34761056471f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12794, "upload_time": "2019-04-11T16:53:07", "url": "https://files.pythonhosted.org/packages/db/69/e629796fe256f6d9fa6a3c6d99bb799673beb7b503db88e46e68470f1d45/creevey-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "c1c8ed6f65821e90bc056f741f76f3a5", "sha256": "05b3a5f14457cc9588c06872232f1e4acaa87e7adf3ae2294eb1b54d4822af8e" }, "downloads": -1, "filename": "creevey-1.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c1c8ed6f65821e90bc056f741f76f3a5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17773, "upload_time": "2019-05-07T17:18:35", "url": "https://files.pythonhosted.org/packages/1e/33/cce8384127f43e921f22d9d1601e974f01707e7270fe78cc10f7430b36df/creevey-1.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e4f2508a8d0876d324ce34a5dd7315cd", "sha256": "d0bbc36b0b4155c3faeb50dcfe67f5ccd9df1a78cfa3c7ec1f04e9612404ca76" }, "downloads": -1, "filename": "creevey-1.3.1.tar.gz", "has_sig": false, "md5_digest": "e4f2508a8d0876d324ce34a5dd7315cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12855, "upload_time": "2019-05-07T17:18:37", "url": "https://files.pythonhosted.org/packages/da/63/e4b9adac380964c7bd021fa9a7ae872ccf1e07a33eef876059084d2920ff/creevey-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "6acabb8c7bcae7b09e0371c9132ee397", "sha256": "770c8baa8e16d1b0a0ede8ae8def33d649a65c354e686c82c246bf1cdfabfe91" }, "downloads": -1, "filename": "creevey-1.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "6acabb8c7bcae7b09e0371c9132ee397", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17925, "upload_time": "2019-05-14T19:35:10", "url": "https://files.pythonhosted.org/packages/e2/10/c20d9cc1055f234b885b46125fdab9f6c81bb94e90ee04ecfdeebf8f57d5/creevey-1.3.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d1ee82a06fc125343a277745e671533b", "sha256": "42850274b96a6f4d0228729c4fd0f783e12d2eb1e7796cb23c2ee381bd6bef26" }, "downloads": -1, "filename": "creevey-1.3.2.tar.gz", "has_sig": false, "md5_digest": "d1ee82a06fc125343a277745e671533b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12982, "upload_time": "2019-05-14T19:35:12", "url": "https://files.pythonhosted.org/packages/52/84/e4c8195acce20b73cce6e2f7127f64ce45a3523273730b56b654cb6ddbd7/creevey-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "2ebcfb5bd69563c5743bc9a14272030c", "sha256": "ce806bf778cfc6f85a2f6f0adb4e215f1e877a09bc306d3531754aab2d7b1409" }, "downloads": -1, "filename": "creevey-1.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "2ebcfb5bd69563c5743bc9a14272030c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17773, "upload_time": "2019-05-17T14:28:00", "url": "https://files.pythonhosted.org/packages/51/29/166e6ba772f089b67bd2f41f859960f68650f41f16c13304eea61b87cc5d/creevey-1.3.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1336415d7e208aff2bc0008696ce5376", "sha256": "ba6fd712080193fc0a2fc1f94c06a7f6d4aeb48528f2333faefd8eb5f0983a0f" }, "downloads": -1, "filename": "creevey-1.3.3.tar.gz", "has_sig": false, "md5_digest": "1336415d7e208aff2bc0008696ce5376", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12851, "upload_time": "2019-05-17T14:28:01", "url": "https://files.pythonhosted.org/packages/c0/dd/3a6ce0389d9f62be99fc062a1d039e1a327deda4aba5eccf18c34c5f487b/creevey-1.3.3.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "a5b2526f651756e53a62c968a0d796ab", "sha256": "133883b3c6b39ad75632f2c6fd8f2bc732ca02080e90bca6f6fc1d1be38ff0cc" }, "downloads": -1, "filename": "creevey-1.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a5b2526f651756e53a62c968a0d796ab", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18055, "upload_time": "2019-05-31T20:01:31", "url": "https://files.pythonhosted.org/packages/e9/a5/4fbc54a1694d683f177a892bedb69db103fbc05eab2d00bc647fe26ee044/creevey-1.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e6d696922c88d01515d7d9c680264636", "sha256": "387c3012417dd9277c4e815c24494513dd390f47d7d24fd71d3b6108d6de79b0" }, "downloads": -1, "filename": "creevey-1.4.0.tar.gz", "has_sig": false, "md5_digest": "e6d696922c88d01515d7d9c680264636", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13114, "upload_time": "2019-05-31T20:01:33", "url": "https://files.pythonhosted.org/packages/ba/2c/0e34d21c0c3c8d90ddc37a9e432e0b423550fc3163c544995513c3a1f256/creevey-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "b32cba3157e89c4598661105cd895da7", "sha256": "9f091a2ddca687ff21ce46638cea7f1a926952b2ef07cee38d5bea148b0e263d" }, "downloads": -1, "filename": "creevey-1.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b32cba3157e89c4598661105cd895da7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18054, "upload_time": "2019-06-03T17:12:14", "url": "https://files.pythonhosted.org/packages/2d/f8/5aaf2aa6a5b48ccb0329b70059409c2650b7b11a88546c3eb10eb6e15647/creevey-1.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f2f23e9312fdf2cc54cb341ef93ce78d", "sha256": "313d07184f8840eeae8094ebcfe539710fcb125370ed719679bce6a1f0692c55" }, "downloads": -1, "filename": "creevey-1.4.1.tar.gz", "has_sig": false, "md5_digest": "f2f23e9312fdf2cc54cb341ef93ce78d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13112, "upload_time": "2019-06-03T17:12:16", "url": "https://files.pythonhosted.org/packages/2b/c4/41c53614ad79e36a0e4bacd1e5249ba23e21287ffb461c353c1cce38d626/creevey-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "dc3c77ec81aa66bf1dac85891c63fa35", "sha256": "5b615830932f11421cb99804bfd2a67bd19e2ebe4d4094e869c896262aaf21b0" }, "downloads": -1, "filename": "creevey-1.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "dc3c77ec81aa66bf1dac85891c63fa35", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18053, "upload_time": "2019-06-18T15:08:40", "url": "https://files.pythonhosted.org/packages/88/91/865cabd31644b0b244a07d8533617ddfa253c05a635d7c1405fc86d5c6f0/creevey-1.4.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b9a25cd227236a59f696086ab3dd55e4", "sha256": "c607f9a98645ab89ca3665dd4937853ba0a1a73a298a81c1e429bb0f9204fcb4" }, "downloads": -1, "filename": "creevey-1.4.2.tar.gz", "has_sig": false, "md5_digest": "b9a25cd227236a59f696086ab3dd55e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13117, "upload_time": "2019-06-18T15:08:42", "url": "https://files.pythonhosted.org/packages/ad/0a/260c24a2a50b6957f92ad761c6cd08484b0103e0dcf92ff0a62b651f0963/creevey-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "fb151811b62def7d8cdceddcadc9ae62", "sha256": "85780f5d75d91cee71f96fbb0a20a70a3558054782498338ebc023c275feda33" }, "downloads": -1, "filename": "creevey-1.4.3-py3-none-any.whl", "has_sig": false, "md5_digest": "fb151811b62def7d8cdceddcadc9ae62", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18056, "upload_time": "2019-09-26T21:07:54", "url": "https://files.pythonhosted.org/packages/a9/07/a681bd150ea3fdf026e58b8fc957d56b211458b0433b3020fd8db3c4e6a3/creevey-1.4.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4c2b5c716a022297030622c77581e985", "sha256": "a2420b5298d2a22152723fe9687b419c10f7bd9f177f66d60f67fc9757e51135" }, "downloads": -1, "filename": "creevey-1.4.3.tar.gz", "has_sig": false, "md5_digest": "4c2b5c716a022297030622c77581e985", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16076, "upload_time": "2019-09-26T21:07:56", "url": "https://files.pythonhosted.org/packages/d7/6e/76f48c0f5bcdd3e2db786de6c3b27c5d0239f87b538b3134c2dfee967cf2/creevey-1.4.3.tar.gz" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "f23294e51e8828b86c8aba5808808bfc", "sha256": "5e01b7cd0c26d0cb56b124f97c63f93d312c534d7f62cd4a96268928ebe9b584" }, "downloads": -1, "filename": "creevey-1.4.4-py3-none-any.whl", "has_sig": false, "md5_digest": "f23294e51e8828b86c8aba5808808bfc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18062, "upload_time": "2019-10-16T20:46:29", "url": "https://files.pythonhosted.org/packages/ac/f2/47d555b100fb25fb59119d6d67707872f619f8e6004fc75693303184af84/creevey-1.4.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f947eb74a7045842d83a1ab85677c966", "sha256": "84710b8ff66d917838eb15ac548681c2918cc19f78b3588441f1c4cb9b3b7d88" }, "downloads": -1, "filename": "creevey-1.4.4.tar.gz", "has_sig": false, "md5_digest": "f947eb74a7045842d83a1ab85677c966", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16072, "upload_time": "2019-10-16T20:46:30", "url": "https://files.pythonhosted.org/packages/d6/39/8c32460cb2f8d630929779cd696bb4a1f0c6cafa3135c224ad88f8305a5c/creevey-1.4.4.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "e4f328398ac8c2b44e93a9c4b1e7ea9d", "sha256": "3c3c78ce8937be72fdf01a9de2c664ef754217bb99d0e5b38791555865be77cf" }, "downloads": -1, "filename": "creevey-1.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e4f328398ac8c2b44e93a9c4b1e7ea9d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18674, "upload_time": "2019-10-17T20:05:20", "url": "https://files.pythonhosted.org/packages/6e/9d/6459fce438cd3d61f14fe49a0447edf852e7cba0273e16f003a993cb91f7/creevey-1.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d764cad0544dbded376d1953345bf625", "sha256": "ed8fda221e4738b83a511fd5458cfcf7bb597d305c870b935b3c64d79cacbdb5" }, "downloads": -1, "filename": "creevey-1.5.0.tar.gz", "has_sig": false, "md5_digest": "d764cad0544dbded376d1953345bf625", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16734, "upload_time": "2019-10-17T20:05:22", "url": "https://files.pythonhosted.org/packages/6c/56/532a0473f862d31c091dd3819cd4848c505668c77875bab5d06246cc1790/creevey-1.5.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e4f328398ac8c2b44e93a9c4b1e7ea9d", "sha256": "3c3c78ce8937be72fdf01a9de2c664ef754217bb99d0e5b38791555865be77cf" }, "downloads": -1, "filename": "creevey-1.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e4f328398ac8c2b44e93a9c4b1e7ea9d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18674, "upload_time": "2019-10-17T20:05:20", "url": "https://files.pythonhosted.org/packages/6e/9d/6459fce438cd3d61f14fe49a0447edf852e7cba0273e16f003a993cb91f7/creevey-1.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d764cad0544dbded376d1953345bf625", "sha256": "ed8fda221e4738b83a511fd5458cfcf7bb597d305c870b935b3c64d79cacbdb5" }, "downloads": -1, "filename": "creevey-1.5.0.tar.gz", "has_sig": false, "md5_digest": "d764cad0544dbded376d1953345bf625", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16734, "upload_time": "2019-10-17T20:05:22", "url": "https://files.pythonhosted.org/packages/6c/56/532a0473f862d31c091dd3819cd4848c505668c77875bab5d06246cc1790/creevey-1.5.0.tar.gz" } ] }