{ "info": { "author": "keplerlab", "author_email": "keplerwaasi@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "\n## **Katna**: Tool for automating video keyframe extraction, video compression, Image Autocrop and Smart image resize tasks\n\n\"logo\"\n\n### Resources \n* Homepage and Reference: \n\n### Description\n\nKatna automates the boring, error prone task of videos key/best frames extraction,\nvideo compression and manual time consuming task of image cropping and resizing using ML.\n\nIn short, you may want to consider using Katna library if you have following tasks:\n\n1. You have video/videos from who you want to extract keyframe/keyframes. \n Please note Key-frames are defined as the representative frames of a video stream,\n the frames that provide the most accurate and compact summary of the video content.\n Take an example of this video and some of the top keyframes extracted using Katna. \n\n[![IMAGE ALT TEXT HERE](docs/source/images/tide_video_thumnail.jpg)](https://www.youtube.com/watch?v=zpaLHwwYxE8)\n\n

\"arrow

\n\n![Image of keyframe extracted using Katna](docs/source/images/keyframe_extraction.jpg \"Image of keyframe extracted using Katna\")\n\n\n2. You have video/videos you want to compress down to smaller size. (e.g. You have video with let's say 1 GB Size but you want to compress it down as small as possible.)\n\n3. You have image/images which you want to smartly resize to a target resolution.\n (e.g. 500x500, 1080p (1920x1080) etc.)\n\n![Katna Image resize](docs/source/images/katna_image_resize.jpg \"Katna Image resize\")\n\n4. You have image/images from which you want to intelligently extract a crop with a target resolution.\n (e.g. Get a crop of size 500x500 from image of size 1920x1080)\n\n![Katna Image crop](docs/source/images/katna_image_crop.jpg \"Katna Image crop\")\n\n\n5. You want to extract a crop of particular aspect ratio e.g. 4:3 from your input image/images.\n (e.g. Get a crop of aspect ratio 1:1 from image of resolution 1920x1080 (16:9 aspect ratio image))\n\n6. You want to resize a video to particular aspect ratio e.g. 16:9 (Landscape), to lets say to 1:1 (square). Please note that this feature is currently **experimental** and needs additional compiling and configuration of google [mediapipe library](https://github.com/google/mediapipe). \n\n\n[![ICEGov original video with 16:9 aspect ratio](docs/source/images/icegov_original.jpeg)](https://www.youtube.com/watch?v=-GFabrw3Csk)\n\n

\"arrow

\n\n[![ICEGov resized video with 1:1 aspect ratio](docs/source/images/icegov_1_1_thumbnail.jpeg)](https://www.youtube.com/watch?v=P0D5WPv63RY)\n\n\nKatna is divided into two modules\n* Video module.\n* Image module.\n\nVideo Module:\n-------------\nThis module handles the task(s) for key frame(s) extraction and video compression.\n\nKey-frames are defined as the representative frames of a video stream, the frames that provide the most accurate and compact summary of the video content.\n\n**Frame extraction and selection criteria for key-frame extraction**\n\n1. Frame that are sufficiently different from previous ones using absolute differences in LUV colorspace\n2. Brightness score filtering of extracted frames\n3. Entropy/contrast score filtering of extracted frames\n4. K-Means Clustering of frames using image histogram\n5. Selection of best frame from clusters based on and variance of laplacian (image blur detection)\n\nVideo compression is handled using ffmpeg library. Details about which could be read in [Katna.video_compressor module](https://katna.readthedocs.io/en/latest/understanding_katna.html#katna-video-compressor) section.\n\nSince version 0.8.0 of Katna we are extending smart resize features to videos with the help of Google's Mediapipe project. To know more about this please refer to documentation [Video Smart Resize using Katna]\n(https://katna.readthedocs.io/en/latest/understanding_katna.html#katna-video-resize). Please note that this feature is an optional experimental feature. And might be subject to removal/modifications at later versions. Also you also need to install Google's Mediapipe library, Specially autoflip binary for this to work. Please refer to [Link](https://katna.readthedocs.io/en/latest/tutorials_video_smart_resize.html#tutorials-video-smart-resize) for how to install and configure mediapipe to be used with katna. \n\nImage Module:\n-------------\nThis module handles the task(s) related to smart cropping and image resizing.\n\nThe Smart image cropping is happening in way that the module identifies the best part or the area where someone focus more\nand interprets this information while cropping the image.\n\n**Crop extraction and selection criteria**\n\n1. Edge, saliency and Face detection features are detected in the input image\n2. All the crops with specified dimensions are extracted with calculation of score for each crop wrt to extracted features\n3. The crops will be passes through filters specified which will remove the crops which filter rejects\n\nSimilar to Smart crop Katna image module supports **Smart image resizing** feature. Given an input image it can resize image to target resolution with simple resizing if aspect ratio is same for input and target image. If aspect ratio is different than smart image resize will first crops biggest good quality crop in target resolution and then resizes image in target resolution. This ensures image resize without actually skewing input image. *Please not that if aspect ratio of input and output image are not same katna image_resize can lead to some loss of image content*\n\n**Supported Video and image file formats**\n##########################################\n\nAll the major video formats like .mp4,.mov,.avi etc and image formats like .jpg, .png, .jpeg etc are supported. \n\nMore selection features are in developement pipeline\n\n### How to install\n\n#### Using pypi\n1) Install Python 3 \n2) pip install katna\n\n#### Install from source\n\n1) Install git\n2) Install Anaconda or Miniconda Python\n3) Open terminal \n4) Clone repo from here https://github.com/keplerlab/Katna.git \n5) Change the directory to the directory where you have cloned your repo \n ```\n $cd path_to_the_folder_repo_cloned\n ```\n6) Create a new anaconda environment if you are using anaconda python distribution\n ```\n conda create --name katna python=3.7\n source activate katna\n ```\n\n7) Run the setup:\n ``` \n python setup.py install \n ``` \n\n#### Error handling and updates \n1) Since Katna version 0.4.0 Katna video module is optimized to use multiprocessing using python multiprocessing module. Due to restrictions of multiprocessing in windows, For safe importing of main module in windows system, make sure \u201centry point\u201d of the program is wrapped in __name__ == '__main__': as follows:\n ```\n from Katna.video import Video\n if __name__ == \"__main__\":\n vd = Video()\n # your code\n ```\n please refer to https://docs.python.org/2/library/multiprocessing.html#windows for more details. \n\n2) If input image is of very large size ( larger than 2000x2000 ) it might take a\nlong time to perform Automatic smart cropping.If you encounter this issue, consider changing down_sample_factor\nfrom default 8 to larger values ( like 16 or 32 ). This will decrease processing time \nsignificantly. \n\n3) If you see \"AttributeError: module 'cv2.cv2' has no attribute 'saliency'\" error. Uninstall opencv-contrib\nby running command \"python -m pip uninstall opencv-contrib-python\" and then again install it by running command \n ```\n python -m pip install opencv-contrib-python\n ```\n\n4) If you see \"FileNotFoundError: frozen_east_text_detection.pb file not found\". Open python shell and follow below commands.\n ```\n from Katna.image_filters.text_detector import TextDetector\n td = TextDetector()\n td.download()\n ```\n\n5) On windows, ensure that anaconda has admin rights if installing with anaconda as it fails with \nthe write permission while installing some modules.\n\n6) If you get \"RuntimeError: No ffmpeg exe could be found\". Install ffmpeg on your system, and/or set the IMAGEIO_FFMPEG_EXE or FFMPEG_EXE environment variable to path of your ffmpeg binary.\nUsually ffmpeg is installed using imageio-ffmpeg package, Check **imageio_ffmpeg-*.egg** folder inside your\n**site-packages** folder, there should be a ffmpeg file inside binaries folder, check if this file has proper read/executable permission set and additionally set it's path to environment variable.\n\n7) There is a known memory leak issue in Katna version 0.8.2 and less,\n when running bulk video keyframe extraction on Python version 3.6 and 3.7, \n This is an multiprocessing bug observed only in Python 3.6 and 3.7. And is fixed in katna version 0.9 and above. If you are running Keyframe extraction code on large number of videos and facing memory issue, request you to upgrade your katna version to version 0.9 or above. If you still want to use older version of katna consider upgrading your python version to 3.8 or above.\n### How to use Library\n\n1) Refer to quickstart section in Katna Reference \n from https://katna.readthedocs.io/\n\n### Update: katna version 0.9.0\nWe have added writer framework to process data from Katna Video and Image module. This version\nalso fixes memory leak issue reported by [this](https://github.com/keplerlab/katna/issues/11) and\n[this](https://github.com/keplerlab/katna/issues/12) issue.\n\n#### The version introduces following breaking changes in the library API: ####\n1. video.extract_video_keyframes and video.extract_video_keyframes_from_dir requires additional writer object. By default, KeyFrameDiskWriter is available to use from\nKatna.writer module. Writer framework can be extended based on the requirement.\n\n2. image.crop_image and image.crop_image_from_dir requires additional writer object.\nBy default, ImageCropDiskWriter is available to use from\nKatna.writer module. Writer framework can be extended based on the requirement.\n\nRefer documentation for the updated examples here: [Link](https://katna.readthedocs.io/)\n\n### Update: katna version 0.8.2\nThis bug fix version fixes this issue: [Link](https://github.com/keplerlab/katna/issues/10)\n### Update: katna version 0.8.1\nFixed an issue where in rare case where videos split using ffmpeg not readable and throwing exception [Link](https://github.com/keplerlab/katna/issues/9)\n### Update: katna version 0.8.0\nAdded experimental support for autocrop/resize videos using Google's mediapipe\nAutoflip code example.\n### Update: katna version 0.7.1\nFixed bug where incorrect specification crops were returned by image_module crop_image and crop_image_from_dir method. \n### Update: katna version 0.7.0\nAdded support for video compression in Katna.video module.\n### Update: katna version 0.6.0\nAdded support for smart image resize in Katna.image module.\n### Update: katna version 0.5.0\nIn version 0.5.0 we have changed name of some of the public functions inside\nfor Katna.video module used for keyframe extraction,\n1) extract_frames_as_images method is changed to extract_video_keyframes.\n2) extract_frames_as_images_from_dir method is changed to extract_keyframes_from_videos_dir\n### Attributions\n1) We have used the SAD (Sum of absolute difference) code from [KeyFramesExtraction](https://github.com/amanwalia92/KeyFramesExtraction) project by Amanpreet Walia. Code released under MIT Licence.\n2) We have used project [smartcrop.js](https://github.com/jwagner/smartcrop.js/) for Smart crop feature in Katna Image module.\n3) For Experimental feature of Smartcrop/Resize in videos we are using help of [Google Mediapipe](https://github.com/google/mediapipe) [Autoflip](https://ai.googleblog.com/2020/02/autoflip-open-source-framework-for.html) framework.\n4) Katna icon generated by [thenounproject](https://thenounproject.com/term/chef-knife/2082763/) icon developed by ProSymbols, US\u00a0, In the\u00a0Viking Elements Glyph Icons Collection licensed as Creative Commons CCBY.\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/keplerlab/Katna.git", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "katna", "package_url": "https://pypi.org/project/katna/", "platform": "", "project_url": "https://pypi.org/project/katna/", "project_urls": { "Documentation": "https://katna.readthedocs.io", "Homepage": "https://github.com/keplerlab/Katna.git", "Source": "https://github.com/keplerlab/Katna", "Tracker": "https://github.com/keplerlab/Katna/issues" }, "release_url": "https://pypi.org/project/katna/0.9.2/", "requires_dist": [ "scipy", "scikit-learn", "scikit-image", "opencv-contrib-python (>=3.4.7)", "numpy (>=1.15)", "imageio-ffmpeg (>=0.2.0)", "imutils", "requests", "psutil", "ffmpy" ], "requires_python": ">=3.6", "summary": "Katna is a tool that automates video key/best frames extraction.", "version": "0.9.2", "yanked": false, "yanked_reason": null }, "last_serial": 10192804, "releases": { "0.2.0.0": [ { "comment_text": "", "digests": { "md5": "6f8cf104c68f98b2623a1bd19fb51c18", "sha256": "546c9b6d3c94e685a416a464208fda0b4b06ebdd146a898d455b1b3940e6a103" }, "downloads": -1, "filename": "katna-0.2.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6f8cf104c68f98b2623a1bd19fb51c18", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 13263, "upload_time": "2019-08-22T10:51:26", "upload_time_iso_8601": "2019-08-22T10:51:26.373620Z", "url": "https://files.pythonhosted.org/packages/e1/b3/0b6e14b69ba96c257a56e74e1f0314eb006e4c89171b04842c7d84002644/katna-0.2.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0652b1522e35b4c82395f1674cad40f", "sha256": "bdb4abcc54eac62558ca5c83b3410208754ecdde966fe65226753a7486cb0df6" }, "downloads": -1, "filename": "katna-0.2.0.0.tar.gz", "has_sig": false, "md5_digest": "d0652b1522e35b4c82395f1674cad40f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 10736, "upload_time": "2019-08-22T10:51:28", "upload_time_iso_8601": "2019-08-22T10:51:28.890944Z", "url": "https://files.pythonhosted.org/packages/8d/6b/e8fc9f597a83386de4f0e11bb3b975193e1cb46fbc358c420d29cc8377be/katna-0.2.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0.1": [ { "comment_text": "", "digests": { "md5": "3cda5c0a7480ac005acc3ae8922162c7", "sha256": "c488f72ff231233750932e129084ab9bedbec31042d65a0ca626672e875df267" }, "downloads": -1, "filename": "katna-0.2.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3cda5c0a7480ac005acc3ae8922162c7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 13235, "upload_time": "2019-08-22T11:20:44", "upload_time_iso_8601": "2019-08-22T11:20:44.148638Z", "url": "https://files.pythonhosted.org/packages/20/e3/ea363afa6f5b1911ee860da3f0c1fb824bd9b46b2812991369f8aefc44ba/katna-0.2.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a3e4c9d2963f1d3a1f80ece96dc4670", "sha256": "82abaec1a59ebfb4c5cb1b361cd8856159c1b8df0f2f4d74eb684843b5df30a9" }, "downloads": -1, "filename": "katna-0.2.0.1.tar.gz", "has_sig": false, "md5_digest": "4a3e4c9d2963f1d3a1f80ece96dc4670", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 10697, "upload_time": "2019-08-22T11:20:45", "upload_time_iso_8601": "2019-08-22T11:20:45.916163Z", "url": "https://files.pythonhosted.org/packages/2e/1a/2f835913c399722d3e6213f5e9d98edb1240f00ee0f6a3a2b1703ce29481/katna-0.2.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0.0": [ { "comment_text": "", "digests": { "md5": "f31a8788933d4803b1815e9a2941eb76", "sha256": "ae2ebb7d4dcc98f82306ef37573fae04b7b76160509099f623724650cc5d18af" }, "downloads": -1, "filename": "katna-0.3.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f31a8788933d4803b1815e9a2941eb76", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 34438, "upload_time": "2019-10-09T10:08:38", "upload_time_iso_8601": "2019-10-09T10:08:38.066779Z", "url": "https://files.pythonhosted.org/packages/f7/23/1fc4794c505bb99760af2718ddc781290975f34fd7a2a9569aef7f3bfd43/katna-0.3.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bfb1c12966265a3bbb1818ea6c9e4735", "sha256": "7b1ef9387b052784d663153e881815f95bd3531f37478748cf4ea29d90489f1c" }, "downloads": -1, "filename": "katna-0.3.0.0.tar.gz", "has_sig": false, "md5_digest": "bfb1c12966265a3bbb1818ea6c9e4735", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 24828, "upload_time": "2019-10-09T10:08:39", "upload_time_iso_8601": "2019-10-09T10:08:39.704301Z", "url": "https://files.pythonhosted.org/packages/e9/2e/2abf8d309d055086a1ad8f0b4fea42d8173565e5d21c75a7c9b81d9f3321/katna-0.3.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0.0": [ { "comment_text": "", "digests": { "md5": "b3f2e3b661901cd40bca3c5db341000a", "sha256": "c3bbdaf0240440499c395aaaed01b26c3d015ab3828dad3bdc844a41965cada0" }, "downloads": -1, "filename": "katna-0.4.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b3f2e3b661901cd40bca3c5db341000a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 38114, "upload_time": "2019-10-22T08:53:50", "upload_time_iso_8601": "2019-10-22T08:53:50.291330Z", "url": "https://files.pythonhosted.org/packages/35/a6/53226a2965de95e953e0c7945e9fa376665daa15f0979ba09d7ca77c5b82/katna-0.4.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d29ea87681903b37d69d938c005035b", "sha256": "3169cb773d07ee0141d36d28e0e4c58408b76ea005df5aab50dc5ceb6e3e2ae1" }, "downloads": -1, "filename": "katna-0.4.0.0.tar.gz", "has_sig": false, "md5_digest": "6d29ea87681903b37d69d938c005035b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 28307, "upload_time": "2019-10-22T08:53:52", "upload_time_iso_8601": "2019-10-22T08:53:52.881964Z", "url": "https://files.pythonhosted.org/packages/09/e5/fb9e8209480b7d87d754cbdf60a713879f6c4a58db16e04ad13ca301ddaf/katna-0.4.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1.0": [ { "comment_text": "", "digests": { "md5": "1003e2a6d447f61657f994481e4c8a62", "sha256": "035195b0029f2ee05b71f619b85981b373dfeb0f83291403ffd50d6f571c7c3c" }, "downloads": -1, "filename": "katna-0.4.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1003e2a6d447f61657f994481e4c8a62", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 40310, "upload_time": "2019-11-04T07:35:00", "upload_time_iso_8601": "2019-11-04T07:35:00.505321Z", "url": "https://files.pythonhosted.org/packages/d7/69/d44b6266de330ed53b727451cb7a1458d770b7746211637d064f188e2a75/katna-0.4.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8951fdf4917d42d51a71b43ba6c7da0c", "sha256": "214fb4191c308a677e2106d34160c1a507eb2372f334b9d5893fc4aed66462ae" }, "downloads": -1, "filename": "katna-0.4.1.0.tar.gz", "has_sig": false, "md5_digest": "8951fdf4917d42d51a71b43ba6c7da0c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 30487, "upload_time": "2019-11-04T07:35:02", "upload_time_iso_8601": "2019-11-04T07:35:02.329364Z", "url": "https://files.pythonhosted.org/packages/5d/3d/4adbb64c4b229c03829ce56d2f428e17f16d0953588a0cad5da07c10fbd2/katna-0.4.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1.1": [ { "comment_text": "", "digests": { "md5": "a56dc7ced267d326dadeaa04da4e1fee", "sha256": "ec5b8710a40382ceae1de552804df901cd23169a297e0e00918ca65dc2548ded" }, "downloads": -1, "filename": "katna-0.4.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "a56dc7ced267d326dadeaa04da4e1fee", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 40306, "upload_time": "2019-12-02T09:21:10", "upload_time_iso_8601": "2019-12-02T09:21:10.098221Z", "url": "https://files.pythonhosted.org/packages/fc/33/bad88daee93428586b5b5b0e33a9da4c181cc223965a51cb2c287d842182/katna-0.4.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f2d944a4564cb47c019e083184a3f35", "sha256": "d4a2e0d72df5de4d6e43327b00d175bd90a57b314b9301a845e5df8c15646a1d" }, "downloads": -1, "filename": "katna-0.4.1.1.tar.gz", "has_sig": false, "md5_digest": "1f2d944a4564cb47c019e083184a3f35", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 30513, "upload_time": "2019-12-02T09:21:12", "upload_time_iso_8601": "2019-12-02T09:21:12.147812Z", "url": "https://files.pythonhosted.org/packages/e0/63/84f79798bed2b4a1f78f8a02500d2e3c278a04b15dd34e4459a9c76a5e61/katna-0.4.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1.3": [ { "comment_text": "", "digests": { "md5": "7d159366a7c44ff4ef891e8ba2bae45d", "sha256": "dfd316bdc45018e4592b0c54232b5115f974c2da8e2238f93d5d90e389d4aefa" }, "downloads": -1, "filename": "katna-0.4.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "7d159366a7c44ff4ef891e8ba2bae45d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 40515, "upload_time": "2020-03-12T08:31:29", "upload_time_iso_8601": "2020-03-12T08:31:29.195926Z", "url": "https://files.pythonhosted.org/packages/58/59/384e3a0241d50643722da71ec70e93921cd8dbe6074ec032dddcc355c47c/katna-0.4.1.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a8f92f2ecd2bfd4472ef9e238fb96e2b", "sha256": "1d58684293a67310d7205e957bb800727908776eec0a7457d8cd0a7fc3826396" }, "downloads": -1, "filename": "katna-0.4.1.3.tar.gz", "has_sig": false, "md5_digest": "a8f92f2ecd2bfd4472ef9e238fb96e2b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 30644, "upload_time": "2020-03-12T08:31:31", "upload_time_iso_8601": "2020-03-12T08:31:31.274143Z", "url": "https://files.pythonhosted.org/packages/df/cd/1611687ebce53a2f908855d51e955a52bc9d0891ecd55a848f8519debc64/katna-0.4.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1.4": [ { "comment_text": "", "digests": { "md5": "5d7e3990727a5c168be302b727b3ed40", "sha256": "56cc5d4b290c9d426df5bb1ea9b19d48a5bbdfd7f1b0b2547279e1dc19a03ca1" }, "downloads": -1, "filename": "katna-0.4.1.4-py3.7.egg", "has_sig": false, "md5_digest": "5d7e3990727a5c168be302b727b3ed40", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": ">=3.6", "size": 85999, "upload_time": "2021-01-12T11:32:04", "upload_time_iso_8601": "2021-01-12T11:32:04.817183Z", "url": "https://files.pythonhosted.org/packages/4f/9a/fe3d7e5d08e1bcbc7d9fab2ccb1fd30d5deea7f85bffff26a58b571beb42/katna-0.4.1.4-py3.7.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3209b2d9a426102e8d20a79ed695b240", "sha256": "aa0585b558e984e6444f4a11c3734a05b1201516003d8f0a64fd1dfba5afc698" }, "downloads": -1, "filename": "katna-0.4.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "3209b2d9a426102e8d20a79ed695b240", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 40506, "upload_time": "2020-04-29T07:00:33", "upload_time_iso_8601": "2020-04-29T07:00:33.551345Z", "url": "https://files.pythonhosted.org/packages/92/3e/5c2da199eea89f4698b46bb18b64a4e5d9f60cfaecf3d6165c45809e0923/katna-0.4.1.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a74ff492118e30154c39c96c14e25fd", "sha256": "422ea24dcf21089bc2cdb4f4b96dd2019a4bd6b66216bb398e4d2f524f0d2f03" }, "downloads": -1, "filename": "katna-0.4.1.4.tar.gz", "has_sig": false, "md5_digest": "1a74ff492118e30154c39c96c14e25fd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 31314, "upload_time": "2020-04-29T07:00:35", "upload_time_iso_8601": "2020-04-29T07:00:35.891577Z", "url": "https://files.pythonhosted.org/packages/57/72/7137259e6251da0acd3c4e5838cdbf8054788a1bfbc555a62ddd49489c49/katna-0.4.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "f63cad944047bfb7bea4090c1825aecc", "sha256": "e55d5fe63639e4852152c79ae270646dd95a31e16046264d9d96cdc358f75ef7" }, "downloads": -1, "filename": "katna-0.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "f63cad944047bfb7bea4090c1825aecc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 40783, "upload_time": "2021-01-11T17:45:24", "upload_time_iso_8601": "2021-01-11T17:45:24.506910Z", "url": "https://files.pythonhosted.org/packages/53/a0/9503f1fbc1c58cd516d11a0399c553cf6cec53f30677e92ef43824d1b3fd/katna-0.4.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "473cbcd25fd628a9855912bdcde093ce", "sha256": "fedab7ef8dbbf4a803c2855e9c544e6356249ad75225fe95b752c716236663bb" }, "downloads": -1, "filename": "katna-0.4.2.tar.gz", "has_sig": false, "md5_digest": "473cbcd25fd628a9855912bdcde093ce", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 31564, "upload_time": "2021-01-11T17:45:26", "upload_time_iso_8601": "2021-01-11T17:45:26.785481Z", "url": "https://files.pythonhosted.org/packages/7d/72/edbcbbda8b8256027f58b45b06fb98626f222d0a049a729473499a1edfcd/katna-0.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "77c546f24efdb4fe701313defbb970f8", "sha256": "06f34d5cbbce408a33e05d4980b12f40f692308907f90ea9ec951112518444cf" }, "downloads": -1, "filename": "katna-0.4.3-py3.7.egg", "has_sig": false, "md5_digest": "77c546f24efdb4fe701313defbb970f8", "packagetype": "bdist_egg", "python_version": "3.7", "requires_python": ">=3.6", "size": 94104, "upload_time": "2021-01-12T11:32:10", "upload_time_iso_8601": "2021-01-12T11:32:10.257187Z", "url": "https://files.pythonhosted.org/packages/98/c8/9848f5db5a27569372ab4d8bb76b6030915e3061e4fce67b043c8f2a8c96/katna-0.4.3-py3.7.egg", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb24e3dc99634dd82a499d12eb5c0dc5", "sha256": "53b36a8a9539ac7d4e32f9aa0c18ffdb4cb1b9bd3dbe1e642b7e339f6b5229e8" }, "downloads": -1, "filename": "katna-0.4.3-py3-none-any.whl", "has_sig": false, "md5_digest": "eb24e3dc99634dd82a499d12eb5c0dc5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 40996, "upload_time": "2021-01-11T17:53:01", "upload_time_iso_8601": "2021-01-11T17:53:01.473811Z", "url": "https://files.pythonhosted.org/packages/28/19/f79104a3dbdfa1403da4264e883a0fb7eb8ec321256f14f38248b1bf261a/katna-0.4.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9afccd37f3be9cb0ce3638f681fc5767", "sha256": "5704319024e84fe69de646f159467052ae8f346eca459673ad0695d238d71da6" }, "downloads": -1, "filename": "katna-0.4.3.tar.gz", "has_sig": false, "md5_digest": "9afccd37f3be9cb0ce3638f681fc5767", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 31772, "upload_time": "2021-01-11T17:53:03", "upload_time_iso_8601": "2021-01-11T17:53:03.689508Z", "url": "https://files.pythonhosted.org/packages/f4/ad/620d80c67e41ddc177199a334f7088f10ecd927f5d10453578306253d179/katna-0.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "ffa92cb8c79332d7831a496d22c3d3cb", "sha256": "182d9248f866c30a63b81753e9463594a492e2f10da8e209fffdb6bac1c3587f" }, "downloads": -1, "filename": "katna-0.4.4-py3-none-any.whl", "has_sig": false, "md5_digest": "ffa92cb8c79332d7831a496d22c3d3cb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 44263, "upload_time": "2021-01-12T11:32:02", "upload_time_iso_8601": "2021-01-12T11:32:02.296497Z", "url": "https://files.pythonhosted.org/packages/a8/e8/9b0c4afe9df5c8f8e2d11237b6467841408a839f12b44ff205a05bdddad1/katna-0.4.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "560b268a39386f754f681f00c7020f91", "sha256": "31d3f8f2c938da09620272c87add37d9479122c3da8036ab9ad423bb71e88e7f" }, "downloads": -1, "filename": "katna-0.4.4.tar.gz", "has_sig": false, "md5_digest": "560b268a39386f754f681f00c7020f91", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 34411, "upload_time": "2021-01-12T11:32:12", "upload_time_iso_8601": "2021-01-12T11:32:12.663326Z", "url": "https://files.pythonhosted.org/packages/be/59/cca0a11b58fd4422266e336d48dc5a9de50f5b1898f1855354f358b4d1d1/katna-0.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "1bc6f5a4cf48236d2648e8b580bc16f5", "sha256": "9b686e8878c3542ebd7a206351b13a3c4a2cf533dd561711cdd7e86fd19c5344" }, "downloads": -1, "filename": "katna-0.4.5-py3-none-any.whl", "has_sig": false, "md5_digest": "1bc6f5a4cf48236d2648e8b580bc16f5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 44247, "upload_time": "2021-01-13T11:32:19", "upload_time_iso_8601": "2021-01-13T11:32:19.858969Z", "url": "https://files.pythonhosted.org/packages/23/80/e717d1a572f64f18fe0aa6d926e4018b29be2e146d65bcd7a8b31c095788/katna-0.4.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b52b0b0e35d59675d5125420f64d4f61", "sha256": "022350900fc11f626a05071178da58f2a68545c508071f74bc3535091fea9c9f" }, "downloads": -1, "filename": "katna-0.4.5.tar.gz", "has_sig": false, "md5_digest": "b52b0b0e35d59675d5125420f64d4f61", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 34372, "upload_time": "2021-01-13T11:32:21", "upload_time_iso_8601": "2021-01-13T11:32:21.955645Z", "url": "https://files.pythonhosted.org/packages/b7/b4/0aa56aadbb83c4e5b19d75b0c58578244561980504df47f7b092ed4238c9/katna-0.4.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "158a514b4e1f7a2902bd1618b8a39919", "sha256": "e7540bfa5ee931a29f7d8c7b813e224a7f94b46c986571d982d1eaa4e1cfb892" }, "downloads": -1, "filename": "katna-0.4.6-py3-none-any.whl", "has_sig": false, "md5_digest": "158a514b4e1f7a2902bd1618b8a39919", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 43059, "upload_time": "2021-01-20T10:35:50", "upload_time_iso_8601": "2021-01-20T10:35:50.804964Z", "url": "https://files.pythonhosted.org/packages/84/4d/95da949abc23090b6101942d4583d6cfcc56573d7eb045c46da941ca86c5/katna-0.4.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3849c80b7995bb277c637de47c9b935", "sha256": "210ef407a24c67e9bb2549d3559364d1038383a7c4a390205407b0247192c6cd" }, "downloads": -1, "filename": "katna-0.4.6.tar.gz", "has_sig": false, "md5_digest": "d3849c80b7995bb277c637de47c9b935", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 33740, "upload_time": "2021-01-20T10:35:52", "upload_time_iso_8601": "2021-01-20T10:35:52.906804Z", "url": "https://files.pythonhosted.org/packages/7f/eb/f1ba9be6c94e5e6005be956891122e8ab8c1730d5738b25e6f34eec3908d/katna-0.4.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "d427e52fc3baf4551a252cbe9dfc3761", "sha256": "1e79bbc452e399522ad00e18b3315cf9e7e6f4575a1e002303b0821145150e81" }, "downloads": -1, "filename": "katna-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d427e52fc3baf4551a252cbe9dfc3761", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 43768, "upload_time": "2021-01-22T04:10:14", "upload_time_iso_8601": "2021-01-22T04:10:14.563057Z", "url": "https://files.pythonhosted.org/packages/03/6a/fb6ef60f3bbcd7f4f16266a9b7b71fbbc5ecc214faba33edd9d8971ab635/katna-0.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a810c9c65c3eb0e6e0c72ea255ad00d", "sha256": "0e758d75f75aa164a800d939eb4b415f46ecb4d04f74a220bfbd00b23d5b270a" }, "downloads": -1, "filename": "katna-0.5.0.tar.gz", "has_sig": false, "md5_digest": "3a810c9c65c3eb0e6e0c72ea255ad00d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 35712, "upload_time": "2021-01-22T04:10:16", "upload_time_iso_8601": "2021-01-22T04:10:16.510617Z", "url": "https://files.pythonhosted.org/packages/b5/a9/4aa092274a8f6c0f86c9671841ec3b4d7da252c418f54efaf72132f2bef1/katna-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "9d4d067265378471bc9cb3cae724dfd6", "sha256": "bd2d6e42abb0514262a484b2608baf954be4887cd119b0f4fff2b7441bffb6c4" }, "downloads": -1, "filename": "katna-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9d4d067265378471bc9cb3cae724dfd6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 45147, "upload_time": "2021-01-28T11:05:43", "upload_time_iso_8601": "2021-01-28T11:05:43.688981Z", "url": "https://files.pythonhosted.org/packages/f9/c6/67bc6d96b2760fdd37febbee70126d82b2c157797d9d31cdb3f5e52cc575/katna-0.6.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "828853eac9f8205fbc88c497ab255d35", "sha256": "9cba2646d69613a18db8617003408918b89ee58e95c9644972a35f5bc718ae13" }, "downloads": -1, "filename": "katna-0.6.0.tar.gz", "has_sig": false, "md5_digest": "828853eac9f8205fbc88c497ab255d35", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 37102, "upload_time": "2021-01-28T11:05:45", "upload_time_iso_8601": "2021-01-28T11:05:45.118863Z", "url": "https://files.pythonhosted.org/packages/6e/40/eec7cad2a30d0cdbcb387992ed467e1244d507fa3f3a5ed7fbd2cfa494d2/katna-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "3eae66172999d11cad2070fc70ca0835", "sha256": "d716cc03b538d63748f66953898a74dbd8314680cf65f1ddd641eeebe2c1082e" }, "downloads": -1, "filename": "katna-0.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3eae66172999d11cad2070fc70ca0835", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 49883, "upload_time": "2021-02-04T08:25:35", "upload_time_iso_8601": "2021-02-04T08:25:35.598167Z", "url": "https://files.pythonhosted.org/packages/25/a0/33cda3e2757b29072f946daa1b50e1d637a523f92555764b0925fb9913ed/katna-0.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "244fdc017e6f4e8ed3cf8a347b442843", "sha256": "66b916b80425c97c5edf0b92be269ecc8a79e5dc5008fe2d7c626194717f95a8" }, "downloads": -1, "filename": "katna-0.7.0.tar.gz", "has_sig": false, "md5_digest": "244fdc017e6f4e8ed3cf8a347b442843", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 39983, "upload_time": "2021-02-04T08:25:37", "upload_time_iso_8601": "2021-02-04T08:25:37.327710Z", "url": "https://files.pythonhosted.org/packages/73/ad/06201a113c3255683fc7087ddf141442ba15e58489ca909f3358dc98cb9c/katna-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "d75ac4fdb9f212cc1c3e1307e5e49eb2", "sha256": "65843103846760d329269dbb01002d3fd170572345657cb6468ee122be4b41e2" }, "downloads": -1, "filename": "katna-0.7.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d75ac4fdb9f212cc1c3e1307e5e49eb2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 50167, "upload_time": "2021-03-04T17:32:04", "upload_time_iso_8601": "2021-03-04T17:32:04.165682Z", "url": "https://files.pythonhosted.org/packages/df/4e/0f8e744fdfd7cbd00713d00fa0640e38aacfadb2389982f9a2c30d99091e/katna-0.7.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "abeff16cc53c4f2c7bad1fda9b24507c", "sha256": "5f66f5a84f2e350935ad599f34e1aa1ea2bfa3b2b6e79ad9c02cef6eee26ded5" }, "downloads": -1, "filename": "katna-0.7.1.tar.gz", "has_sig": false, "md5_digest": "abeff16cc53c4f2c7bad1fda9b24507c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 40281, "upload_time": "2021-03-04T17:32:06", "upload_time_iso_8601": "2021-03-04T17:32:06.057694Z", "url": "https://files.pythonhosted.org/packages/2d/ba/90fa4fbe91146bd016f64063698983419827fe6ca2437ba93f0c88f9201f/katna-0.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "d70e733d505552aedd84adc347baa1ba", "sha256": "f73276eabcae9b2033de76c55b50244c65b25683f3625a9d68fba730f6e7c75c" }, "downloads": -1, "filename": "katna-0.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d70e733d505552aedd84adc347baa1ba", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 55406, "upload_time": "2021-03-05T13:01:33", "upload_time_iso_8601": "2021-03-05T13:01:33.890688Z", "url": "https://files.pythonhosted.org/packages/42/2a/5c9bc9847ca933d77a6de49c062982394866c2b6b64c9394137dbc19c756/katna-0.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d388f47079853ca3472087ea2d691ecc", "sha256": "0d285a2eadf44ffdb83cc10cba48743612b836a9db62ce82ed88f00745625725" }, "downloads": -1, "filename": "katna-0.8.0.tar.gz", "has_sig": false, "md5_digest": "d388f47079853ca3472087ea2d691ecc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 43789, "upload_time": "2021-03-05T13:01:35", "upload_time_iso_8601": "2021-03-05T13:01:35.713302Z", "url": "https://files.pythonhosted.org/packages/2a/8a/9938d7c616fadf8846958e73d1cf0bf1c9b3785f8dd8c39772176c68eb6d/katna-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "c0817dc4770bdde2448dcd4d723aa221", "sha256": "eadb35db5add012f400b29a9865d0eed45846e023b071cf9676b3040502482b6" }, "downloads": -1, "filename": "katna-0.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c0817dc4770bdde2448dcd4d723aa221", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 56066, "upload_time": "2021-03-08T12:12:59", "upload_time_iso_8601": "2021-03-08T12:12:59.955183Z", "url": "https://files.pythonhosted.org/packages/a9/40/8c630852d72fe10b0863ec9a2eb0159ac96cb7b62371118e38e0740a93e1/katna-0.8.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7536ffad4009b7cc7c65840afbe9bec8", "sha256": "f63c5caa0c2ac9d3b398f3294e231b4db10d4ed947834d8f42b48d8cfcb57f7c" }, "downloads": -1, "filename": "katna-0.8.1.tar.gz", "has_sig": false, "md5_digest": "7536ffad4009b7cc7c65840afbe9bec8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 45623, "upload_time": "2021-03-08T12:13:01", "upload_time_iso_8601": "2021-03-08T12:13:01.581429Z", "url": "https://files.pythonhosted.org/packages/b1/3b/8324380c34de862995f47b793bd3fd43875f60489c1b4280ebc5d233c713/katna-0.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "6bccb6ded87f1660d4585abc7dcbcb1a", "sha256": "85bc920d0c690ee5d9ed3193bb2117bc075d1c1cba5800ecb09bad60f53f840e" }, "downloads": -1, "filename": "katna-0.8.2-py3-none-any.whl", "has_sig": false, "md5_digest": "6bccb6ded87f1660d4585abc7dcbcb1a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 56180, "upload_time": "2021-03-09T12:15:31", "upload_time_iso_8601": "2021-03-09T12:15:31.038784Z", "url": "https://files.pythonhosted.org/packages/84/15/35abd5660ef6affce543b40987706279f521b63b24b7f618f420492888b0/katna-0.8.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8de284a9b16a707135339a573dd5effa", "sha256": "06c8bce908904ad3f7eecc235725505515fbb9f213ec9e8ca0fda83371ea9624" }, "downloads": -1, "filename": "katna-0.8.2.tar.gz", "has_sig": false, "md5_digest": "8de284a9b16a707135339a573dd5effa", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 45761, "upload_time": "2021-03-09T12:15:33", "upload_time_iso_8601": "2021-03-09T12:15:33.254816Z", "url": "https://files.pythonhosted.org/packages/72/84/aab6ad1d02e7c3e84aa6ed04568ea1eac243dcafa6c3de634b06ad8db34a/katna-0.8.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "c4b25b9c41c0a4f8832a4de960e707c4", "sha256": "04b02cf2ed6ace203427cdc999c014ff505b6fc59edc5bc0da37ea19c26ccae1" }, "downloads": -1, "filename": "katna-0.8.3-py3-none-any.whl", "has_sig": false, "md5_digest": "c4b25b9c41c0a4f8832a4de960e707c4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 57726, "upload_time": "2021-03-11T09:08:58", "upload_time_iso_8601": "2021-03-11T09:08:58.902122Z", "url": "https://files.pythonhosted.org/packages/b2/3a/df94f11b1823d6f4589e153515da6126efe48805ba05e5a5697679f711ce/katna-0.8.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb89e082a67845d6cbcdde453265f6cf", "sha256": "75ba056353823cdc20bf4e2da8ffbeb11dc4436b672e0def89f50ff79b4b28f0" }, "downloads": -1, "filename": "katna-0.8.3.tar.gz", "has_sig": false, "md5_digest": "cb89e082a67845d6cbcdde453265f6cf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 47336, "upload_time": "2021-03-11T09:09:00", "upload_time_iso_8601": "2021-03-11T09:09:00.496076Z", "url": "https://files.pythonhosted.org/packages/a2/c8/b9f62d2ab1f1974bf4f7667ed220841ea841db633dd243f628f841fe8eee/katna-0.8.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "05a70e69c235a88e69e4efd80359cc0d", "sha256": "e22e55ed2d43924ae387d497517b7ba47a8054af84b24315e8a278ea0d30b56c" }, "downloads": -1, "filename": "katna-0.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "05a70e69c235a88e69e4efd80359cc0d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 61438, "upload_time": "2021-03-19T09:15:03", "upload_time_iso_8601": "2021-03-19T09:15:03.511201Z", "url": "https://files.pythonhosted.org/packages/3d/e9/b378876b273d640b4d50eb6e04a71ddd48c9c25355280cf89ef3541f29b6/katna-0.9.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "723093141e513d61da8231f3a9904315", "sha256": "e703c1ab6a7ac34076f7bcd3f878693bbaeb54ebf30414049e278bccd8b79973" }, "downloads": -1, "filename": "katna-0.9.0.tar.gz", "has_sig": false, "md5_digest": "723093141e513d61da8231f3a9904315", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 50210, "upload_time": "2021-03-19T09:15:06", "upload_time_iso_8601": "2021-03-19T09:15:06.682410Z", "url": "https://files.pythonhosted.org/packages/65/e2/b292380a2ad37144cb9b019a2bafd02cb10a0397c41e2b0acdf504115c96/katna-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "c35da28bfb2e361d5bc47b831ddcd62a", "sha256": "f121fa56ace364e7d05fc2f7091fc31fb52b3c03afce288e4f367e596014d3d2" }, "downloads": -1, "filename": "katna-0.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c35da28bfb2e361d5bc47b831ddcd62a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 62566, "upload_time": "2021-04-21T09:01:35", "upload_time_iso_8601": "2021-04-21T09:01:35.054332Z", "url": "https://files.pythonhosted.org/packages/a9/b7/52c78f61c8a23b3c3b146b24ceb1bed8f0fc286df3dec30e667556aa49d1/katna-0.9.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ffa8066b93ac873775de8657bd6a476e", "sha256": "c505658e9c2c998c58f1f3c1bc63291a878ccd3e4f59d2df85f917df9ccab36f" }, "downloads": -1, "filename": "katna-0.9.1.tar.gz", "has_sig": false, "md5_digest": "ffa8066b93ac873775de8657bd6a476e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 51581, "upload_time": "2021-04-21T09:01:37", "upload_time_iso_8601": "2021-04-21T09:01:37.045932Z", "url": "https://files.pythonhosted.org/packages/3b/cb/c79a14b9bbe1bea1db7bcea040898b800d33fce88a42e03e099121fdfc79/katna-0.9.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "68e117c66c9eb27e7f8c337f353897bd", "sha256": "41b17a598490f9dac8d92aaebfe465bd699dd7c7f5a90143db4bd550852cc7d4" }, "downloads": -1, "filename": "katna-0.9.2-py3-none-any.whl", "has_sig": false, "md5_digest": "68e117c66c9eb27e7f8c337f353897bd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 62681, "upload_time": "2021-04-28T06:59:25", "upload_time_iso_8601": "2021-04-28T06:59:25.196637Z", "url": "https://files.pythonhosted.org/packages/73/38/83d826d7053eeeb0528a3ae4d319422556bf8b3a1228164daaa4409ebf46/katna-0.9.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b456f40d45b95dc4e16e6418e48f693", "sha256": "61f360619a5de4113940bfcc4885d43684326831057146630857afd103b21aeb" }, "downloads": -1, "filename": "katna-0.9.2.tar.gz", "has_sig": false, "md5_digest": "5b456f40d45b95dc4e16e6418e48f693", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 51851, "upload_time": "2021-04-28T06:59:27", "upload_time_iso_8601": "2021-04-28T06:59:27.146080Z", "url": "https://files.pythonhosted.org/packages/a8/9a/d90281e31b3fcfee353bfdfc058e13e3d86a7b002c7d3bc2e82a8e5e26da/katna-0.9.2.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "68e117c66c9eb27e7f8c337f353897bd", "sha256": "41b17a598490f9dac8d92aaebfe465bd699dd7c7f5a90143db4bd550852cc7d4" }, "downloads": -1, "filename": "katna-0.9.2-py3-none-any.whl", "has_sig": false, "md5_digest": "68e117c66c9eb27e7f8c337f353897bd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 62681, "upload_time": "2021-04-28T06:59:25", "upload_time_iso_8601": "2021-04-28T06:59:25.196637Z", "url": "https://files.pythonhosted.org/packages/73/38/83d826d7053eeeb0528a3ae4d319422556bf8b3a1228164daaa4409ebf46/katna-0.9.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b456f40d45b95dc4e16e6418e48f693", "sha256": "61f360619a5de4113940bfcc4885d43684326831057146630857afd103b21aeb" }, "downloads": -1, "filename": "katna-0.9.2.tar.gz", "has_sig": false, "md5_digest": "5b456f40d45b95dc4e16e6418e48f693", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 51851, "upload_time": "2021-04-28T06:59:27", "upload_time_iso_8601": "2021-04-28T06:59:27.146080Z", "url": "https://files.pythonhosted.org/packages/a8/9a/d90281e31b3fcfee353bfdfc058e13e3d86a7b002c7d3bc2e82a8e5e26da/katna-0.9.2.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }