{ "info": { "author": "Hakan Temiz, Hasan Sakir Bilge", "author_email": "htemiz@artvin.edu.tr, bilge@gazi.edu.tr", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "##
A Python Framework for Obtaining and Automating Super Resolution with Deep Learning Algorithms
\n\n\n[](https://zenodo.org/badge/latestdoi/198432258)\n\n\n\nDeepSR is an open source progam that eases the entire processes of the Super Resolution (SR) problem in terms of Deep Learning (DL) algorithms. DeepSR makes it very simple to design and build DL models. Thus, it empowers researchers to focus on their studies by saving them from struggling with time consuming and challenging workloads while pursuing successful DL algorithms for the task of SR.\n
\n\n\nEach step in the workflow of SR pipeline, such as pre-processing, augmentation, normalization, training, post-processing, and test are governed by this framework in such a simple, easy and efficient way that there would remain at most very small amount of work for researchers to accomplish their experiments. In this way, DeepSR ensures a way of fast prototyping and providing a basis for researchers and/or developers eliminating the need of commencing whole job from the scratch, or the need of adapting existing program(s) to new designs and implementations. \n
\n\n\n\nDeepSR is designed in such a way that one can interact with it from the command prompt, or use it as class object by importing it into another program. It is mainly tailored for using it with scripts from command prompt by providing many ready-to-use functionalities at hand. Hence, multiple tasks/experiments can be performed successively by using batch scripts. However, addition to command prompt interface, it is ready also to do the same tasks by calling it as a class object from another Python program. Addition to this, one can develop his/her own programs or can write Python scripts performing subject specific tasks at his/her disposal. Even more, he/she can add new features to the program to contribute this effort for making it better.\n
\n\n In order to construct DL models, DeepSR utilizes [Kears](https://www.keras.io). Keras is capable of running on top of the\n following prominent DL frameworks: \n\n [TensorFlow](https://www.tensorflow.org), [Theano](http://deeplearning.net/software/theano/) and [CNTK](https://github.com/microsoft/CNTK)\n\n It transforms DL models designed by coding with its API into the models of these frameworks. Thus, this program is capable of running models on both CPUs or GPUs seamlessly by leveraging these frameworks.\n\n\n## Installation\n\nIn order to install the DeepSR, issue the following command in command prompt.\n\n python -m pip install DeepSR\n\nThe downloadable binaries and source code are available at PyPI repository in the following address:\n\n https://pypi.org/project/DeepSR\n\n ## How to Use It\n\nDeepSR fundamentally consists of three Python files: DeepSR.py, args.py, and utils.py. \nThe DeepSR object is declared in the file DeepSR.py. It is the core python module called first for running the program.\n All parameters that can be used with DeepSR in command prompt are defined in the file args.py.\n The module, utils.py accompanies many tools making the life easier and maintaining the reusability.\n\n\n
\n
\n
\nAll needs to be done is to build up a DL model using the API of Keras within a model file (a python file),\n and then, provide the program the relevant information and/or instructions. A Model file is an ordinary \n Python file (a .py) must have at least two things within itself:\n- A dictionary named `settings`. This dictionary is used to supply the DeepSR with all necessary settings\n and/or instructions to perform tasks.\n- A method named `build_model`. This method preserves the definition of the model in Keras API,\n and returns it the composed version of it. By this way, DeepSR intakes deep learning models \n (either from command prompt, or whereas it is used as an class object)\n
\n\n\nPlease refer to the Section 3 in the program manual, for further information about model files.\n To see a sample model file, locate the samples folder within DeepSR folder.\n
\n\n\nThis dictionary is used to provide the program all necessary settings and/or instructions to do intended tasks. \nSettings are given in the dictionary in a key-value pairs. All keys are summarized in the [manual](DeepSR/docs/DeepSR Manual v1.0.0.pdf)\nThe keys correspond to command arguments in command prompt. One can easily construct and set his/her models\nwith parameters by providing key-value pairs in this dictionary to perform Super Resolution task with \nDeep Learning methods.\n
\n\n\nHowever, the same settings can also be given to the program as arguments in command prompt.\nPlease note that although settings were designated in the dictionary, the same settings provided as arguments\nin command prompt override them. Thus, the program ignores the values/instructions of those settings designated \nin the dictionary and uses the ones given as command arguments. \n
\n\n\nThe alteration of the settings is valid only for the class object, not valid for model files.\nNamely, settings are not changed in the dictionary within the model files. Model files will remain intact. \n
\n\n\n### Interacting with Command Prompt\n\n\n\nThe following code snippet is a sample for the use of the program from command line. This code instructs the DeepSR \nto start training the model given (returned from build_model function) in the file 'sample_model_1.py' with the parameters\ngiven in the dictionary 'settings' within the same file. If you check the model file, for example,\nyou will notice that training will to be performed for 10 epoch, scale is 4, learning rate is 0.001, and so on. \nThe test results (scores of image quality measures used in test procedure) \nobtained from each test images are saved in an Excel file with the average scores of measures over test set.\n
\n\n python DeepSR.py --modelfile \u201csample_model_1.py\u201d --train\n\nPlease note that it is assumed that the location of the DeepSR.py file has already set to the system's PATH.\n\nTo perform the test for the evaluation of the model's performance on given test set of images \nby a number of image quality measures, add `--test` argument to above code\n\n python DeepSR.py --modelfile \u201csample_model_1.py\u201d --train --test\n\nThe following code augments images with 90, 180, 270 degree of rotations, and applies \nMin-Max normalization (0-1) before they were given to the model for training procedure. After training, test is \ngoing to be applied also. \n\n python DeepSR.py --modelfile \u201csample_model_1.py\u201d -\u2013train -\u2013augment 90 180 270 --test --normalization minmax\n\nBelow, another model file (you can locate this file under samples folder) is used to perform the test for \na trained model by saving the outputs (images) of each layers in image files.\n\n python DeepSR.py --modelfile \u201csample_model_2.py\u201d -\u2013test --layeroutputs --saveimages\n\nMore detailed examples and explanation are given in the program manual. \n\n### Using DeepSR as Class Object\n\n\nDeepSR can be used as a Python object from another program as well. The key point here is,\n that all parameters along with settings must be assigned to the object before doing any \n operation with it. User need to designate each parameter/instruction as class member or methods \n by manually. On the other hand, there is another way of doing this procedure.\n
\n\n\nDeepSR object takes only one parameter in class construction phase for setting it up with parameters:\n args (arguments or setting, in another word). The argument, args must be a dictionary with\n key-value pairs similar to the dictionary, settings in model files. The parameters/instructions \n in args can be taken from a file programmatically or can be written in actual python code where \n the actual program is being coded. It is up to the user. \n
\n\n\nDeepSR can be constructed without providing any settings in args. The class will have no any members\n or methods in such case. This user is informed about this situation in command prompt. However,\n each parameter of the program (and also build method) must still be designated in the class as members\n before they are being used for any operations. \n
\n\n\nThe following code snippet is an example for creating DeepSR object from Python scripts by \nassigning settings to class in construction stage of the class.\n
\n\n```python\nimport DeepSR \nfrom os.path import basename \n\nsettings = \\ \n { \n 'augment': [90, 180], # can be any combination of [90,180,270, 'flipud', 'fliplr', 'flipudlr' ], or [] \n 'backend': 'theano', # keras is going to use theano framework in processing. \n 'batchsize':9, # number of batches \n 'channels': 1, # color channels to be used in training . Only one channel in this case \n 'colormode': 'YCbCr', # the color space is YCbCr. 'YCbCr' or 'RGB' \n 'crop': 0, # do not crop from borders of images. \n 'crop_test': 0, # do not crop from borders of images in tests. \n 'decay': 1e-6, # learning rate decay. \n 'earlystoppingpatience': 5, # stop after 5 epochs if the performance of the model has not improved. \n 'epoch': 2, # train the model for total 10 passes on training data. \n 'inputsize': 33, # size of input image patches is 33x33. \n 'lrate': 0.001, \n 'lrateplateaupatience': 3, # number of epochs to wait before reducing the learning rate. \n 'lrateplateaufactor': 0.5, # the ratio of decrease in learning rate value. \n 'minimumlrate': 1e-7, # learning rate can be reduced down to a maximum of this value. \n 'modelname': basename(__file__).split('.')[0], # modelname is the same as the name of this file. \n 'metrics': ['PSNR', 'SSIM'], # the model name is the same as the name of this file. \n 'normalization': ['standard', 53.28, 40.732], # apply standardization to input images (mean, std) \n 'outputdir': '', # sub directories automatically created. \n 'scale': 4, # magnification factor is 4. \n 'stride': 11, # give a step of 11 pixels apart between patches while cropping them from images for training. \n 'target_channels': 1, # color channels to be used in tests . Only one channel in this case \n 'target_cmode': 'RGB', # 'YCbCr' or 'RGB' \n 'testpath': [r'D:\\test_images'], # path to the folder in which test images are. Can be more than one. \n 'traindir': r'D:\\training_images', # path to the folder in which training images are. \n 'upscaleimage': False, # The model is going to upscale the given low resolution image. \n 'valdir': r'', # path to the folder in which validation images are. \n 'workingdir': r'', # path to the working directory. All outputs to be produced within this directory \n 'weightpath': '', # path to model weights either for training to start with, or for test. \n } \n\nDSR = DeepSR.DeepSR(settings) # instance of DeepSR object without the build_model method. \n```\n\n\nAt this point, DeepSR object was created with parameters but without the method \u201cbuild_model\u201d. \nTherefore this method must be declared in the class object in order to compose a deep learning model. \nUser can write this method in the same script and assign it to the class by calling the member method \nof the DeepSR object: set_model. In the following code snippet, a sample method for constructing \na deep learning model defined and assigned to DeepSR object by the member method.\n\n```python\nfrom keras import losses \nfrom keras.layers import Input \nfrom keras.layers.convolutional import Conv2D, UpSampling2D \nfrom keras.models import Model \nfrom keras.optimizers import Adam \n\n# a method returning an autoencoder model \ndef build_model(self, testmode=False): \n if testmode: \n input_size = None \n\n else: \n input_size = self.inputsize \n\n # encoder \n input_img = Input(shape=(input_size, input_size, self.channels)) \n x = Conv2D(32, (3, 3), activation='relu', padding='same')(input_img) \n x = Conv2D(16, (1, 1), activation='relu', padding='same')(x) \n x = Conv2D(8, (3, 3), activation='relu', padding='same')(x) \n x = Conv2D(3, (1, 1), activation='relu', padding='same')(x) \n\n # decoder \n x = UpSampling2D((self.scale, self.scale))(x) # upscale by the scale factor \n x = Conv2D(8, (3, 3), activation='relu', padding='same')(x) \n x = Conv2D(16, (1, 1), activation='relu', padding='same')(x) \n x = Conv2D(32, (3, 3), activation='relu', padding='same')(x) \n decoded = Conv2D(self.channels, (3, 3), activation='relu', padding='same')(x) \n autoencoder = Model(input_img, decoded) \n autoencoder.compile(Adam(self.lrate, self.decay), loss=losses.mean_squared_error) \n return autoencoder \n```\n\nNow, the class object is ready for further processes. A training and test procedure is being implemented below.\n\n```python\nDSR.set_model(build_model) # set build_model function to compose a DL model in the class. \n\nDSR.epoch =1 # training will be implemented for 1 time instead of 10 as defined in settings. \n\nDSR.train() # training procedure. \n\n# the performance of the model is evaluated below. \nDSR.test(testpath=DSR.testpath, weightpath=DSR.weightpath, saveimages=False, plot=False) \n\n```\n\nTo wrap all together, whole code is below.\n\n```python\nimport DeepSR \nfrom os.path import basename \n\nsettings = \\ \n { \n 'augment': [90, 180], # can be any combination of [90,180,270, 'flipud', 'fliplr', 'flipudlr' ], or [] \n 'backend': 'theano', # keras is going to use theano framework in processing. \n 'batchsize':9, # number of batches \n 'channels': 1, # color channels to be used in training . Only one channel in this case \n 'colormode': 'YCbCr', # the color space is YCbCr. 'YCbCr' or 'RGB' \n 'crop': 0, # do not crop from borders of images. \n 'crop_test': 0, # do not crop from borders of images in tests. \n 'decay': 1e-6, # learning rate decay. \n 'earlystoppingpatience': 5, # stop after 5 epochs if the performance of the model has not improved. \n 'epoch': 2, # train the model for total 10 passes on training data. \n 'inputsize': 33, # size of input image patches is 33x33. \n 'lrate': 0.001, \n 'lrateplateaupatience': 3, # number of epochs to wait before reducing the learning rate. \n 'lrateplateaufactor': 0.5, # the ratio of decrease in learning rate value. \n 'minimumlrate': 1e-7, # learning rate can be reduced down to a maximum of this value. \n 'modelname': basename(__file__).split('.')[0], # modelname is the same as the name of this file. \n 'metrics': ['PSNR', 'SSIM'], # the model name is the same as the name of this file. \n 'normalization': ['standard', 53.28, 40.732], # apply standardization to input images (mean, std) \n 'outputdir': '', # sub directories automatically created. \n 'scale': 4, # magnification factor is 4. \n 'stride': 11, # give a step of 11 pixels apart between patches while cropping them from images for training. \n 'target_channels': 1, # color channels to be used in tests . Only one channel in this case \n 'target_cmode': 'RGB', # 'YCbCr' or 'RGB' \n 'testpath': [r'D:\\test_images'], # path to the folder in which test images are. Can be more than one. \n 'traindir': r'D:\\training_images', # path to the folder in which training images are. \n 'upscaleimage': False, # The model is going to upscale the given low resolution image. \n 'valdir': r'', # path to the folder in which validation images are. \n 'workingdir': r'', # path to the working directory. All outputs to be produced within this directory \n 'weightpath': '', # path to model weights either for training to start with, or for test. \n } \n\nDSR = DeepSR.DeepSR(settings) # instance of DeepSR object without the build_model method. \n\nfrom keras import losses \nfrom keras.layers import Input \nfrom keras.layers.convolutional import Conv2D, UpSampling2D \nfrom keras.models import Model \nfrom keras.optimizers import Adam \n\n# a method returning an autoencoder model \ndef build_model(self, testmode=False): \n if testmode: \n input_size = None \n\n else: \n input_size = self.inputsize \n\n # encoder \n input_img = Input(shape=(input_size, input_size, self.channels)) \n x = Conv2D(32, (3, 3), activation='relu', padding='same')(input_img) \n x = Conv2D(16, (1, 1), activation='relu', padding='same')(x) \n x = Conv2D(8, (3, 3), activation='relu', padding='same')(x) \n x = Conv2D(3, (1, 1), activation='relu', padding='same')(x) \n\n # decoder \n x = UpSampling2D((self.scale, self.scale))(x) # upscale by the scale factor \n x = Conv2D(8, (3, 3), activation='relu', padding='same')(x) \n x = Conv2D(16, (1, 1), activation='relu', padding='same')(x) \n x = Conv2D(32, (3, 3), activation='relu', padding='same')(x) \n decoded = Conv2D(self.channels, (3, 3), activation='relu', padding='same')(x) \n autoencoder = Model(input_img, decoded) \n autoencoder.compile(Adam(self.lrate, self.decay), loss=losses.mean_squared_error) \n return autoencoder \n\nDSR.set_model(build_model) # set build_model function to compose a DL model in the class. \n\nDSR.epoch =1 # model shall be trained only for 1 epoch, instead of 10 as defined in settings. \n\nDSR.train() # training procedure. \n\n# evaluate the performance of the model. \nDSR.test(testpath=DSR.testpath, weightpath=DSR.weightpath, saveimages=False, plot=False) \n\n```\n\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/htemiz/DeepSR", "keywords": "super resolution deep learning DeepSR", "license": "", "maintainer": "", "maintainer_email": "", "name": "DeepSR", "package_url": "https://pypi.org/project/DeepSR/", "platform": "", "project_url": "https://pypi.org/project/DeepSR/", "project_urls": { "Documentation": "https://github.com/htemiz/deepsr/tree/master/DeepSR/docs", "Homepage": "https://github.com/htemiz/DeepSR", "Source": "https://github.com/htemiz/deepsr/tree/master/DeepSR" }, "release_url": "https://pypi.org/project/DeepSR/0.0.26/", "requires_dist": [ "numpy", "scipy (==1.2.1)", "pandas", "h5py", "matplotlib", "scikit-image (==0.14.3)", "scikit-video", "sporco", "Pillow", "tqdm", "sewar", "openpyxl", "numpy (>=1.13.3tensorflow-gpu==1.14.0)", "theano", "keras (==2.2.4)", "setuptools (>41.0.0)", "markdown (>=2.2.0)", "GraphViz", "importlib" ], "requires_python": ">=3", "summary": "A framework for Obtaining and Automating Super Resolution with Deep Learning Algorithms", "version": "0.0.26" }, "last_serial": 5766480, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "2e63ac3f2555fa3ff759e57bce4791db", "sha256": "acd0c70b53c5a4ec9911b11a8fd97e09a877e01c1d54a4b2a6208b07ad1c610d" }, "downloads": -1, "filename": "DeepSR-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "2e63ac3f2555fa3ff759e57bce4791db", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 1538382, "upload_time": "2019-07-22T16:00:36", "url": "https://files.pythonhosted.org/packages/18/6c/3cdfde6091425b929ea2f655b40b1f9c06f010145e99c932d997d05a3bb2/DeepSR-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3470a9d7fe9053f98f7f391622315f91", "sha256": "165bb9f13cd121d06da0ee0314e65bb33f80bf5c77cacf55c424b851eeaa4759" }, "downloads": -1, "filename": "DeepSR-0.0.1.tar.gz", "has_sig": false, "md5_digest": "3470a9d7fe9053f98f7f391622315f91", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 1534492, "upload_time": "2019-07-22T16:00:57", "url": "https://files.pythonhosted.org/packages/cd/d5/94a4bb58ff7eb09ef0b88dc2a370acff9137a16a8745d74b81b04c0856dd/DeepSR-0.0.1.tar.gz" } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "cfa59b211bb8ffa249b2f1261c9e8a30", "sha256": "37f78c02ecedf9a0fa623611e50b4f1a9d5dd7a22a06f6b90f63e6efe702ba9d" }, "downloads": -1, "filename": "DeepSR-0.0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "cfa59b211bb8ffa249b2f1261c9e8a30", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4909135, "upload_time": "2019-08-03T06:10:45", "url": "https://files.pythonhosted.org/packages/ba/8b/2ef8fdf4e1c18d04b3b39ec1d39c5a960aa698d089538c2a1c007348a103/DeepSR-0.0.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "df88fabbfead02df1db170094ddad119", "sha256": "63708a63df80266d313ae60facbd368e35fb229bd7817d3efa06575671355d22" }, "downloads": -1, "filename": "DeepSR-0.0.10.tar.gz", "has_sig": false, "md5_digest": "df88fabbfead02df1db170094ddad119", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 40336, "upload_time": "2019-08-03T06:10:48", "url": "https://files.pythonhosted.org/packages/cf/a7/5b2ef21c40c7998696a04cea886f73adacea6f0a33437d352584bf148415/DeepSR-0.0.10.tar.gz" } ], "0.0.11": [ { "comment_text": "", "digests": { "md5": "3efdadb2f4da1897ccd8a3d55ce4a8a1", "sha256": "52785cc342a81889e7ecb0253c64a9423a72dc349d0f1fb2faca43bf78232b34" }, "downloads": -1, "filename": "DeepSR-0.0.11-py3-none-any.whl", "has_sig": false, "md5_digest": "3efdadb2f4da1897ccd8a3d55ce4a8a1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4909176, "upload_time": "2019-08-03T06:23:51", "url": "https://files.pythonhosted.org/packages/22/00/178b2a9869f2bae2e3c50a530a8b1cec07c161aaa6b40f3902ca479676e7/DeepSR-0.0.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "53b4839f978d7740f252f77de64f7399", "sha256": "7502ce044e8245bbee22c8b994035b98101daf1bdb32aef1852e11efa223913e" }, "downloads": -1, "filename": "DeepSR-0.0.11.tar.gz", "has_sig": false, "md5_digest": "53b4839f978d7740f252f77de64f7399", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 40361, "upload_time": "2019-08-03T06:23:54", "url": "https://files.pythonhosted.org/packages/60/a3/1d0236934408e9a45e6983c02653c65572ec109204335cdce9cc14303d7c/DeepSR-0.0.11.tar.gz" } ], "0.0.12": [ { "comment_text": "", "digests": { "md5": "37ad6ec6e959dd0a955023278ddd9ddd", "sha256": "04f72b3db649ae8d9ae180f4b3dbfdee2261e4dbe5e13e22ebf027474cda5143" }, "downloads": -1, "filename": "DeepSR-0.0.12-py3-none-any.whl", "has_sig": false, "md5_digest": "37ad6ec6e959dd0a955023278ddd9ddd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4909172, "upload_time": "2019-08-03T06:31:22", "url": "https://files.pythonhosted.org/packages/19/3e/6934a9b9234951d48e879fd363410804ea8bf40404baf41d95219d105e8a/DeepSR-0.0.12-py3-none-any.whl" } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "0557363bcfb967c83b7b4cbf28258d9c", "sha256": "08e39d4b0d34e0f6c0532a6c74e9c062897a912ac424407d1be78f9827193ca2" }, "downloads": -1, "filename": "DeepSR-0.0.13-py3-none-any.whl", "has_sig": false, "md5_digest": "0557363bcfb967c83b7b4cbf28258d9c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4909148, "upload_time": "2019-08-03T06:44:36", "url": "https://files.pythonhosted.org/packages/bf/6d/36b47d08afbbb1b5b4b479d198661f8d7b83220688a93c45513c82e3b773/DeepSR-0.0.13-py3-none-any.whl" } ], "0.0.14": [ { "comment_text": "", "digests": { "md5": "f60f8dde961882833cd24b407da42987", "sha256": "dc37e79f69ebce6ed24f0e28d282b61fb50c43bdf5865aad7926528e8d0f6f43" }, "downloads": -1, "filename": "DeepSR-0.0.14-py3-none-any.whl", "has_sig": false, "md5_digest": "f60f8dde961882833cd24b407da42987", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4909166, "upload_time": "2019-08-03T09:04:49", "url": "https://files.pythonhosted.org/packages/4b/45/044b66b888e0395bb7412644a3e7ccd9dbaf25b7d3be8d081f093de79da6/DeepSR-0.0.14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "205f40d2648ba4d4578f7e089ef87e0b", "sha256": "64e401673145352cfc5412f933d732c38a8f6ded24213fcec2e773318956bfaa" }, "downloads": -1, "filename": "DeepSR-0.0.14.tar.gz", "has_sig": false, "md5_digest": "205f40d2648ba4d4578f7e089ef87e0b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 40375, "upload_time": "2019-08-03T09:04:52", "url": "https://files.pythonhosted.org/packages/e4/12/a3c478b8365cf38fb72ea2d3a5bc81c060bcd9df492a1df6d5cb376e5af5/DeepSR-0.0.14.tar.gz" } ], "0.0.15": [ { "comment_text": "", "digests": { "md5": "fb6aeafd6997fc33979cdf4f144d6474", "sha256": "c14e243c58470e582051570b7fb79b64ce4dae21e51a4ae775773ea1a7a6994b" }, "downloads": -1, "filename": "DeepSR-0.0.15-py3-none-any.whl", "has_sig": false, "md5_digest": "fb6aeafd6997fc33979cdf4f144d6474", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4909153, "upload_time": "2019-08-03T09:13:17", "url": "https://files.pythonhosted.org/packages/4e/63/4afe7b978592211f541824c2b3bda4bd877bf8be05008a0f32f22b2a4997/DeepSR-0.0.15-py3-none-any.whl" } ], "0.0.16": [ { "comment_text": "", "digests": { "md5": "751d42a88c0400a94a9c7f54a58816e4", "sha256": "8c349605a0fa15bd0de0a8118f987f7d4c35e01f29419246aa9f65f093095955" }, "downloads": -1, "filename": "DeepSR-0.0.16-py3-none-any.whl", "has_sig": false, "md5_digest": "751d42a88c0400a94a9c7f54a58816e4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4909151, "upload_time": "2019-08-03T09:23:39", "url": "https://files.pythonhosted.org/packages/47/f6/05acc383f29a6cdedf1b536ce0c369755aff8c1997d571b22aee7beed02f/DeepSR-0.0.16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7a2f3c5546376d32e06750221fc41e9", "sha256": "36ae4490a234a50818a661f69be516bd50c62b4613b93a226af6de259d9500ee" }, "downloads": -1, "filename": "DeepSR-0.0.16.tar.gz", "has_sig": false, "md5_digest": "d7a2f3c5546376d32e06750221fc41e9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 40362, "upload_time": "2019-08-03T09:23:43", "url": "https://files.pythonhosted.org/packages/e3/b8/6f998ddd213fea3e13cd7c155263083a22492cf0e0c27524608818bf1429/DeepSR-0.0.16.tar.gz" } ], "0.0.17": [ { "comment_text": "", "digests": { "md5": "0eb4cccf733e0209095db8eb86ffd42b", "sha256": "6952ffcf62d14bb750dd2e0b7d5dac071f8870488e756e216c50b965ca237834" }, "downloads": -1, "filename": "DeepSR-0.0.17-py3-none-any.whl", "has_sig": false, "md5_digest": "0eb4cccf733e0209095db8eb86ffd42b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4671297, "upload_time": "2019-08-08T14:53:23", "url": "https://files.pythonhosted.org/packages/a8/9f/4fd74948f89209b5975fa32e9781d349fa55400afe8629c30b9b67534f0e/DeepSR-0.0.17-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a8e4524e05a1e00fa6b8ad800e9053aa", "sha256": "55a600008619d6d2a131a0965b685b511496551e44baf88851a8638cb79a942b" }, "downloads": -1, "filename": "DeepSR-0.0.17.tar.gz", "has_sig": false, "md5_digest": "a8e4524e05a1e00fa6b8ad800e9053aa", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 40350, "upload_time": "2019-08-08T14:53:27", "url": "https://files.pythonhosted.org/packages/79/b8/e3d45c4eda7e54f93798b10bb67bac6a3621a50c6a67def8e8c6160ac472/DeepSR-0.0.17.tar.gz" } ], "0.0.18": [ { "comment_text": "", "digests": { "md5": "ee765645add1f700817414f8617fd3d3", "sha256": "a94d92485d331c336cb206a78fe8c413d3403f385510bb0dffea8a03f9a777d0" }, "downloads": -1, "filename": "DeepSR-0.0.18-py3-none-any.whl", "has_sig": false, "md5_digest": "ee765645add1f700817414f8617fd3d3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4671312, "upload_time": "2019-08-08T22:06:41", "url": "https://files.pythonhosted.org/packages/9a/80/f56e97a8c62961eecdc905edd7d0eee229dac84b19d2abe197becd1d092f/DeepSR-0.0.18-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f65ab3a2b80d81c3c1ab4672de5797f1", "sha256": "8331d6c3b0da59fb754e451cf0314a02f3aed90a0404a06148ba795af86a0e75" }, "downloads": -1, "filename": "DeepSR-0.0.18.tar.gz", "has_sig": false, "md5_digest": "f65ab3a2b80d81c3c1ab4672de5797f1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 40363, "upload_time": "2019-08-08T22:06:45", "url": "https://files.pythonhosted.org/packages/4e/11/56c5c18fd258a888b1eed6e04d7838db32a98a3edf003a745752aa97285f/DeepSR-0.0.18.tar.gz" } ], "0.0.19": [ { "comment_text": "", "digests": { "md5": "a2ab3206effc13c2484211f2ee4b7487", "sha256": "88b9a8976073175d7c7c82e397a84db26a3cb35f5e21274d6f670da2ed4cf290" }, "downloads": -1, "filename": "DeepSR-0.0.19-py3-none-any.whl", "has_sig": false, "md5_digest": "a2ab3206effc13c2484211f2ee4b7487", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4671336, "upload_time": "2019-08-08T22:23:28", "url": "https://files.pythonhosted.org/packages/b8/ab/a009ec84ce8279e875ca13b62b8dfa09d4fe4f77c311ae5e1a4ea37e8d0c/DeepSR-0.0.19-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "20f970227635e0679a667cfdeb4e0f1a", "sha256": "97434f93ad49f06dabf18c0c51dadeed5a0b5783d80a64af832cc5a75be24aa8" }, "downloads": -1, "filename": "DeepSR-0.0.19.tar.gz", "has_sig": false, "md5_digest": "20f970227635e0679a667cfdeb4e0f1a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 40375, "upload_time": "2019-08-08T22:23:31", "url": "https://files.pythonhosted.org/packages/e7/51/499cc61f8d74f3353574d9f501ff2c622f9d227cbf094c0bfdddd3fc4230/DeepSR-0.0.19.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "f03f6345b87012c48372380b02acf072", "sha256": "8d8f78309bf5387222ebbeb1491c2e38853bed8e8572896aa26105abe4fc3d92" }, "downloads": -1, "filename": "DeepSR-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "f03f6345b87012c48372380b02acf072", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 1538397, "upload_time": "2019-07-22T21:33:47", "url": "https://files.pythonhosted.org/packages/26/a2/f252a3154444eec158025d8e602087e5e2de27e6f6950f603f8edff9f40a/DeepSR-0.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fce277ecd6443e5115db30ebf66dcbbd", "sha256": "a3c88edb26fbe19444ef286824877c1fc53f4826989162215082a286b73dd998" }, "downloads": -1, "filename": "DeepSR-0.0.2.tar.gz", "has_sig": false, "md5_digest": "fce277ecd6443e5115db30ebf66dcbbd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 1534492, "upload_time": "2019-07-22T21:34:08", "url": "https://files.pythonhosted.org/packages/4d/c8/d440d80129d6a7bffb65e31c67f76b2e2aa92e15cc05c7fe17e995717af5/DeepSR-0.0.2.tar.gz" } ], "0.0.20": [ { "comment_text": "", "digests": { "md5": "9c1082651dfd7a0d11d054e75ab56db8", "sha256": "73a676cc7f67f404f621b6c8a26b0811f02e107578e1857972766236f6734eda" }, "downloads": -1, "filename": "DeepSR-0.0.20-py3-none-any.whl", "has_sig": false, "md5_digest": "9c1082651dfd7a0d11d054e75ab56db8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4671392, "upload_time": "2019-08-10T11:02:40", "url": "https://files.pythonhosted.org/packages/69/76/db90a8ea666aa3689ef9d5a4fe8fa0215e8df1322a568416477b6a8a7609/DeepSR-0.0.20-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9aa1d873e746c184a7111c0ff81e4e40", "sha256": "3b37d2581b4a1c26c4f85e261afcd922df6f9d2807917703e1156cd7b004f173" }, "downloads": -1, "filename": "DeepSR-0.0.20.tar.gz", "has_sig": false, "md5_digest": "9aa1d873e746c184a7111c0ff81e4e40", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 40435, "upload_time": "2019-08-10T11:02:43", "url": "https://files.pythonhosted.org/packages/70/ff/e89ca35a4eb4993be140e2e26dbcee8c774236cfa3a679d7f3fbef003bd3/DeepSR-0.0.20.tar.gz" } ], "0.0.21": [ { "comment_text": "", "digests": { "md5": "7a0d7795b7589cc0be2adc0a70a07f52", "sha256": "4f57eed589d5798f9cd5a9abf444f3f74bb4f5a16960f34db475ddc41f94fc4c" }, "downloads": -1, "filename": "DeepSR-0.0.21-py3-none-any.whl", "has_sig": false, "md5_digest": "7a0d7795b7589cc0be2adc0a70a07f52", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4671341, "upload_time": "2019-08-10T20:52:48", "url": "https://files.pythonhosted.org/packages/f7/57/24f3e006a4fdcf9af3471e193ff57b64c1ace77ba10410954aeed80ca111/DeepSR-0.0.21-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f0ef2d48bb3fcbe27fa9d4b79178fcf5", "sha256": "687ef052b779a9762b75eaa7c2efc142f67307004fd3f6738ebdd90cbfade5e8" }, "downloads": -1, "filename": "DeepSR-0.0.21.tar.gz", "has_sig": false, "md5_digest": "f0ef2d48bb3fcbe27fa9d4b79178fcf5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 40389, "upload_time": "2019-08-10T20:52:52", "url": "https://files.pythonhosted.org/packages/74/17/776c9881c3beb205797d7685287b3351d9f0f9ee2d0508332185becd3949/DeepSR-0.0.21.tar.gz" } ], "0.0.22": [ { "comment_text": "", "digests": { "md5": "53f506945ba623395634328f66da7763", "sha256": "337dfbca321167aa7aab3c9b65dd31862c9ebf948056abdf1c29306c42bc4e65" }, "downloads": -1, "filename": "DeepSR-0.0.22-py3-none-any.whl", "has_sig": false, "md5_digest": "53f506945ba623395634328f66da7763", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4910425, "upload_time": "2019-08-19T05:36:13", "url": "https://files.pythonhosted.org/packages/2c/75/9194cc1dff6d641b06f5bad545a560bf690369707c466dcb0cfeaaa749eb/DeepSR-0.0.22-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1910b77cd4064e858e57bac2c98caa09", "sha256": "b29f6a38670f11e0706b79d0cc6de812d551b8e95d12584dcdccaebb8a308b17" }, "downloads": -1, "filename": "DeepSR-0.0.22.tar.gz", "has_sig": false, "md5_digest": "1910b77cd4064e858e57bac2c98caa09", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 40396, "upload_time": "2019-08-19T05:36:16", "url": "https://files.pythonhosted.org/packages/5d/c5/0debc229439c0c26f834b8cf743892ae8c1d51939dfcd4a6ca1f3439ec6e/DeepSR-0.0.22.tar.gz" } ], "0.0.23": [ { "comment_text": "", "digests": { "md5": "714126b53703cf0c0a0b11db3a54865f", "sha256": "98ceae66fa54568afc41d2d502c59432197638b773b6aa9ee2fdbc17bf651da2" }, "downloads": -1, "filename": "DeepSR-0.0.23-py3-none-any.whl", "has_sig": false, "md5_digest": "714126b53703cf0c0a0b11db3a54865f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4910601, "upload_time": "2019-08-19T09:13:19", "url": "https://files.pythonhosted.org/packages/6f/0f/461e8fa8a165e0a5402f5709bfc1d66c8381b7f199a0d50a4a4d3a656f7a/DeepSR-0.0.23-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "97abe4f826172f43b2525f355589bbbc", "sha256": "56bc495befe932f263515a001a359781dfe246415dafaa3bf6494111ab5acbdc" }, "downloads": -1, "filename": "DeepSR-0.0.23.tar.gz", "has_sig": false, "md5_digest": "97abe4f826172f43b2525f355589bbbc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 40511, "upload_time": "2019-08-19T09:13:23", "url": "https://files.pythonhosted.org/packages/b4/c6/6c065e87b26900d55aba51ab3dd6e0fcc535696c2eb86d14e0ce2ada9ace/DeepSR-0.0.23.tar.gz" } ], "0.0.24": [ { "comment_text": "", "digests": { "md5": "03579996c6f387ea698e59ac3411a971", "sha256": "37ddc2aa1d343f5cd4411c3a9ff0959a036eeb637e371b6823b11610ce444808" }, "downloads": -1, "filename": "DeepSR-0.0.24-py3-none-any.whl", "has_sig": false, "md5_digest": "03579996c6f387ea698e59ac3411a971", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4914449, "upload_time": "2019-08-29T10:21:20", "url": "https://files.pythonhosted.org/packages/d7/41/fc046b5335191fadf1449621738bf6a1822a4b4c516dad87ad00e87a7f36/DeepSR-0.0.24-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0df727e4202f076a125e80e845bdcb46", "sha256": "907e62b34ea6d8a202063d32eb910121a33b3c233ab1fafbde329a4b4b202106" }, "downloads": -1, "filename": "DeepSR-0.0.24.tar.gz", "has_sig": false, "md5_digest": "0df727e4202f076a125e80e845bdcb46", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 41657, "upload_time": "2019-08-29T10:21:24", "url": "https://files.pythonhosted.org/packages/68/bd/90c198d6b76b7953eee0c630764d62ad0411b77a5c4d4ece924d056f84cb/DeepSR-0.0.24.tar.gz" } ], "0.0.25": [ { "comment_text": "", "digests": { "md5": "98a760305259a54308ed51cb50be5bf9", "sha256": "1f7e9419dd25dfbda30c4b9e764c1a3416a451cabb808bca806800ea419043a0" }, "downloads": -1, "filename": "DeepSR-0.0.25-py3-none-any.whl", "has_sig": false, "md5_digest": "98a760305259a54308ed51cb50be5bf9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4914456, "upload_time": "2019-09-01T07:17:51", "url": "https://files.pythonhosted.org/packages/c6/fc/a03be1b507def5a88796a2479de45ee3df9fcf2b4fcce36d5e1c4d83ff70/DeepSR-0.0.25-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b141e36bc33d41681bf618ec98c255ad", "sha256": "de98d60b43c9de871e8865e5df02479233fdc9361f0e49af611b42e5523d3443" }, "downloads": -1, "filename": "DeepSR-0.0.25.tar.gz", "has_sig": false, "md5_digest": "b141e36bc33d41681bf618ec98c255ad", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 41678, "upload_time": "2019-09-01T07:17:54", "url": "https://files.pythonhosted.org/packages/5e/f4/0372d753f1add4f54586f1279453d182a9573a0e14d7165070242699e417/DeepSR-0.0.25.tar.gz" } ], "0.0.26": [ { "comment_text": "", "digests": { "md5": "4d078a40821d113c552b61cbab1a2d56", "sha256": "79f63204bfd56eadaa94c93cedfb63eb104b84bbb1272d0a8d063bd2d7dc0e9a" }, "downloads": -1, "filename": "DeepSR-0.0.26-py3-none-any.whl", "has_sig": false, "md5_digest": "4d078a40821d113c552b61cbab1a2d56", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4914460, "upload_time": "2019-09-01T09:37:08", "url": "https://files.pythonhosted.org/packages/4f/f4/5220dd571fc9444e95ddbe94e23ad5e34d1bfdba072797a7c7bad3e20a30/DeepSR-0.0.26-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "16cc582af43ad84ca43ca64448aa133d", "sha256": "bb75133d28e02b1fc5cfe92e9f4f0469d7e6ca5b84fa2dad34c8f342c9b91ee0" }, "downloads": -1, "filename": "DeepSR-0.0.26.tar.gz", "has_sig": false, "md5_digest": "16cc582af43ad84ca43ca64448aa133d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 41666, "upload_time": "2019-09-01T09:37:11", "url": "https://files.pythonhosted.org/packages/c5/7f/009f01b87df79b338cbd1e3b6d27ef072a9b11ad2d47ec366a70db7e6319/DeepSR-0.0.26.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "5f98cb8429c66c815393197be769a69d", "sha256": "1c217b27f2da3e283bf38cc61b0aefd278d16b2f033f20b8f8ee24070e99d884" }, "downloads": -1, "filename": "DeepSR-0.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "5f98cb8429c66c815393197be769a69d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 1538435, "upload_time": "2019-07-22T22:22:17", "url": "https://files.pythonhosted.org/packages/3a/4a/cac6f160427b8c5b9215cdbfe5c52dbf193d9d166b40f06ee92defcef64f/DeepSR-0.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "43ee5f801bad8fee41fd09a44f8bfed1", "sha256": "2a1f7b04e6bd8471e17ae78e565d7e352075f7e56f0b067509b506c6abf0d393" }, "downloads": -1, "filename": "DeepSR-0.0.3.tar.gz", "has_sig": false, "md5_digest": "43ee5f801bad8fee41fd09a44f8bfed1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 1534528, "upload_time": "2019-07-22T22:22:38", "url": "https://files.pythonhosted.org/packages/22/42/7d84dacbd501523b9c15937c875db28d11a517ea1d4745cec5a184e192f6/DeepSR-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "f04e65e097544a248447cdf9f754f2e8", "sha256": "e605f3916a8c5b7d8b96c346b0974d9a2bffb557ba5bca6303463a5473015bc0" }, "downloads": -1, "filename": "DeepSR-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "f04e65e097544a248447cdf9f754f2e8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 1538465, "upload_time": "2019-07-23T12:35:40", "url": "https://files.pythonhosted.org/packages/29/42/e9daf4e35d8d914f59356fed31589dea026f245e60ed426d1ee8a981e033/DeepSR-0.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b1c6a5601f3e3f1797b247c3c72fa62", "sha256": "a41ce04da8875e892e3cf98a1ceb4b65bfebe8b158b98dc8de0209ae5d488833" }, "downloads": -1, "filename": "DeepSR-0.0.4.tar.gz", "has_sig": false, "md5_digest": "9b1c6a5601f3e3f1797b247c3c72fa62", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 34174, "upload_time": "2019-07-23T12:35:43", "url": "https://files.pythonhosted.org/packages/b2/16/a6c06fa6a22379cacd7f5347438b5f3328bda5626cd318af9f3dc559e4ae/DeepSR-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "361220960f268f33c9db0f65d2298847", "sha256": "fc98980ee62a90ef6e0f31db97e66868bc92a62decd490061fb419e64581aeac" }, "downloads": -1, "filename": "DeepSR-0.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "361220960f268f33c9db0f65d2298847", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 6406519, "upload_time": "2019-08-02T11:47:01", "url": "https://files.pythonhosted.org/packages/21/3f/f2ca1d2b51498b587b5703ec55c15d01039404c5196ebbc7ebdbf89e58cf/DeepSR-0.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "43c39ef1d580ec4a6866effd6b7a6f92", "sha256": "db7015db6b87e71d55fa8d406fe58b93b15ce0ba30f8b23c9aa1d0ed0dce763b" }, "downloads": -1, "filename": "DeepSR-0.0.5.tar.gz", "has_sig": false, "md5_digest": "43c39ef1d580ec4a6866effd6b7a6f92", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 40329, "upload_time": "2019-08-02T11:47:05", "url": "https://files.pythonhosted.org/packages/5c/bb/474fd59127eaa5f1c114df18403a19ecc9e3380f97405b72331396bf59ea/DeepSR-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "8f86ab28a171f367bd6e99590cc9e5c0", "sha256": "913fa3486d4aea7992a2b254112ca9d13d5ac71fec516d626a369e4ac48ce000" }, "downloads": -1, "filename": "DeepSR-0.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "8f86ab28a171f367bd6e99590cc9e5c0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 6406525, "upload_time": "2019-08-02T17:51:16", "url": "https://files.pythonhosted.org/packages/86/0e/28d27362a313aa8a2be24c0e11d18f1802f54ad1d910fa0a2171dccf1ede/DeepSR-0.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ccfd83817c1f4cfb894b0ba2cfd1a55e", "sha256": "04a78338c659b35ce6d5d7d8778f129a324d202d2a41e622f20a694a7fb79497" }, "downloads": -1, "filename": "DeepSR-0.0.6.tar.gz", "has_sig": false, "md5_digest": "ccfd83817c1f4cfb894b0ba2cfd1a55e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 40338, "upload_time": "2019-08-02T17:51:19", "url": "https://files.pythonhosted.org/packages/56/10/78c9a3e78ab96f5b93b57b3586d527e3f391a960e7bb485879de3281c51e/DeepSR-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "1a3bae0af3c70c3f16c5ce9a25ed510b", "sha256": "589cc7dd598b83bbf43797621de194a0cb8fcf0d1f82383d8a965f07614fae40" }, "downloads": -1, "filename": "DeepSR-0.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "1a3bae0af3c70c3f16c5ce9a25ed510b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 6406511, "upload_time": "2019-08-02T18:03:53", "url": "https://files.pythonhosted.org/packages/cb/42/d36e5c01aa8430ea0d3648b17fe5ad8c256623d109d529acdf4d46d99430/DeepSR-0.0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b62ca7203d4bd95c410589dd06f8a43c", "sha256": "1ab08b4fc7073b7148cf720aaf01ffc71de7b4e112bdd0c30b6e69091857b2fa" }, "downloads": -1, "filename": "DeepSR-0.0.7.tar.gz", "has_sig": false, "md5_digest": "b62ca7203d4bd95c410589dd06f8a43c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 40300, "upload_time": "2019-08-02T18:03:56", "url": "https://files.pythonhosted.org/packages/51/17/2834cb6fdf58e7b871bfe778c99c3feed6fd58331c1cd0da8136ab2fd080/DeepSR-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "2fbea7b2e3d75189c533191c932e786d", "sha256": "44906bc3d5a77c07895fdb45ec8a527d0142b05a5a0596f4d0714a60d4786ea2" }, "downloads": -1, "filename": "DeepSR-0.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "2fbea7b2e3d75189c533191c932e786d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4909090, "upload_time": "2019-08-02T18:13:17", "url": "https://files.pythonhosted.org/packages/dc/1e/6223a0a04751fdeb993fe36a4a6d97b3fdb2feaeaff0909f9b18b3f17ab0/DeepSR-0.0.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e29251e4e4b541a618f22079c9539d3a", "sha256": "9d1053083767a4dc5367730fe3361080681bb7dad9afe138e655eb0435314a57" }, "downloads": -1, "filename": "DeepSR-0.0.8.tar.gz", "has_sig": false, "md5_digest": "e29251e4e4b541a618f22079c9539d3a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 40309, "upload_time": "2019-08-02T18:13:20", "url": "https://files.pythonhosted.org/packages/36/15/c7595a6e6cb698cd90604f4a37f861c66ea2be5aa68ff589b9ba8e17e1ae/DeepSR-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "d748ecba86c40f9cea66ef5b85c35830", "sha256": "b418dea2825ebe9b7eca1de247e2e58d4e283d5c4af21c04401097bfe9a9fe2b" }, "downloads": -1, "filename": "DeepSR-0.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "d748ecba86c40f9cea66ef5b85c35830", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4909098, "upload_time": "2019-08-02T18:26:33", "url": "https://files.pythonhosted.org/packages/73/e1/c4f306d751bace71135bca1e78eaafb1f8880432cfffea273d30aa0a0334/DeepSR-0.0.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "725fba7cf2e7ed9b621bdf0e84066007", "sha256": "5ab6f9040c5f200628f5b3d0c980e34feefb5c870254ec6069dc9c15b03ded7f" }, "downloads": -1, "filename": "DeepSR-0.0.9.tar.gz", "has_sig": false, "md5_digest": "725fba7cf2e7ed9b621bdf0e84066007", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 40328, "upload_time": "2019-08-02T18:26:37", "url": "https://files.pythonhosted.org/packages/48/ea/7fee46889e05e749142a04e47f9da7dc10459dfbb6ee8980e58da35e2dbc/DeepSR-0.0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4d078a40821d113c552b61cbab1a2d56", "sha256": "79f63204bfd56eadaa94c93cedfb63eb104b84bbb1272d0a8d063bd2d7dc0e9a" }, "downloads": -1, "filename": "DeepSR-0.0.26-py3-none-any.whl", "has_sig": false, "md5_digest": "4d078a40821d113c552b61cbab1a2d56", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4914460, "upload_time": "2019-09-01T09:37:08", "url": "https://files.pythonhosted.org/packages/4f/f4/5220dd571fc9444e95ddbe94e23ad5e34d1bfdba072797a7c7bad3e20a30/DeepSR-0.0.26-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "16cc582af43ad84ca43ca64448aa133d", "sha256": "bb75133d28e02b1fc5cfe92e9f4f0469d7e6ca5b84fa2dad34c8f342c9b91ee0" }, "downloads": -1, "filename": "DeepSR-0.0.26.tar.gz", "has_sig": false, "md5_digest": "16cc582af43ad84ca43ca64448aa133d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 41666, "upload_time": "2019-09-01T09:37:11", "url": "https://files.pythonhosted.org/packages/c5/7f/009f01b87df79b338cbd1e3b6d27ef072a9b11ad2d47ec366a70db7e6319/DeepSR-0.0.26.tar.gz" } ] }