{ "info": { "author": "deadc0de6", "author_email": "deadc0de6@foo.bar", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "DOTDROP\n=======\n\n|Build Status| |License: GPL v3| |Coverage Status| |PyPI version| |AUR|\n|Python|\n\n*Save your dotfiles once, deploy them everywhere*\n\n`Dotdrop `__ makes the management\nof dotfiles between different hosts easy. It allows to store your\ndotfiles on git and automagically deploy different versions of the same\nfile on different setups.\n\nIf you like dotdrop,\n\nIt also allows to manage different *sets* of dotfiles. For example you\ncan have a set of dotfiles for your home laptop and a different set for\nyour office desktop. Those sets may overlap and different versions of\nthe same dotfiles can be deployed on different predefined *profiles*. Or\nyou may have a main set of dotfiles for your everyday\u2019s host and a\nsub-set you only need to deploy to temporary hosts (cloud VM, etc) that\nmay be using a slightly different version of some of the dotfiles.\n\nFeatures:\n\n- Sync once every dotfile on git for different usages\n- Allow dotfiles templating by leveraging\n `jinja2 `__\n- Dynamically generated dotfile contents with pre-defined variables\n- Comparison between deployed and stored dotfiles\n- Handling multiple profiles with different sets of dotfiles\n- Easy import and update dotfiles\n- Handle files and directories\n- Support symlink of dotfiles\n- Associate actions to the deployment of specific dotfiles\n- Associate transformations for storing encrypted/compressed dotfiles\n- Provide solutions for handling dotfiles containing sensitive\n information\n\nCheck also the `blog\npost `__, the\n`example <#getting-started>`__, the\n`wiki `__ or how `people are\nusing\ndotdrop `__\nfor more.\n\nQuick start:\n\n.. code:: bash\n\n mkdir dotfiles && cd dotfiles\n git init\n git submodule add https://github.com/deadc0de6/dotdrop.git\n pip3 install -r dotdrop/requirements.txt --user\n ./dotdrop/bootstrap.sh\n ./dotdrop.sh --help\n\nA mirror of this repository is available on gitlab under\nhttps://gitlab.com/deadc0de6/dotdrop.\n\nWhy dotdrop ?\n-------------\n\nThere exist many tools to manage dotfiles however not many allow to\ndeploy different versions of the same dotfile on different hosts.\nMoreover dotdrop allows to specify the set of dotfiles that need to be\ndeployed on a specific profile.\n\nSee the `example <#getting-started>`__ for a concrete example on why\n`dotdrop `__ rocks.\n\n--------------\n\n**Table of Contents**\n\n- `Installation <#installation>`__\n- `Getting started <#getting-started>`__\n- `Documentation <#documentation>`__\n- `Support <#support>`__\n\nInstallation\n============\n\nThere are multiple ways to install and use dotdrop. It is recommended to\ninstall dotdrop `as a submodule <#as-a-submodule>`__ to your dotfiles\ngit tree. Having dotdrop as a submodule guarantees that anywhere you are\ncloning your dotfiles git tree from you\u2019ll have dotdrop shipped with it.\n\nBelow instructions show how to install dotdrop as a submodule. For\nalternative installation instructions (with virtualenv, pypi, aur, snap,\netc) see the `wiki installation\npage `__.\n\nDotdrop is also available on \\* pypi: https://pypi.org/project/dotdrop/\n\\* aur (stable): https://aur.archlinux.org/packages/dotdrop/ \\* aur (git\nversion): https://aur.archlinux.org/packages/dotdrop-git/ \\* snapcraft:\nhttps://snapcraft.io/dotdrop\n\nAs a submodule\n--------------\n\nThe following will create a git repository for your dotfiles and keep\ndotdrop as a submodule:\n\n.. code:: bash\n\n ## create the repository\n $ mkdir dotfiles; cd dotfiles\n $ git init\n\n ## install dotdrop as a submodule\n $ git submodule add https://github.com/deadc0de6/dotdrop.git\n $ pip3 install -r dotdrop/requirements.txt --user\n $ ./dotdrop/bootstrap.sh\n\n ## use dotdrop\n $ ./dotdrop.sh --help\n\nFor MacOS users, make sure to install ``realpath`` through homebrew\n(part of *coreutils*).\n\nUsing dotdrop as a submodule will need you to work with dotdrop by using\nthe generated script ``dotdrop.sh`` at the root of your dotfiles\nrepository. Note that this script updates the submodule automatically,\nunless called with the environment variable ``DOTDROP_AUTOUPDATE`` set\nto ``no``.\n\nTo ease the use of dotdrop, it is recommended to add an alias to it in\nyour shell (*/.bashrc,/.zshrc*, etc) with the config file path, for\nexample\n\n::\n\n alias dotdrop=' --cfg='\n\nFor bash and zsh completion scripts see `the related\ndoc `__.\n\nGetting started\n===============\n\nCreate a new repository to store your dotfiles with dotdrop. *Init* or\n*clone* that new repository and `install\ndotdrop `__.\n\nThen import any dotfiles (files or directories) you want to manage with\ndotdrop. You can either use the default profile (which resolves to the\n*hostname* of the host your running dotdrop on) or provide it\nspecifically using the switch ``-p --profile``.\n\nImport dotfiles on host *home*\n\n.. code:: bash\n\n $ dotdrop import ~/.vimrc ~/.xinitrc ~/.config/polybar\n\nDotdrop does two things:\n\n- Copy the dotfiles in the *dotpath* directory (defined in\n ``config.yaml``, defaults to *dotfiles*)\n- Create the associated entries in the ``config.yaml`` file (in\n ``dotfiles`` and in ``profiles``)\n\nYour config file will look something similar to this\n\n.. code:: yaml\n\n config:\n backup: true\n banner: true\n create: true\n dotpath: dotfiles\n ignoreempty: false\n keepdot: false\n longkey: false\n showdiff: false\n workdir: ~/.config/dotdrop\n dotfiles:\n d_polybar:\n dst: ~/.config/polybar\n src: config/polybar\n f_vimrc:\n dst: ~/.vimrc\n src: vimrc\n f_xinitrc:\n dst: ~/.xinitrc\n src: xinitrc\n profiles:\n home:\n dotfiles:\n - f_vimrc\n - f_xinitrc\n - d_polybar\n\nFor a description of the different fields and their use, see the `config\ndoc `__.\n\nCommit and push your changes.\n\nThen go to another host where your dotfiles need to be managed as well,\nclone the previously setup repository and compare the local dotfiles\nwith the ones stored in dotdrop:\n\n.. code:: bash\n\n $ dotdrop compare --profile=home\n\nNow you might want to adapt the ``config.yaml`` file to your likings on\nthat second host. Let\u2019s say for example that you only want ``d_polybar``\nand ``f_xinitrc`` to be deployed on that second host. You would then\nchange your config to something like this (considering that second\nhost\u2019s hostname is *office*):\n\n.. code:: yaml\n\n \u2026\n profiles:\n home:\n dotfiles:\n - f_vimrc\n - f_xinitrc\n - d_polybar\n office:\n dotfiles:\n - f_xinitrc\n - d_polybar\n\nThen adapt any dotfile using the\n`templating `__\nfeature (if needed). For example you might want different fonts sizes on\npolybar for the different hosts:\n\nedit ``/config/polybar/config``\n\n.. code:: bash\n\n \u2026\n {%@@ if profile == \"home\" @@%}\n font0 = sans:size=10;0\n {%@@ elif profile == \"office\" @@%}\n font0 = sans:size=14;0\n {%@@ endif @@%}\n font1 = \"Material Design Icons:style=Regular:size=14;0\"\n font2 = \"unifont:size=6;0\"\n \u2026\n\nAlso the home computer is running `awesomeWM `__\nand the office computer\n`bspwm `__. The ``~/.xinitrc``\nfile will therefore be different while still sharing some lines.\n\nedit ``/xinitrc``\n\n.. code:: bash\n\n #!/bin/bash\n\n # load Xresources\n userresources=$HOME/.Xresources\n if [ -f \"$userresources\" ]; then\n xrdb -merge \"$userresources\" &\n fi\n\n # launch the wm\n {%@@ if profile == \"home\" @@%}\n exec awesome\n {%@@ elif profile == \"office\" @@%}\n exec bspwm\n {%@@ endif @@%}\n\nThe *if branch* on above template examples will define which part is\ndeployed based on the hostname of the host on which dotdrop is run from.\n(or the selected profile).\n\nWhen done, you can install your dotfiles using\n\n.. code:: bash\n\n $ dotdrop install\n\nIf you are unsure, you can always run ``dotdrop compare`` to see how\nyour local dotfiles would be updated by dotdrop before running\n``install`` or run install with ``--dry``.\n\nThat\u2019s it, a single repository with all your dotfiles for your different\nhosts.\n\nYou can then\n\n- `create\n actions `__\n- `use\n transformations `__\n- `use\n variables `__\n- `symlink\n dotfiles `__\n- `and more `__\n\nFor more options see ``dotdrop --help`` and the\n`wiki `__.\n\nDocumentation\n=============\n\nDotdrop\u2019s documentation is hosted on `its\nwiki `__.\n\nSupport\n=======\n\nIf you like dotdrop,\n\nContribution\n============\n\nIf you are having trouble installing or using dotdrop, `open an\nissue `__.\n\nIf you want to contribute, feel free to do a PR (please follow PEP8).\nHave a look at the `contribution\nguidelines `__\n\nLicense\n=======\n\nThis project is licensed under the terms of the GPLv3 license.\n\n.. |Build Status| image:: https://travis-ci.org/deadc0de6/dotdrop.svg?branch=master\n :target: https://travis-ci.org/deadc0de6/dotdrop\n.. |License: GPL v3| image:: https://img.shields.io/badge/License-GPL%20v3-blue.svg\n :target: http://www.gnu.org/licenses/gpl-3.0\n.. |Coverage Status| image:: https://coveralls.io/repos/github/deadc0de6/dotdrop/badge.svg?branch=master\n :target: https://coveralls.io/github/deadc0de6/dotdrop?branch=master\n.. |PyPI version| image:: https://badge.fury.io/py/dotdrop.svg\n :target: https://badge.fury.io/py/dotdrop\n.. |AUR| image:: https://img.shields.io/aur/version/dotdrop.svg\n :target: https://aur.archlinux.org/packages/dotdrop\n.. |Python| image:: https://img.shields.io/pypi/pyversions/dotdrop.svg\n :target: https://pypi.python.org/pypi/dotdrop\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/deadc0de6/dotdrop/archive/v0.29.5.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/deadc0de6/dotdrop", "keywords": "dotfiles jinja2", "license": "GPLv3", "maintainer": "", "maintainer_email": "", "name": "dotdrop", "package_url": "https://pypi.org/project/dotdrop/", "platform": "", "project_url": "https://pypi.org/project/dotdrop/", "project_urls": { "Download": "https://github.com/deadc0de6/dotdrop/archive/v0.29.5.tar.gz", "Homepage": "https://github.com/deadc0de6/dotdrop" }, "release_url": "https://pypi.org/project/dotdrop/0.29.5/", "requires_dist": [ "docopt", "Jinja2", "ruamel.yaml", "check-manifest ; extra == 'dev'", "coverage ; extra == 'test'", "pytest ; extra == 'test'", "pytest-cov ; extra == 'test'" ], "requires_python": ">=3", "summary": "Save your dotfiles once, deploy them everywhere", "version": "0.29.5" }, "last_serial": 5693541, "releases": { "0.10": [ { "comment_text": "", "digests": { "md5": "9d76213760edf8a559fe7ab75b0a5c31", "sha256": "02e7ccef4ac4f971ad3c9edbd0e7949860fe8edf119a73b9f0a4b77cdc3e13a5" }, "downloads": -1, "filename": "dotdrop-0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "9d76213760edf8a559fe7ab75b0a5c31", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 40189, "upload_time": "2018-02-07T16:22:55", "url": "https://files.pythonhosted.org/packages/57/05/5ecdc09f440b1deddd58d305813545edc30838456c38b3b08ef79dd3dcc7/dotdrop-0.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2f2213a781b80145197038140bed06be", "sha256": "24c336615683d024575fffe6cbd100c89ee019f29c9f2f04b06504ff6aa8bad8" }, "downloads": -1, "filename": "dotdrop-0.10.tar.gz", "has_sig": false, "md5_digest": "2f2213a781b80145197038140bed06be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32707, "upload_time": "2018-02-07T16:23:10", "url": "https://files.pythonhosted.org/packages/f0/22/abf139c7aae11388ae49b612bc864f0670fe16f8534852a24eca6594ea8d/dotdrop-0.10.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "d46486121a6ebca0d644e7e7c2e05d54", "sha256": "ef1a5f65533e87b61788319af51258a19a0630ad9d175738c983d90041c96fbb" }, "downloads": -1, "filename": "dotdrop-0.10.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d46486121a6ebca0d644e7e7c2e05d54", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 40573, "upload_time": "2018-02-13T15:58:12", "url": "https://files.pythonhosted.org/packages/7a/59/fcb3e916eef66a7c9cbdd07e1b2196dc699ab15468e197f8b500105d7276/dotdrop-0.10.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5259346a1b04a5d6498ddfed79b2b431", "sha256": "bcf418da0e2c733ba1120b7af3f71e58fc5624a43cb7b5bee2ee0a3e8c383ab2" }, "downloads": -1, "filename": "dotdrop-0.10.1.tar.gz", "has_sig": false, "md5_digest": "5259346a1b04a5d6498ddfed79b2b431", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33183, "upload_time": "2018-02-13T15:58:16", "url": "https://files.pythonhosted.org/packages/18/44/0ce3bf52747c32854533bae1abea20f057aabf43d2968ace646ed3f1b44d/dotdrop-0.10.1.tar.gz" } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "b7e94cf85cb63e0bf9329138c091d888", "sha256": "3a19f2d52090cc2249cde4d242458a30384660bec0c6bb951f5bc21129d41d6e" }, "downloads": -1, "filename": "dotdrop-0.10.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b7e94cf85cb63e0bf9329138c091d888", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 39400, "upload_time": "2018-04-10T21:31:47", "url": "https://files.pythonhosted.org/packages/e2/f0/6860c29dbb7347587d4527e219a7ae4a8332e79eb0cf85b7bd596153753c/dotdrop-0.10.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c58cdfac61f8cf2ffb362019344fb474", "sha256": "baef0d28eaa8bf388c722c2ed731f6e867577240ddf223477453d162aa0de211" }, "downloads": -1, "filename": "dotdrop-0.10.2.tar.gz", "has_sig": false, "md5_digest": "c58cdfac61f8cf2ffb362019344fb474", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34413, "upload_time": "2018-04-10T21:31:48", "url": "https://files.pythonhosted.org/packages/72/56/d3fe9acc15fc762dab607b4c0afc09d41316b8b2ad7deec846a451546084/dotdrop-0.10.2.tar.gz" } ], "0.10.4": [ { "comment_text": "", "digests": { "md5": "99c078c2afe10e7e13ea9706d69d676e", "sha256": "74b9433c9efde7378ed2147a54c88bf9a5e8429f445bdd4ca4cb47691c508580" }, "downloads": -1, "filename": "dotdrop-0.10.4-py3-none-any.whl", "has_sig": false, "md5_digest": "99c078c2afe10e7e13ea9706d69d676e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 31891, "upload_time": "2018-04-11T08:58:27", "url": "https://files.pythonhosted.org/packages/b1/dd/3ebbe27a3692f3208666639d517840b8eac4cd2c8f7cc764fa1aa0954173/dotdrop-0.10.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7d5d4ce4b87f0ab702d5dfebc4f7ba91", "sha256": "2ccdfe51b827a5a59789f7caa13a52d4655a4c460d9b25726439c4a4c62557e5" }, "downloads": -1, "filename": "dotdrop-0.10.4.tar.gz", "has_sig": false, "md5_digest": "7d5d4ce4b87f0ab702d5dfebc4f7ba91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35270, "upload_time": "2018-04-11T08:58:29", "url": "https://files.pythonhosted.org/packages/2c/66/7e2164fae56ca8800963ece8727130aa5649203df3cbfe7f00a9ba77a01d/dotdrop-0.10.4.tar.gz" } ], "0.10.5": [ { "comment_text": "", "digests": { "md5": "37e75ae8baa865c9f41d0b6a620f54e3", "sha256": "43374b428f54f51273969040a7a2f237e0557bef923ca7d57520e523acc0794f" }, "downloads": -1, "filename": "dotdrop-0.10.5-py3-none-any.whl", "has_sig": false, "md5_digest": "37e75ae8baa865c9f41d0b6a620f54e3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 32059, "upload_time": "2018-05-02T14:54:03", "url": "https://files.pythonhosted.org/packages/ed/71/c362bbe96bd092ea5933cd41ac004cb7d1b14d12da8df0e912cd585e5320/dotdrop-0.10.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "32658477b2d5169df6bef29ae2b8e670", "sha256": "94913d3232f5a4a751a0ec7088e8d4d385de579431a1880c3149cbf8025f3823" }, "downloads": -1, "filename": "dotdrop-0.10.5.tar.gz", "has_sig": false, "md5_digest": "32658477b2d5169df6bef29ae2b8e670", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40943, "upload_time": "2018-05-02T14:54:04", "url": "https://files.pythonhosted.org/packages/2c/75/ca062177bf5252395b36b110e251b43dd94ad745285e8b844b1ee382e13a/dotdrop-0.10.5.tar.gz" } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "3ba86792d96af4516c56dfa3150a292e", "sha256": "c938b73254157c92b059060c68c039d8c37cf6ae7d108a9bc0dcef24fd6422d7" }, "downloads": -1, "filename": "dotdrop-0.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3ba86792d96af4516c56dfa3150a292e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 39835, "upload_time": "2018-05-02T19:41:06", "url": "https://files.pythonhosted.org/packages/67/dd/ae08f09fbb0ac9d3fe44de776a71b038d4f73eac7786728a6d8e5a710bcf/dotdrop-0.11.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cbd5557fced4796dc456a2f1f5068e3f", "sha256": "4d0dea13e14b21297932b54369b7b73e0f8ff6d6ce1e3dce89c60f710e75d611" }, "downloads": -1, "filename": "dotdrop-0.11.0.tar.gz", "has_sig": false, "md5_digest": "cbd5557fced4796dc456a2f1f5068e3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34892, "upload_time": "2018-05-02T19:41:07", "url": "https://files.pythonhosted.org/packages/5c/60/943ab48799c95d9439ca5b9ec0384ba02fe8852c2c2885ed28315c220798/dotdrop-0.11.0.tar.gz" } ], "0.12": [ { "comment_text": "", "digests": { "md5": "5b306abaaa8706bcfecbf7f62bab63c5", "sha256": "4598bdf4c85a82f6d8b0d2546400b603dd834b16d6924b48398a74f7af4d72bc" }, "downloads": -1, "filename": "dotdrop-0.12-py3-none-any.whl", "has_sig": false, "md5_digest": "5b306abaaa8706bcfecbf7f62bab63c5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 39587, "upload_time": "2018-05-20T19:58:10", "url": "https://files.pythonhosted.org/packages/83/81/ae9c974cc30ae2524969ff736661860ecd9bc0f02b60b40533e4f78ebecb/dotdrop-0.12-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "af3049e25bd41527b76b6409de4d26da", "sha256": "d4098e2e4bcaaa94581073aaebfd3daefbd32e36d9ca25a0d44b696c0fe549a1" }, "downloads": -1, "filename": "dotdrop-0.12.tar.gz", "has_sig": false, "md5_digest": "af3049e25bd41527b76b6409de4d26da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34724, "upload_time": "2018-05-20T19:58:12", "url": "https://files.pythonhosted.org/packages/85/0f/87747a3bd448edf84cabf856cb084fde6a02e726af37f2a93e7d8a9a42d8/dotdrop-0.12.tar.gz" } ], "0.13": [ { "comment_text": "", "digests": { "md5": "8f212798ad9adeb829a0e97383a09746", "sha256": "69f6713d97482a57b59f537937fb243e2c6ff1c8e1d4c7530bff1a9c73531b10" }, "downloads": -1, "filename": "dotdrop-0.13-py3-none-any.whl", "has_sig": false, "md5_digest": "8f212798ad9adeb829a0e97383a09746", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 39000, "upload_time": "2018-05-20T20:53:13", "url": "https://files.pythonhosted.org/packages/7d/00/98751dd22215b2c347cf4f569fd717b2a58df754902da9864bfac3aceddf/dotdrop-0.13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a3c6f602909a7f3e945a37418e50b5a9", "sha256": "b1c7084a5366f6528d4c38ebecdb3029dc9e09d283647e5a680e50256c63cea9" }, "downloads": -1, "filename": "dotdrop-0.13.tar.gz", "has_sig": false, "md5_digest": "a3c6f602909a7f3e945a37418e50b5a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34588, "upload_time": "2018-05-20T20:53:15", "url": "https://files.pythonhosted.org/packages/67/35/00aff2de37d95191e1c00e52bb263f0dd13f0266dd4d4d27a836ebada46f/dotdrop-0.13.tar.gz" } ], "0.14": [ { "comment_text": "", "digests": { "md5": "f007572895128598de8457f5231b15b1", "sha256": "81df87daea43bb08c434ffe3c08f5b2e04475f14aa7d6832c758ebb97d819348" }, "downloads": -1, "filename": "dotdrop-0.14-py3-none-any.whl", "has_sig": false, "md5_digest": "f007572895128598de8457f5231b15b1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 40266, "upload_time": "2018-06-02T08:03:48", "url": "https://files.pythonhosted.org/packages/d2/fc/776989373cf6a33bea9e2115e88f31f4247c0a52c6ddd4f9351582006f1c/dotdrop-0.14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "29c40ce6a4a14450433fcd135240af1c", "sha256": "ae0ee8945137d447355b38f8072b7fc99f03e0e067a4690ea9f0b60dd3f025fb" }, "downloads": -1, "filename": "dotdrop-0.14.tar.gz", "has_sig": false, "md5_digest": "29c40ce6a4a14450433fcd135240af1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35724, "upload_time": "2018-06-02T08:03:50", "url": "https://files.pythonhosted.org/packages/79/83/08ecb0a430c62800e6a61a360c217a30ffdb0c61d5eceebb33d2290fb905/dotdrop-0.14.tar.gz" } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "991a2c9fa8fddc0ad1494fee8af9fd49", "sha256": "aa8ef65b8b7fcd59682f65af165677c589f001983bfa46e6d7281ace3885d5fe" }, "downloads": -1, "filename": "dotdrop-0.14.1-py3-none-any.whl", "has_sig": false, "md5_digest": "991a2c9fa8fddc0ad1494fee8af9fd49", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 40314, "upload_time": "2018-06-02T08:48:46", "url": "https://files.pythonhosted.org/packages/48/52/4e1bc75635b083585b9938647bb860a18cd40e42980f470ffa2b6baf8e7c/dotdrop-0.14.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d0cb65a88913cf63487042bb0fc8dd3e", "sha256": "9e50d6423b8bb16a39c4050c6dfa76712dfdca5cf48f2068cd5d84c699886add" }, "downloads": -1, "filename": "dotdrop-0.14.1.tar.gz", "has_sig": false, "md5_digest": "d0cb65a88913cf63487042bb0fc8dd3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35733, "upload_time": "2018-06-02T08:48:48", "url": "https://files.pythonhosted.org/packages/05/e1/888b5d078aef98efaaf6ea6ebc28fb7ab78919ba512c6877b7d9f2e2cfac/dotdrop-0.14.1.tar.gz" } ], "0.14.2": [ { "comment_text": "", "digests": { "md5": "65b32cdd0ec143acac262cbddd3ac231", "sha256": "ea8dac21a1b8a1dfe690e25bde52ff70cb1fb73fc4859665b5c7e758dca6e256" }, "downloads": -1, "filename": "dotdrop-0.14.2-py3-none-any.whl", "has_sig": false, "md5_digest": "65b32cdd0ec143acac262cbddd3ac231", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 40985, "upload_time": "2018-06-02T14:07:10", "url": "https://files.pythonhosted.org/packages/12/9f/44998b599bf122daed123c1d03f31dce5a79cdcb3a461b6b57f980295e90/dotdrop-0.14.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c2d117e222e3a0b1bb1f7d03a7d1fad4", "sha256": "31ad5428b20d543a90449f7a1637d3ff3f1c60182e520cfada982ff1a3de758c" }, "downloads": -1, "filename": "dotdrop-0.14.2.tar.gz", "has_sig": false, "md5_digest": "c2d117e222e3a0b1bb1f7d03a7d1fad4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36410, "upload_time": "2018-06-02T14:07:11", "url": "https://files.pythonhosted.org/packages/6c/f2/159b27727a8f7c1b8af64246ec6fe40fd12f81df7ef861e862acf4264084/dotdrop-0.14.2.tar.gz" } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "5b34b3b5116596040daeb0709a7dde09", "sha256": "5557ee9046cb23178337e87c1f655eabdfbdcbdeba1305ed39a77906214a64a6" }, "downloads": -1, "filename": "dotdrop-0.16.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5b34b3b5116596040daeb0709a7dde09", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 34639, "upload_time": "2018-06-08T12:13:10", "url": "https://files.pythonhosted.org/packages/49/12/1f978e9c2eb02bcd7ffa56c501c6dac2da470119203606add44b1bcd8608/dotdrop-0.16.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad61f71b832fb051305e0f5d85a315f4", "sha256": "e3b1bd8b5aac7a4ae9aa5146d1349b21f8c732f15581eed43c1e1ccccab45217" }, "downloads": -1, "filename": "dotdrop-0.16.0.tar.gz", "has_sig": false, "md5_digest": "ad61f71b832fb051305e0f5d85a315f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38106, "upload_time": "2018-06-08T12:13:13", "url": "https://files.pythonhosted.org/packages/01/f5/190012cb2950038c40b6d8c28915c2dc283a749124c26cc8933d068eade4/dotdrop-0.16.0.tar.gz" } ], "0.16.1": [ { "comment_text": "", "digests": { "md5": "741fe1331847c027a883403c12eeda76", "sha256": "5b1a04421092d3548221453e8905f87651c5ce97e0fec80412f12efbcb6804b6" }, "downloads": -1, "filename": "dotdrop-0.16.1-py3-none-any.whl", "has_sig": false, "md5_digest": "741fe1331847c027a883403c12eeda76", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42345, "upload_time": "2018-06-08T20:50:37", "url": "https://files.pythonhosted.org/packages/13/14/0b2cba0a5b6629c6d8e2d654207b080cf30e5a521d580bfb47f20efc9907/dotdrop-0.16.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "68a5c6d080eb6c52c9439ea30da266f5", "sha256": "5550754a6ac7366147aafc74ad77999ac73d7eca7206357a4af8f68d6bffb005" }, "downloads": -1, "filename": "dotdrop-0.16.1.tar.gz", "has_sig": false, "md5_digest": "68a5c6d080eb6c52c9439ea30da266f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37651, "upload_time": "2018-06-08T20:50:38", "url": "https://files.pythonhosted.org/packages/0e/8e/162fb2661128efe102198c6d3c87355f629411a9e89b5e6694cc68aeb4a4/dotdrop-0.16.1.tar.gz" } ], "0.17.0": [ { "comment_text": "", "digests": { "md5": "e41a4779679609f3f4ac1add84ecd508", "sha256": "76ae18e25fdbaab4fd91520fa0b9d83b93029e7d4d880beefe646405460ddad5" }, "downloads": -1, "filename": "dotdrop-0.17.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e41a4779679609f3f4ac1add84ecd508", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 34968, "upload_time": "2018-06-13T13:26:10", "url": "https://files.pythonhosted.org/packages/e5/1e/98f39479eecbdf7cab82aa12738e6481f18637031dcf79075b5e1d1038d3/dotdrop-0.17.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "44eb67656362838d305087e8f59e8b47", "sha256": "63e7960c27bfb5f8c7e1b78b86fc1aa34d118341b0e36ab05fe85022607c65fa" }, "downloads": -1, "filename": "dotdrop-0.17.0.tar.gz", "has_sig": false, "md5_digest": "44eb67656362838d305087e8f59e8b47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38381, "upload_time": "2018-06-13T13:26:11", "url": "https://files.pythonhosted.org/packages/7e/d9/61554ca3b78f16cfec6c7b90867bfbdae8a030632431d62a0ccec1bbdab6/dotdrop-0.17.0.tar.gz" } ], "0.17.1": [ { "comment_text": "", "digests": { "md5": "f36e9b0e4763506f52585bd05a32f164", "sha256": "b2a7ca2c6b63c698c92576ab664745396b941069f68f86660301c8f2fe18769c" }, "downloads": -1, "filename": "dotdrop-0.17.1-py3-none-any.whl", "has_sig": false, "md5_digest": "f36e9b0e4763506f52585bd05a32f164", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42555, "upload_time": "2018-06-17T09:31:35", "url": "https://files.pythonhosted.org/packages/c0/07/6f5b2a60630403d15911ae7689df8ff5664ee6fe87f34e9a1b73f5f28ac2/dotdrop-0.17.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "016a9d8ec4bc091d2490e0fa4ed092e6", "sha256": "edb4d829d0acbb1e9515370a34e06ca29c7e379dca884ac86d098bd383e3246a" }, "downloads": -1, "filename": "dotdrop-0.17.1.tar.gz", "has_sig": false, "md5_digest": "016a9d8ec4bc091d2490e0fa4ed092e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37828, "upload_time": "2018-06-17T09:31:37", "url": "https://files.pythonhosted.org/packages/a6/a3/a0e48539efefd5d72c75115186e910c7672185798678c6e5f44b8251f1e8/dotdrop-0.17.1.tar.gz" } ], "0.17.2": [ { "comment_text": "", "digests": { "md5": "f82ccdd1ed3e235dcf4899c01d02766c", "sha256": "9e4159137391766756cfc870a8ce16806f38adfc3683fa498f7ef0f84cfadcb5" }, "downloads": -1, "filename": "dotdrop-0.17.2-py3-none-any.whl", "has_sig": false, "md5_digest": "f82ccdd1ed3e235dcf4899c01d02766c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42927, "upload_time": "2018-07-21T11:41:01", "url": "https://files.pythonhosted.org/packages/d6/3b/ec14e664664becbc83728ef0552cd0c5220a19f4d3a403a33847f7699f28/dotdrop-0.17.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "871dd04ea6d9fe108f290f92c3d33d35", "sha256": "9fc4a6ada98feefefe1d0103e6215e02aa5c62b921464ab497c491a30f3b5647" }, "downloads": -1, "filename": "dotdrop-0.17.2.tar.gz", "has_sig": false, "md5_digest": "871dd04ea6d9fe108f290f92c3d33d35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38022, "upload_time": "2018-07-21T11:41:03", "url": "https://files.pythonhosted.org/packages/17/ce/ce6574a16b4a06f90fc598c604f88c96e6cadfc682393c47941adc1123fa/dotdrop-0.17.2.tar.gz" } ], "0.18.0": [ { "comment_text": "", "digests": { "md5": "10987fa49c7cf5a4f77ca5e4ee3c0d00", "sha256": "11d2a415e0f1a9ce499fb94d69cbb9af1ec7a10c5736c1d7d11758816c452a08" }, "downloads": -1, "filename": "dotdrop-0.18.0-py3-none-any.whl", "has_sig": false, "md5_digest": "10987fa49c7cf5a4f77ca5e4ee3c0d00", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44464, "upload_time": "2018-07-21T11:50:45", "url": "https://files.pythonhosted.org/packages/72/24/c52082f7c1d264bd8c4f7be1977f6d5907254128da8ccd1c779dcaed6e34/dotdrop-0.18.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5adef145388b80701ee9515bc0d63d37", "sha256": "9df5da36d2af65ee36c326a09159e03715e917ffe1eb606212295bff46fbd660" }, "downloads": -1, "filename": "dotdrop-0.18.0.tar.gz", "has_sig": false, "md5_digest": "5adef145388b80701ee9515bc0d63d37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39069, "upload_time": "2018-07-21T11:50:47", "url": "https://files.pythonhosted.org/packages/38/bd/af436f5f495d4f7d3043a459e0e6ad6c85be4d6ea92261e1a3b42904ae4f/dotdrop-0.18.0.tar.gz" } ], "0.19.0": [ { "comment_text": "", "digests": { "md5": "9b02ab04e476579af45449fb91a96997", "sha256": "bb05a5bf920b05798bfa9ddc320ea984d752e03ddbd9d55cc5e2c2dc4a02391b" }, "downloads": -1, "filename": "dotdrop-0.19.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9b02ab04e476579af45449fb91a96997", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45547, "upload_time": "2018-07-21T12:00:34", "url": "https://files.pythonhosted.org/packages/83/ae/5df48c060596b11a46b43be7af9341d879e5f0ba1df6e4d610600d72c6e5/dotdrop-0.19.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "983c93bb1645d6bb61e0fd14f32c8e64", "sha256": "f48c52086735723210a6f3a2b8540ecc1013484cc0a2e977f5a9a8f54b558253" }, "downloads": -1, "filename": "dotdrop-0.19.0.tar.gz", "has_sig": false, "md5_digest": "983c93bb1645d6bb61e0fd14f32c8e64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39738, "upload_time": "2018-07-21T12:00:36", "url": "https://files.pythonhosted.org/packages/2d/a6/e0be08dd78e1fcd7b77a4807a1151a13904a1abba26b420b4a4384bd8a46/dotdrop-0.19.0.tar.gz" } ], "0.19.1": [ { "comment_text": "", "digests": { "md5": "a85391cc8e1edaaf933f139c15d13bc9", "sha256": "0979089f001ed2119762139fe0f75f964f4c221f1e26902c7a2f17e77437e7e5" }, "downloads": -1, "filename": "dotdrop-0.19.1-py3-none-any.whl", "has_sig": false, "md5_digest": "a85391cc8e1edaaf933f139c15d13bc9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45815, "upload_time": "2018-07-22T16:32:27", "url": "https://files.pythonhosted.org/packages/97/98/0066694d730f26843f245b1fc66d5e0e7ce1a3428e92723f1ddd2d24b209/dotdrop-0.19.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "470343ff54b72209beeecde69dd73f98", "sha256": "daad2324a5592d581a5cd077ac8da0a5da9789c2815ec3161fb52f2391981f31" }, "downloads": -1, "filename": "dotdrop-0.19.1.tar.gz", "has_sig": false, "md5_digest": "470343ff54b72209beeecde69dd73f98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40076, "upload_time": "2018-07-22T16:32:29", "url": "https://files.pythonhosted.org/packages/a5/6a/d2026ceb0c270806db758ba98fc7158222c4181b729ffe4dc19ed5b3105b/dotdrop-0.19.1.tar.gz" } ], "0.19.2": [ { "comment_text": "", "digests": { "md5": "273eeb9c16d0e790f77688955838a08e", "sha256": "1a9bdff91bdd39dad617b83ab29076f4367c6e926a5e723b1f19eb440ff20b48" }, "downloads": -1, "filename": "dotdrop-0.19.2-py3-none-any.whl", "has_sig": false, "md5_digest": "273eeb9c16d0e790f77688955838a08e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45823, "upload_time": "2018-07-24T18:24:46", "url": "https://files.pythonhosted.org/packages/f0/8d/514a2b0ad122fc5350ad9e6ea760e078fa270997978e158fbc6bbcef016b/dotdrop-0.19.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f9aec7f17fc06bf9de78d117789148a5", "sha256": "3fe016fb46330ac035ba402d0c956cf2b81b46bd74fd84d20f8b471a0b4e6639" }, "downloads": -1, "filename": "dotdrop-0.19.2.tar.gz", "has_sig": false, "md5_digest": "f9aec7f17fc06bf9de78d117789148a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40071, "upload_time": "2018-07-24T18:24:47", "url": "https://files.pythonhosted.org/packages/b8/db/c46451be2932c7688ff053a7816b85c3164cdec24cd5b48b1efbdd8d08d0/dotdrop-0.19.2.tar.gz" } ], "0.20.0": [ { "comment_text": "", "digests": { "md5": "9f7b02b9bd4b9b7c50efede9b83c852b", "sha256": "7d986f51e7f4596b47b55f53289173021cf9b68f79c1d6d757cc9ef397b7fa9e" }, "downloads": -1, "filename": "dotdrop-0.20.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9f7b02b9bd4b9b7c50efede9b83c852b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 39939, "upload_time": "2018-09-02T14:16:41", "url": "https://files.pythonhosted.org/packages/66/e3/6a1db49352a98b02b5618c2926dd9bde94d518f67893882d4db45ba67bbc/dotdrop-0.20.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc5605bd642a334deab4d5957cd358e6", "sha256": "d04bf4191c98ed2870f79e845d910d3fbdd92ae1b3d9fb0167b9c852d53a733d" }, "downloads": -1, "filename": "dotdrop-0.20.0.tar.gz", "has_sig": false, "md5_digest": "cc5605bd642a334deab4d5957cd358e6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 48706, "upload_time": "2018-09-02T14:16:43", "url": "https://files.pythonhosted.org/packages/a8/b5/2ec87b8cb3f1d383e27e4420dc5dd121cd0be8ea04f0a8d967e04461972b/dotdrop-0.20.0.tar.gz" } ], "0.20.1": [ { "comment_text": "", "digests": { "md5": "e883542d65e19d0bb7075447cfe1dbd5", "sha256": "756df59f226aac1a25964169e6bb7f23cf7bc19c56b1f8d2fa1349c7c89dfd20" }, "downloads": -1, "filename": "dotdrop-0.20.1-py3-none-any.whl", "has_sig": false, "md5_digest": "e883542d65e19d0bb7075447cfe1dbd5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 39940, "upload_time": "2018-09-02T14:22:39", "url": "https://files.pythonhosted.org/packages/4c/6f/493bff6b4c5fbff1b3dcd8fce4490e9feb2f5d4327bf3c742806c7b64711/dotdrop-0.20.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d86c68a78c4736e8c1742feb1fa56c65", "sha256": "c88fd1d6104778a15bd6a487f84a406f3ef138e09f9df1bb9e9dd2c808178c93" }, "downloads": -1, "filename": "dotdrop-0.20.1.tar.gz", "has_sig": false, "md5_digest": "d86c68a78c4736e8c1742feb1fa56c65", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 48699, "upload_time": "2018-09-02T14:22:40", "url": "https://files.pythonhosted.org/packages/33/21/34c91ad11b6b667c9653dfba6d9122f86b83db5af1f903e925fdad1ae122/dotdrop-0.20.1.tar.gz" } ], "0.20.3": [ { "comment_text": "", "digests": { "md5": "3575fa80abab1c26654a1f6544c08a8d", "sha256": "87735a6fb581e58d192633224af75ea0fc80fdbdf161f22433d3dfdeab0d9250" }, "downloads": -1, "filename": "dotdrop-0.20.3-py3-none-any.whl", "has_sig": false, "md5_digest": "3575fa80abab1c26654a1f6544c08a8d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 40304, "upload_time": "2018-09-20T06:40:38", "url": "https://files.pythonhosted.org/packages/c0/64/8470e73605d750a478aefb0e5f15953794ae4c69ae64ddb3549d7b9c4488/dotdrop-0.20.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3fcdf3b46e901a9edc2070c1df96b763", "sha256": "74b20107a2ea1e060ca24f10073593905f75d1babade516f8aa05ae5ae4e1e64" }, "downloads": -1, "filename": "dotdrop-0.20.3.tar.gz", "has_sig": false, "md5_digest": "3fcdf3b46e901a9edc2070c1df96b763", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 51631, "upload_time": "2018-09-20T06:40:40", "url": "https://files.pythonhosted.org/packages/5f/1e/a7d0c060cc7a0fccad2b2e63daefcd2390a525112c62aec7a2342ca46d0a/dotdrop-0.20.3.tar.gz" } ], "0.21.0": [ { "comment_text": "", "digests": { "md5": "63fd0d2413d04e92238e26ecf7ebf947", "sha256": "87c9c7796c47e30ea6d1fbb1f0b993c6852e11611519d3596d43b82064f3680a" }, "downloads": -1, "filename": "dotdrop-0.21.0-py3-none-any.whl", "has_sig": false, "md5_digest": "63fd0d2413d04e92238e26ecf7ebf947", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 41024, "upload_time": "2018-09-25T08:10:51", "url": "https://files.pythonhosted.org/packages/9a/49/d52dbccf7c52f4cc776f09b1e0cb1aed228d62e2bf6c9c193bde9c5a1d17/dotdrop-0.21.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "80bf8f349dbcfa4a84dbada1aad5ffcf", "sha256": "f1af4108a0779087edce24156409423ae6bd18e54cce8499777596092db14d18" }, "downloads": -1, "filename": "dotdrop-0.21.0.tar.gz", "has_sig": false, "md5_digest": "80bf8f349dbcfa4a84dbada1aad5ffcf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 52861, "upload_time": "2018-09-25T08:10:53", "url": "https://files.pythonhosted.org/packages/52/db/7c90b7cb897e93bc467752f7160a215b349344983beb0f21a7d98f1635b2/dotdrop-0.21.0.tar.gz" } ], "0.21.1": [ { "comment_text": "", "digests": { "md5": "c8aceb4bc1ef7091ee3ebb5c755f75b4", "sha256": "6624699545c2c22cd3bff9e36e86d2580a4306581876039f8d156fc9d0db2594" }, "downloads": -1, "filename": "dotdrop-0.21.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c8aceb4bc1ef7091ee3ebb5c755f75b4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 41331, "upload_time": "2018-09-27T16:22:56", "url": "https://files.pythonhosted.org/packages/e9/49/b04f3e42be1f1d284a4901f0c12126e7769d6d8dc14d773a750e3ee8bd5b/dotdrop-0.21.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8ee09808f71f2f6e3bb98fd1aebff5d5", "sha256": "15df3862bfa5d5bb3b827784089b3bb7e91e5dbf9a01d512a60df282f9c08c8d" }, "downloads": -1, "filename": "dotdrop-0.21.1.tar.gz", "has_sig": false, "md5_digest": "8ee09808f71f2f6e3bb98fd1aebff5d5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 53136, "upload_time": "2018-09-27T16:22:57", "url": "https://files.pythonhosted.org/packages/22/a2/4e7a80bf37952f4b1da2df58e757ffab03ddea387f0b17516e133c5a0d76/dotdrop-0.21.1.tar.gz" } ], "0.21.2": [ { "comment_text": "", "digests": { "md5": "8b43926772460b5668bdcb1f7ee1be73", "sha256": "442bb15d7cd0ffb30925f52f788d613281dead419b1c7e414427757ee8258045" }, "downloads": -1, "filename": "dotdrop-0.21.2-py3-none-any.whl", "has_sig": false, "md5_digest": "8b43926772460b5668bdcb1f7ee1be73", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 41462, "upload_time": "2018-09-28T12:12:09", "url": "https://files.pythonhosted.org/packages/c7/2b/0781d1a9f79bd78b72f502753f73be81afae0edec95344e14995f4715d6e/dotdrop-0.21.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6c578f15930a39373a63eb7356174131", "sha256": "2cd844f0e898a4e3534b2b84e8a5bf018ddf643be6049cd681bb84c9299506c1" }, "downloads": -1, "filename": "dotdrop-0.21.2.tar.gz", "has_sig": false, "md5_digest": "6c578f15930a39373a63eb7356174131", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 53543, "upload_time": "2018-09-28T12:12:10", "url": "https://files.pythonhosted.org/packages/5e/d2/90e42f6cb1ce50be714fc6cee46b0f5de1fd4dc4108f1d89f3dc26647e90/dotdrop-0.21.2.tar.gz" } ], "0.21.3": [ { "comment_text": "", "digests": { "md5": "5e224fc2b1c1eb2d4de3584af6c764ab", "sha256": "71c14d02ad47d02fd098826e7ab91f5059a714e344da6a5dcb1094ffd88c9cc1" }, "downloads": -1, "filename": "dotdrop-0.21.3-py3-none-any.whl", "has_sig": false, "md5_digest": "5e224fc2b1c1eb2d4de3584af6c764ab", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 41624, "upload_time": "2018-09-29T14:41:28", "url": "https://files.pythonhosted.org/packages/a3/a2/5204574791e4c792ddae993e5a705ce8609fdb181cc1e312919d8b7f04b8/dotdrop-0.21.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "90209972f2d7cd5450387342d34413f9", "sha256": "e1eeadf395e57b2f8a3dace81446df98d6673bd2e693619bdb2689de5bd89754" }, "downloads": -1, "filename": "dotdrop-0.21.3.tar.gz", "has_sig": false, "md5_digest": "90209972f2d7cd5450387342d34413f9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 51992, "upload_time": "2018-09-29T14:41:30", "url": "https://files.pythonhosted.org/packages/1f/d4/49bb83b6bebe9644b9fe8e77358bdaff18ed64b1691348822b81df0f4701/dotdrop-0.21.3.tar.gz" } ], "0.22.0": [ { "comment_text": "", "digests": { "md5": "1dbc3db2ea9c906fd4968cb969f640c9", "sha256": "d9a6eb1e7144ea126d4b215318825aea5042de25c45b430c2017f3f1d8daa41c" }, "downloads": -1, "filename": "dotdrop-0.22.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1dbc3db2ea9c906fd4968cb969f640c9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 41989, "upload_time": "2018-10-08T20:11:37", "url": "https://files.pythonhosted.org/packages/7a/c7/cc68c4dcfc849a9cf611792a5cabb4b6f0cdd5783eb8d7d6d8887154424e/dotdrop-0.22.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7128f6d9e3c073823d348076158d4ad0", "sha256": "1a114b77d199453b61d53b947702101deb1973607b4c6fd038078f0c79477b99" }, "downloads": -1, "filename": "dotdrop-0.22.0.tar.gz", "has_sig": false, "md5_digest": "7128f6d9e3c073823d348076158d4ad0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 51839, "upload_time": "2018-10-08T20:11:41", "url": "https://files.pythonhosted.org/packages/f2/13/1e45eb84530e5a259c9fc276ec58fef4c096b78bbda10dfdf410e921b450/dotdrop-0.22.0.tar.gz" } ], "0.22.1": [ { "comment_text": "", "digests": { "md5": "34a8368861c9b28ba781416f27fa2d30", "sha256": "c0026c741b856dc33114c9a9a9fe68a08a1598faa8438f5e8460dbdf74ab4a9b" }, "downloads": -1, "filename": "dotdrop-0.22.1-py3-none-any.whl", "has_sig": false, "md5_digest": "34a8368861c9b28ba781416f27fa2d30", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 41996, "upload_time": "2018-10-23T06:11:05", "url": "https://files.pythonhosted.org/packages/d6/33/20672f7e66549c911e34588429b58e7151ad8c4aa5d6250a5a7a8ee33c6c/dotdrop-0.22.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc3c40f224dbc0b502c58a279957218a", "sha256": "49b8828ae56ad0b49eac7db77862f14b5444fec21e524a93eafda7d53537bf88" }, "downloads": -1, "filename": "dotdrop-0.22.1.tar.gz", "has_sig": false, "md5_digest": "cc3c40f224dbc0b502c58a279957218a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 53806, "upload_time": "2018-10-23T06:11:07", "url": "https://files.pythonhosted.org/packages/bf/af/200a00ef0c96400f7e1d3f2fe3643a7917fb2e1f9b7517e8d504fbd51a55/dotdrop-0.22.1.tar.gz" } ], "0.23.0": [ { "comment_text": "", "digests": { "md5": "43497926ea41e07bea003e4a18082b8d", "sha256": "b918b8a13d80e965b8e38ae1077c1392b7ebd832cd8b08458def4653e988dfc9" }, "downloads": -1, "filename": "dotdrop-0.23.0-py3-none-any.whl", "has_sig": false, "md5_digest": "43497926ea41e07bea003e4a18082b8d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 43067, "upload_time": "2018-11-16T08:27:47", "url": "https://files.pythonhosted.org/packages/e6/bf/520bc1031459e16938b22a16a0bdf04cde68e20b84ed219149163e01f07c/dotdrop-0.23.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "beb3bcdabcbbd24201ace98d225e2f50", "sha256": "f1c6bc2710f80a695533de71aebf8505141329c42594792804e2fff6eef830a7" }, "downloads": -1, "filename": "dotdrop-0.23.0.tar.gz", "has_sig": false, "md5_digest": "beb3bcdabcbbd24201ace98d225e2f50", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 54484, "upload_time": "2018-11-16T08:27:49", "url": "https://files.pythonhosted.org/packages/e4/56/8665d31ed99de0673e42f061ec44bd9a29f21a6812a0ca0a895659849d1b/dotdrop-0.23.0.tar.gz" } ], "0.24.0": [ { "comment_text": "", "digests": { "md5": "e90b43b4d7c04424409aae0c05a8b251", "sha256": "d0cde2082aa17e2fd7e00232f6649b01ef3fea9c0dd86fc31c2042a919eb151c" }, "downloads": -1, "filename": "dotdrop-0.24.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e90b43b4d7c04424409aae0c05a8b251", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 44743, "upload_time": "2018-12-06T17:22:40", "url": "https://files.pythonhosted.org/packages/63/01/46943f0c4e939460e945915c71bec4fbcac8fb0f0edde6eeaf9de36bb67c/dotdrop-0.24.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f9ba0f584850b1fbbd3314ddf7773a5c", "sha256": "1f44dd80871a02cc6f7991532d440aa6ef5049adf32fa382271ace6e77576fe4" }, "downloads": -1, "filename": "dotdrop-0.24.0.tar.gz", "has_sig": false, "md5_digest": "f9ba0f584850b1fbbd3314ddf7773a5c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 57292, "upload_time": "2018-12-06T17:22:42", "url": "https://files.pythonhosted.org/packages/3d/43/4e4e5ff122189258214d308d647aa23cff37b5b0b6464170fa07a424006e/dotdrop-0.24.0.tar.gz" } ], "0.24.1": [ { "comment_text": "", "digests": { "md5": "7cdd27dcb589c4c3f1141f945d007663", "sha256": "a21bd7d74dd23bfe8c8763e47d317077154b5dd7abbb188a59ce6aa70eac7aef" }, "downloads": -1, "filename": "dotdrop-0.24.1-py3-none-any.whl", "has_sig": false, "md5_digest": "7cdd27dcb589c4c3f1141f945d007663", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 45025, "upload_time": "2018-12-27T15:16:53", "url": "https://files.pythonhosted.org/packages/2a/d4/025bdb4ec128686cc12512133e28b3a19c79de835c63e6e591a25a160fe0/dotdrop-0.24.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "29ced3c0394e9ef12e274998a71294ec", "sha256": "ea316a8d10bdfd7e37e67b18c35d7995cbb057138366640ddb77fb55e273515e" }, "downloads": -1, "filename": "dotdrop-0.24.1.tar.gz", "has_sig": false, "md5_digest": "29ced3c0394e9ef12e274998a71294ec", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 57549, "upload_time": "2018-12-27T15:16:55", "url": "https://files.pythonhosted.org/packages/53/13/39f8cadf1e3fcb7cc5a207f38344eeb251b7338027c1dd8bc1ce7b089b4e/dotdrop-0.24.1.tar.gz" } ], "0.25.0": [ { "comment_text": "", "digests": { "md5": "39557857c51d4de9e2b2a1773e1da99f", "sha256": "7053640c2d41d3dfe63b8ff16c996f8159ac736afc5aeb25d50c36b709a0f120" }, "downloads": -1, "filename": "dotdrop-0.25.0-py3-none-any.whl", "has_sig": false, "md5_digest": "39557857c51d4de9e2b2a1773e1da99f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 50274, "upload_time": "2019-02-12T12:24:51", "url": "https://files.pythonhosted.org/packages/9d/38/a6ca873c0d73f99a8c8391d00f91eadaee21f5f83017fe70c1b4c560d8f4/dotdrop-0.25.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "271b23eee9d0bb127ae6f74039b66896", "sha256": "7fda873e41c74dd744d2e9be4ddbae3223ccfc69cd0c477b029fb5aabdc7667f" }, "downloads": -1, "filename": "dotdrop-0.25.0.tar.gz", "has_sig": false, "md5_digest": "271b23eee9d0bb127ae6f74039b66896", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 66522, "upload_time": "2019-02-12T12:24:53", "url": "https://files.pythonhosted.org/packages/d1/bc/c37ae5030606c67d8927daf9c47faa6a952f69fca8decaa39f4428364560/dotdrop-0.25.0.tar.gz" } ], "0.25.1": [ { "comment_text": "", "digests": { "md5": "a901e67d8ec9333f437f411201dab2b3", "sha256": "1417c926c73a9ecdf28ce775a5c20fd8f57fa9340917b8fc1afb0ff57c68ca4b" }, "downloads": -1, "filename": "dotdrop-0.25.1-py3-none-any.whl", "has_sig": false, "md5_digest": "a901e67d8ec9333f437f411201dab2b3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 50354, "upload_time": "2019-02-12T17:39:54", "url": "https://files.pythonhosted.org/packages/69/86/b8fc8c9ccca2802b2c62a9872b66f67673a88a5fb155847f3bc48f558212/dotdrop-0.25.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "39355a04d24cc8b8f71763caea404f35", "sha256": "daf88bed000a2308d3f977e54d59315b8af5668e16729328cbecbeee276e6850" }, "downloads": -1, "filename": "dotdrop-0.25.1.tar.gz", "has_sig": false, "md5_digest": "39355a04d24cc8b8f71763caea404f35", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 66221, "upload_time": "2019-02-12T17:39:57", "url": "https://files.pythonhosted.org/packages/a2/a9/31c567b9d5e279f33738d48e3a9a2c7702a34e67daf58c2596cb69e34e4d/dotdrop-0.25.1.tar.gz" } ], "0.25.2": [ { "comment_text": "", "digests": { "md5": "707e1d8a54f473f6e5d284e409b7b0cc", "sha256": "0f2ab501cbfcdedce332d392333842ccf232d3f4a71f7400872ab6ed26d5e082" }, "downloads": -1, "filename": "dotdrop-0.25.2-py3-none-any.whl", "has_sig": false, "md5_digest": "707e1d8a54f473f6e5d284e409b7b0cc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 50446, "upload_time": "2019-02-19T06:33:07", "url": "https://files.pythonhosted.org/packages/8a/c8/2bb0fae22bbe091f03609af78d60d81493dcb0bc1b34d215f1d66b42c43c/dotdrop-0.25.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bec5d7aca034b2fa2d9634813f33f710", "sha256": "4f8a2cbf31a268d11558f6ba5ae0d1fafd072c04fbf7893c16d4d54dc0ce8249" }, "downloads": -1, "filename": "dotdrop-0.25.2.tar.gz", "has_sig": false, "md5_digest": "bec5d7aca034b2fa2d9634813f33f710", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 66739, "upload_time": "2019-02-19T06:33:11", "url": "https://files.pythonhosted.org/packages/a2/f4/e3803b75130ad198c73a83c5fa9452a8b53ea2aa723af57f1c50ee071498/dotdrop-0.25.2.tar.gz" } ], "0.26.0": [ { "comment_text": "", "digests": { "md5": "96f0883276e17503fa483c6d3c80293e", "sha256": "cf87d55abc6ac3bf69e840b2152219f05ba173a34ddd94c57523c3f936226bd6" }, "downloads": -1, "filename": "dotdrop-0.26.0-py3-none-any.whl", "has_sig": false, "md5_digest": "96f0883276e17503fa483c6d3c80293e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 44025, "upload_time": "2019-03-10T18:54:23", "url": "https://files.pythonhosted.org/packages/de/41/15b493dc60f21efbf2530df45a67c86dd7d11bba5cd0473014a06d6069c0/dotdrop-0.26.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "17a3c235afe30ec5027d96dccf373a9a", "sha256": "3086cdd665e7a7ba05efe2adbc398b2cafa2e04c290af98ad0c43e7aa4da61f1" }, "downloads": -1, "filename": "dotdrop-0.26.0.tar.gz", "has_sig": false, "md5_digest": "17a3c235afe30ec5027d96dccf373a9a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 43318, "upload_time": "2019-03-10T18:54:26", "url": "https://files.pythonhosted.org/packages/22/f1/4b8011cca54ddd3d88889b6d447faf5be6933e1c259e2f550fdeacca3fbc/dotdrop-0.26.0.tar.gz" } ], "0.26.1": [ { "comment_text": "", "digests": { "md5": "56625b7db0614c0b5835064517277570", "sha256": "389e71d5f815ad1ce5ae2e64b5f7b9fff913304c603c7ea164b18d7fdf5e4771" }, "downloads": -1, "filename": "dotdrop-0.26.1-py3-none-any.whl", "has_sig": false, "md5_digest": "56625b7db0614c0b5835064517277570", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 44626, "upload_time": "2019-03-20T20:36:17", "url": "https://files.pythonhosted.org/packages/e1/44/492f1ee32b0df3866110f4636913fee95c33afeda4738e635977554807e4/dotdrop-0.26.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "505769f470536e2579d3b5a4756a3341", "sha256": "72632bbd938fad370d2d359b0c5758c261ff490c253085c8b62a516d94273bb2" }, "downloads": -1, "filename": "dotdrop-0.26.1.tar.gz", "has_sig": false, "md5_digest": "505769f470536e2579d3b5a4756a3341", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 44573, "upload_time": "2019-03-20T20:36:20", "url": "https://files.pythonhosted.org/packages/10/c5/987c18d09e3fcffe7bd99e4c4394c82e81e18eabdca5a9d065777752ced1/dotdrop-0.26.1.tar.gz" } ], "0.27.0": [ { "comment_text": "", "digests": { "md5": "1eeb0473ba406bcd23be950ed0424887", "sha256": "4144b0a53c82bb7daff240de8abbd54c4653307a009890cdca9f7895eb3ec0c2" }, "downloads": -1, "filename": "dotdrop-0.27.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1eeb0473ba406bcd23be950ed0424887", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 46104, "upload_time": "2019-04-11T15:23:37", "url": "https://files.pythonhosted.org/packages/ea/c8/34c6147bba451bce92e878247dc5c3332a1f8ef51c11ac07e5fa978959a0/dotdrop-0.27.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8a350334bb917e69ced43db0d37ed3d9", "sha256": "d483fc08c7be87ffeffb530daa4e9d57fa766fecc4d33b192396c9dff6bbedf8" }, "downloads": -1, "filename": "dotdrop-0.27.0.tar.gz", "has_sig": false, "md5_digest": "8a350334bb917e69ced43db0d37ed3d9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 47617, "upload_time": "2019-04-11T15:23:39", "url": "https://files.pythonhosted.org/packages/7d/b8/0af4b56536b2f8cd537f0e1768c5420c2e4863708d2d6bc7751b17355a3e/dotdrop-0.27.0.tar.gz" } ], "0.28.0": [ { "comment_text": "", "digests": { "md5": "7f865e215467aad2e635a00e30c6fc0b", "sha256": "370db9bf518293865bd9fb9f6ee9134a7f3865e1eb3233c93dde614d489b1a5b" }, "downloads": -1, "filename": "dotdrop-0.28.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7f865e215467aad2e635a00e30c6fc0b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 49140, "upload_time": "2019-05-31T15:44:16", "url": "https://files.pythonhosted.org/packages/6d/8c/99173a6145675d2eaa7f9cec623f21d745419f49afdd8fdac9614afe1aa5/dotdrop-0.28.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a4a1c13888b542a3314db2a7a6c246e7", "sha256": "e722350b1baaa4b71fbeccd9d4529ef96449b50d308583cc8936acb97c51c3ad" }, "downloads": -1, "filename": "dotdrop-0.28.0.tar.gz", "has_sig": false, "md5_digest": "a4a1c13888b542a3314db2a7a6c246e7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 48705, "upload_time": "2019-05-31T15:44:19", "url": "https://files.pythonhosted.org/packages/45/77/2e6b60edb39a5db3e01de2c33bcb2897850bc4f211fcbd99c4b3346ba462/dotdrop-0.28.0.tar.gz" } ], "0.29.1": [ { "comment_text": "", "digests": { "md5": "f24e057ba146bd80d9b9563cdf25dc18", "sha256": "0cc60c055d47c4c13861b1fe8aa2ff5134af9e298e70e8456d0ec6065e0cf9c6" }, "downloads": -1, "filename": "dotdrop-0.29.1-py3-none-any.whl", "has_sig": false, "md5_digest": "f24e057ba146bd80d9b9563cdf25dc18", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 52793, "upload_time": "2019-06-15T17:07:55", "url": "https://files.pythonhosted.org/packages/61/bf/41ef95e9489111fd9d259023da9dc45d3d9e63a389c4b38df4cf8f9c979e/dotdrop-0.29.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fa91908ef3d428032d33a241eec101c3", "sha256": "61009b541105e251cc2ff8a9eb2dc3f98d493c5a8442cefdd9baa8e248d0cba9" }, "downloads": -1, "filename": "dotdrop-0.29.1.tar.gz", "has_sig": false, "md5_digest": "fa91908ef3d428032d33a241eec101c3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 50391, "upload_time": "2019-06-15T17:07:57", "url": "https://files.pythonhosted.org/packages/b4/be/e8f165f3d19e7af856bfa94a7732f1dfe3d984c941749670769e60b9bfb0/dotdrop-0.29.1.tar.gz" } ], "0.29.2": [ { "comment_text": "", "digests": { "md5": "fa320258b022c377644f1c03e0470394", "sha256": "94a2899d005b3c36aa3e2a3ef94a3de1a1bb6a2eb7d860eb2a17298bd380be74" }, "downloads": -1, "filename": "dotdrop-0.29.2-py3-none-any.whl", "has_sig": false, "md5_digest": "fa320258b022c377644f1c03e0470394", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 53399, "upload_time": "2019-06-19T17:08:37", "url": "https://files.pythonhosted.org/packages/94/e4/6277a7638a559106fb0358bd4b568b67cf897c28cc08cffdc71350827354/dotdrop-0.29.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0145e58ea58d9695d18df4cee556cbae", "sha256": "34f6d443ecd84d5485584c52fd409e8f54ede43c73d94b749634e9b4d8ab02f8" }, "downloads": -1, "filename": "dotdrop-0.29.2.tar.gz", "has_sig": false, "md5_digest": "0145e58ea58d9695d18df4cee556cbae", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 51165, "upload_time": "2019-06-19T17:08:39", "url": "https://files.pythonhosted.org/packages/33/c3/7bfbfb749f58ef8cd6bd6752452c7dd9dfa7f10967985ef71568863ee197/dotdrop-0.29.2.tar.gz" } ], "0.29.3": [ { "comment_text": "", "digests": { "md5": "346c5412f3b0805ea3dbf43cad68e115", "sha256": "4e7669d767acb98985184a550812cee73e1e30303c756c0bc4860c15db334460" }, "downloads": -1, "filename": "dotdrop-0.29.3-py3-none-any.whl", "has_sig": false, "md5_digest": "346c5412f3b0805ea3dbf43cad68e115", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 53552, "upload_time": "2019-06-20T15:19:54", "url": "https://files.pythonhosted.org/packages/ab/49/9ef059dce346090f1dbb4ab9ae92c6957a998c452f8979450fce8f215534/dotdrop-0.29.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "65ad6b9383b39eb7b4e6e2de02958c09", "sha256": "00a427640253f7b67ef83193d8577b77f474a47193ed1e36cab46c16659b9123" }, "downloads": -1, "filename": "dotdrop-0.29.3.tar.gz", "has_sig": false, "md5_digest": "65ad6b9383b39eb7b4e6e2de02958c09", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 51361, "upload_time": "2019-06-20T15:19:58", "url": "https://files.pythonhosted.org/packages/f3/1a/ca396f0491bf51de510b7ffee7bf0093a806c8e5bfda8d07fe1c227d452b/dotdrop-0.29.3.tar.gz" } ], "0.29.4": [ { "comment_text": "", "digests": { "md5": "7c83175dd4438ca4eb0903185e32d31a", "sha256": "644c34a9df5b4dd385b29bec7472002f5c775195bf6408270f65b02d3990b5a3" }, "downloads": -1, "filename": "dotdrop-0.29.4-py3-none-any.whl", "has_sig": false, "md5_digest": "7c83175dd4438ca4eb0903185e32d31a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 54626, "upload_time": "2019-07-14T15:58:49", "url": "https://files.pythonhosted.org/packages/51/f9/5a39308bfaaba716be0c471f31244c154817ab34e031f1bfc3664e9a0e2e/dotdrop-0.29.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0ab8484f14241e0910b323e00181a82b", "sha256": "25c0cc64733da074409247e1a5727a9f760d89e0edc5d872f1540b197a04d759" }, "downloads": -1, "filename": "dotdrop-0.29.4.tar.gz", "has_sig": false, "md5_digest": "0ab8484f14241e0910b323e00181a82b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 52326, "upload_time": "2019-07-14T15:58:52", "url": "https://files.pythonhosted.org/packages/f9/42/4724efa0d1e68e8e678e7badfccf0d89b3511e001205d189594941fc47a4/dotdrop-0.29.4.tar.gz" } ], "0.29.5": [ { "comment_text": "", "digests": { "md5": "4e466bdda982f8fc5873abafcee21192", "sha256": "da2b932f8d3d91aea762a5872015bd73822df582b3f17524c0f9fc92741d463a" }, "downloads": -1, "filename": "dotdrop-0.29.5-py3-none-any.whl", "has_sig": false, "md5_digest": "4e466bdda982f8fc5873abafcee21192", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 54794, "upload_time": "2019-08-18T05:33:47", "url": "https://files.pythonhosted.org/packages/3e/04/3368404f8d91f0bdb1d4ce6327fe3cf7ea2e8bdadd1481d668b2754f0525/dotdrop-0.29.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bf9e9592469bd731c44b923b7640d10d", "sha256": "17697eccb5493a7ace28fdbc1406414a90db66ff0ef233ef55ce2fb3685cca2b" }, "downloads": -1, "filename": "dotdrop-0.29.5.tar.gz", "has_sig": false, "md5_digest": "bf9e9592469bd731c44b923b7640d10d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 52850, "upload_time": "2019-08-18T05:33:49", "url": "https://files.pythonhosted.org/packages/01/f0/e63e40c10bc92aaef4ff812b34f83dd40fb07dac13d13cb0377eb60bd407/dotdrop-0.29.5.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "2741f2cd1da4a53b4c8b521165de8f11", "sha256": "9c0f4c2bb875b45ed5357e3febd205ebf1d251d0111aa773fa838a62002bdaa5" }, "downloads": -1, "filename": "dotdrop-0.7.2-py3-none-any.whl", "has_sig": false, "md5_digest": "2741f2cd1da4a53b4c8b521165de8f11", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 37432, "upload_time": "2017-12-23T21:22:39", "url": "https://files.pythonhosted.org/packages/9b/8e/e68387684aa366f4bbdecaed53a07565dda6e21bc5e76ecd23dba654ae11/dotdrop-0.7.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "852870df6ea6ea6d469a71cb66d91551", "sha256": "54b80ef11fc1dd7a3db6bbea8b7c4186f5a5d2677ee715ef9fadd2a5c7d38270" }, "downloads": -1, "filename": "dotdrop-0.7.2.tar.gz", "has_sig": false, "md5_digest": "852870df6ea6ea6d469a71cb66d91551", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35601, "upload_time": "2017-12-23T21:22:41", "url": "https://files.pythonhosted.org/packages/d6/1e/ef6d53c960e1f852b2ca5097bc201752e9b7ec0aaf9c2d83e862310ae399/dotdrop-0.7.2.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "59003caa7fa132fb4e1055f3554d148f", "sha256": "a70c4b080d5f86db85b5b52f4c8ad4c0b7a7b336b9844285273b24f0469c65d1" }, "downloads": -1, "filename": "dotdrop-0.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "59003caa7fa132fb4e1055f3554d148f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 37623, "upload_time": "2017-12-29T10:12:09", "url": "https://files.pythonhosted.org/packages/ff/ee/e4d37c0f56ed0be563144356f1588105f36f9d3c79dc238899f8bf26515c/dotdrop-0.8.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cb8e18064d6c5c150cc1f38d3db59181", "sha256": "419b792883b9ba423878bf0bcbc543a4089adffc56a69af0297a1bad7662be76" }, "downloads": -1, "filename": "dotdrop-0.8.1.tar.gz", "has_sig": false, "md5_digest": "cb8e18064d6c5c150cc1f38d3db59181", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36532, "upload_time": "2017-12-29T10:12:11", "url": "https://files.pythonhosted.org/packages/2c/70/40c13ac6b12cf40c29491fcc19267cf569ce4f072a3688ea3b045800e174/dotdrop-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "d3f44a9125b3d6178ed2cd2e1cd999fe", "sha256": "3788ee73d8159e97340caec9a9cf4c27d2b0d3fa7a3103f635b7e4852e9f8d52" }, "downloads": -1, "filename": "dotdrop-0.8.2-py3-none-any.whl", "has_sig": false, "md5_digest": "d3f44a9125b3d6178ed2cd2e1cd999fe", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 37639, "upload_time": "2018-01-05T08:00:53", "url": "https://files.pythonhosted.org/packages/89/8b/361fecc3f3104c2f6a79c444c67ccd7990f02024b1a05e7034eb8e31f438/dotdrop-0.8.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fb2884437c22ce396507dd54a395ae1b", "sha256": "e8cf4a9222bb156815d18022b8dba6013c0ab79af01f48616388524d74ed1ec7" }, "downloads": -1, "filename": "dotdrop-0.8.2.tar.gz", "has_sig": false, "md5_digest": "fb2884437c22ce396507dd54a395ae1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33570, "upload_time": "2018-01-05T08:00:55", "url": "https://files.pythonhosted.org/packages/a6/36/0137075ed548571a2cea26f85af4d98f34243669a4a026926cf54f12469a/dotdrop-0.8.2.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "6c55072fa8644a4c8364ffc22ec298a8", "sha256": "c374aa9f3de0b1277d26ac21bda8a1ac9e752b1007624853002d1e4801cd5883" }, "downloads": -1, "filename": "dotdrop-0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "6c55072fa8644a4c8364ffc22ec298a8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 38379, "upload_time": "2018-01-16T07:22:04", "url": "https://files.pythonhosted.org/packages/38/3f/6ceb3a4a5c8df388779f8c9e4522438e980a09a59a3b8a59b638d0ab1208/dotdrop-0.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0f4adccf69da47d3486a7e52c86b63e1", "sha256": "c7654cb01f2d3a602560c9307c72f65887645abdfc891a46bd25720808c77a07" }, "downloads": -1, "filename": "dotdrop-0.9.tar.gz", "has_sig": false, "md5_digest": "0f4adccf69da47d3486a7e52c86b63e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34295, "upload_time": "2018-01-16T07:22:05", "url": "https://files.pythonhosted.org/packages/d6/ae/923a366b9c37a106f1948c65d7cea471d209ed506b1a92848e5e3c9f6a3e/dotdrop-0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4e466bdda982f8fc5873abafcee21192", "sha256": "da2b932f8d3d91aea762a5872015bd73822df582b3f17524c0f9fc92741d463a" }, "downloads": -1, "filename": "dotdrop-0.29.5-py3-none-any.whl", "has_sig": false, "md5_digest": "4e466bdda982f8fc5873abafcee21192", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 54794, "upload_time": "2019-08-18T05:33:47", "url": "https://files.pythonhosted.org/packages/3e/04/3368404f8d91f0bdb1d4ce6327fe3cf7ea2e8bdadd1481d668b2754f0525/dotdrop-0.29.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bf9e9592469bd731c44b923b7640d10d", "sha256": "17697eccb5493a7ace28fdbc1406414a90db66ff0ef233ef55ce2fb3685cca2b" }, "downloads": -1, "filename": "dotdrop-0.29.5.tar.gz", "has_sig": false, "md5_digest": "bf9e9592469bd731c44b923b7640d10d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 52850, "upload_time": "2019-08-18T05:33:49", "url": "https://files.pythonhosted.org/packages/01/f0/e63e40c10bc92aaef4ff812b34f83dd40fb07dac13d13cb0377eb60bd407/dotdrop-0.29.5.tar.gz" } ] }