{ "info": { "author": "C. W.", "author_email": "wangc_2011@hotmail.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Software Development :: Libraries" ], "description": "================================================================================\nmoban - \u6a21\u677f Any template, any data in any location\n================================================================================\n\n.. image:: https://api.travis-ci.org/moremoban/moban.svg?branch=master\n :target: http://travis-ci.org/moremoban/moban\n\n.. image:: https://dev.azure.com/moremoban/moban/_apis/build/status/moremoban.moban\n :target: https://dev.azure.com/moremoban/moban/_build?definitionId=1&_a=summary\n\n.. image:: https://codecov.io/gh/moremoban/moban/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/moremoban/moban\n\n.. image:: https://readthedocs.org/projects/moban/badge/?version=latest\n :target: http://moban.readthedocs.org/en/latest/\n\n.. image:: https://img.shields.io/gitter/room/gitterHQ/gitter.svg\n :target: https://gitter.im/chfw_moban/Lobby\n\n:Author: C.W. and its contributors (See contributors.rst)\n:Issues: http://github.com/moremoban/moban/issues\n:License: MIT\n\n\n**moban** started with bringing the high performance template engine (JINJA2) for web\ninto static text generation. It has been used in `pyexcel` and `coala` project to keep\ndocumentation consistent across the documentations of individual libraries in the same\norganisation.\n\n**moban** can use other python template engine: mako, handlebars, velocity,\nhaml, slim and tornado, can read other data format: json and yaml, and can access both\ntemplate file and configuration file in\nany location: zip, git, pypi package, s3, etc.\n\nPlease look at our issues. We have many more template engines and data format on the\nroad map.\n\nAll use cases are documented `here `_\n\nInstallation\n================================================================================\nYou can install it via pip:\n\n.. code-block:: bash\n\n $ pip install moban\n\n\nor clone it and install it:\n\n.. code-block:: bash\n\n $ git clone http://github.com/moremoban/moban.git\n $ cd moban\n $ python setup.py install\n\n\nQuick start\n================================================================================\n\n.. code-block:: bash\n\n $ export HELLO=\"world\"\n $ moban \"{{HELLO}}\"\n Warning: Both data.yml and /.../.moban.cd/data.yml does not exist\n Warning: Attempting to use environment vars as data...\n Templating {{HELLO}}... to moban.output\n Templated 1 file.\n $ cat moban.output \n world\n\nOr\n\n.. code-block:: bash\n\n $ export HELLO=\"world\"\n $ echo \"{{HELLO}}\" | moban\n\nOr simply\n\n.. code-block:: bash\n\n $ HELLO=\"world\" moban \"{{HELLO}}\"\n\n \nA bit formal example:\n\n.. code-block:: bash\n\n\t$ moban -c data.yml -t my.template\n\t$ cat moban.output\n\nGiven data.yml as::\n\n hello: world\n\nand my.template as::\n\n {{hello}}\n\nmoban.output will contain::\n\n world\n\nPlease note that data.yml will take precedence over environment variables.\n\n\nWork with files in a git repo\n================================================================================\n\n`gitfs2 `_ is installed by default since v0.6.1\n\n\nYou can do the following with moban:\n\n.. code-block:: bash\n\n $ moban -t 'git://github.com/moremoban/pypi-mobans.git!/templates/_version.py.jj2' \\\n -c 'git://github.com/moremoban/pypi-mobans.git!/config/data.yml' \\\n -o _version.py\n Info: Found repo in /Users/jaska/Library/Caches/gitfs2/repos/pypi-mobans\n Templating git://github.com/moremoban/pypi-mobans.git!/templates/_version.py.jj2 to _version.py\n Templated 1 file.\n $ cat _version.py\n __version__ = \"0.1.1rc3\"\n __author__ = \"C.W.\"\n\n\nWork with files in a python package\n================================================================================\n\n`pypifs `_ is installed by default since v0.6.1\n\nYou can do the following with moban:\n\n.. code-block:: bash\n\n $ moban -t 'pypi://pypi-mobans-pkg/resources/templates/_version.py.jj2' \\\n -c 'pypi://pypi-mobans-pkg/resources/config/data.yml' \\\n -o _version.py\n Collecting pypi-mobans-pkg\n ....\n Installing collected packages: pypi-mobans-pkg\n Successfully installed pypi-mobans-pkg-0.0.7\n Templating pypi://pypi-mobans-pkg/resources/templates/_version.py.jj2 to _version.py\n Templated 1 file.\n $ cat _version.py\n __version__ = \"0.1.1rc3\"\n __author__ = \"C.W.\"\n\nWork with S3 and other cloud based file systems\n================================================================================\n\nPlease install `fs-s3fs `_::\n\n $ pip install fs-s3fs\n\n\nThen you can access your files in s3 bucket:\n\n.. code-block:: bash\n\n $ moban -c s3://${client_id}:${client_secrect}@moremoban/s3data.yml \\\n -o 'zip://my.zip!/moban.output' {{hello}}\n $ unzip my.zip\n $ cat moban.output\n world\n\nWhere the configuration sits in a s3 bucket, the output is a file in a zip. The content of s3data.yaml is::\n\n hello: world\n\t\n\n\nCLI documentation\n================================================================================\n\n.. code-block:: bash\n\n usage: moban [-h] [-c CONFIGURATION] [-t TEMPLATE] [-o OUTPUT]\n [-td [TEMPLATE_DIR [TEMPLATE_DIR ...]]] [-cd CONFIGURATION_DIR]\n [-m MOBANFILE] [-g GROUP] [--template-type TEMPLATE_TYPE]\n [-d DEFINE [DEFINE ...]] [-e EXTENSION [EXTENSION ...]] [-f]\n [--exit-code] [-V] [-v]\n [template]\n \n Static text generator using any template, any data and any location.\n \n positional arguments:\n template string templates\n \n optional arguments:\n -h, --help show this help message and exit\n -c CONFIGURATION, --configuration CONFIGURATION\n the data file\n -t TEMPLATE, --template TEMPLATE\n the template file\n -o OUTPUT, --output OUTPUT\n the output file\n \n Advanced options:\n For better control\n \n -td [TEMPLATE_DIR [TEMPLATE_DIR ...]], --template_dir [TEMPLATE_DIR [TEMPLATE_DIR ...]]\n add more directories for template file lookup\n -cd CONFIGURATION_DIR, --configuration_dir CONFIGURATION_DIR\n the directory for configuration file lookup\n -m MOBANFILE, --mobanfile MOBANFILE\n custom moban file\n -g GROUP, --group GROUP\n a subset of targets\n --template-type TEMPLATE_TYPE\n the template type, default is jinja2\n -d DEFINE [DEFINE ...], --define DEFINE [DEFINE ...]\n to supply additional or override predefined variables,\n format: VAR=VALUEs\n -e EXTENSION [EXTENSION ...], --extension EXTENSION [EXTENSION ...]\n to to TEMPLATE_TYPE=EXTENSION_NAME\n -f force moban to template all files despite of\n .moban.hashes\n \n Developer options:\n For debugging and development\n \n --exit-code tell moban to change exit code\n -V, --version show program's version number and exit\n -v show verbose, try -v, -vv\n\nExit codes\n--------------------------------------------------------------------------------\nBy default:\n\n- 0 : no error\n- 1 : error occured\n\nWith `--exit-code`:\n\n- 0 : no changes\n- 1 : has changes\n- 2 : error occured\n\nContributors\n================================================================================\n\nIn alphabetical order:\n\n* `Ayan Banerjee `_\n* `Charlie Liu `_\n* `John Vandenberg `_\n* `Joshua Chung `_\n* `PRAJWAL M `_\n* `SerekKiri `_\n\nChange log\n================================================================================\n\n0.6.5 - 13.10.2019\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#335 `_: support intermediate\n targets in moban file\n\n0.6.4 - 4.10.2019\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. Command options have been grouped. --template_type became --template-type\n#. Increment gitfs2 to version 0.0.2. `gitfs#4\n `_\n\n0.6.3 - 25.09.2019\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#260 `_: jinja-cli parity:\n support command line pipe stream.\n\n0.6.2 - 15.09.2019\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#322 `_: Implicit targets\n with template extensions default to copy\n#. `#257 `_: '-e' to load\n extensions for template engines, i.e. jinja2\n#. `#333 `_: command line\n template fails with version 0.6.1\n\n0.6.1 - 10.09.2019\n--------------------------------------------------------------------------------\n\n**Fixed**\n\n#. `#328 `_: update backward\n compatibility\n\n0.6.0 - 10.09.2019\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#205 `_: support\n `pyFilesystem2 `_\n#. `#185 `_: -v will enable moban\n application logging for development. And -V is for version.\n#. `#325 `_: -vv show debug trace\n#. `#126 `_: Allow mobanfile to\n include data from arbitrary config files\n#. `#256 `_: jinja2-cli parity:\n '-d hello=world' to define custom variable on cli\n\n**Updated**\n\n#. `#275 `_: fix moban 0.4.5 test\n failures on openSUSE Tumbleweed\n\n0.5.0 - 14.07.2019\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#277 `_: Restored dependency\n git-url-parse, replacing incompatible giturlparse which was used during moban\n 0.4.x\n#. `#281 `_: Fixed unicode\n support on Python 2.7\n#. `#274 `_: Updated ruamel.yaml\n dependency pins to restore support for Python 3.4, and prevent installation\n of versions that can not be installed on Python 3.7\n#. `#285 `_: Fixed CI testing of\n minimum requirements\n#. `#271 `_: Fixed repository\n caching bug preventing branch switching\n#. `#292 `_: Reformatted YAML\n files according to yamllint rules\n#. `#291 `_: Fixed filename typos\n in README\n#. `#280 `_: Added CI to ensure\n repository is in sync with upstream\n#. `#280 `_: sync setup.py from\n pypi-mobans\n\n0.4.5 - 07.07.2019\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#271 `_: support git branch\n change in later run.\n\n0.4.4 - 26.05.2019\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#265 `_: Use simple `read\n binary` to read instead of encoding\n\n0.4.3 - 16.03.2019\n--------------------------------------------------------------------------------\n\n**Removed**\n\n#. `#253 `_: symbolic link in\n regression pack causes python setup.py to do recursive include\n\n**Added**\n\n#. `#209 `_: Alert moban user\n when `git` is not available and is used.\n\n**Updated**\n\n#. `#261 `_: since moban group\n template files per template type, this fill use first come first register to\n order moban group\n\n0.4.2 - 08.03.2019\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#234 `_: Define template\n parameters on the fly inside `targets` section\n#. `#62 `_: select a group target\n to run\n\n**Updated**\n\n#. `#180 `_: No longer two\n statistics will be shown in v0.4.x. legacy copy targets are injected into a\n normal targets. cli target is made a clear priority.\n#. `#244 `_: version 0.4.2 is\n first version which would work perfectly on windows since 17 Nov 2018. Note\n that: file permissions are not used on windows. Why the date? because\n samefile is not avaiable on windows, causing unit tests to fail hence it lead\n to my conclusion that moban version between 17 Nov 2018 and March 2019 wont\n work well on Windows.\n\n0.4.1 - 28.02.2019\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#235 `_: user defined\n template types so that custom file extensions, template configurations can be\n controlled by moban user\n#. `#232 `_: the package\n dependencies have been fine tuning to lower versions, most of them are dated\n back to 2017.\n\n0.4.0 - 20.02.2019\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#165 `_: Copy as plugins\n\n**Updated**\n\n#. `#219 `_: git clone depth set\n to 2\n#. `#186 `_: lowest dependecy on\n ruamel.yaml is 0.15.5, Jun 2017\n\n0.3.10 - 03.02.2019\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#174 `_: Store git cache in\n XDG_CACHE_DIR\n#. `#107 `_: Add -v to show\n current moban version\n#. `#164 `_: support additional\n data formats\n\n**Updated**\n\n#. `#178 `_: UnboundLocalError:\n local variable 'target' referenced before assignment\n#. `#169 `_: uses GitPython\n instead of barebone git commands\n\n0.3.9 - 18-1-2019\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#90 `_: allow adding extra\n jinja2 extensions. `jinja2.ext.do`, `jinja2.ext.loopcontrols` are included by\n default. what's more, any other template enigne are eligible for extension\n additions.\n#. `#158 `_: Empty file\n base_engine.py is finally removed\n\n0.3.8 - 12-1-2019\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#141 `_: disable file\n permissions copy feature and not to check file permission changes on windows.\n#. `#154 `_: introduce first ever\n positional argument for string base template.\n#. `#157 `_: the exit code\n behavior changed. for backward compactibility please use --exit-code.\n Otherwise, moban will not tell if there is any changes.\n\n0.3.7 - 6-1-2019\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#146 `_: added a low-setup\n usage mode via environment variables to moban\n#. `#148 `_: include test related\n files in the package for package validation when distributing via linux\n system, i.e. OpenSuse\n\n0.3.6 - 30-12-2018\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#143 `_: moban shall report\n permission error and continue the rest of the copying task.\n#. `#122 `_: Since 0.3.6, moban\n is tested on windows and macos too, using azure build pipelines. It is\n already tested extensively on travis-ci on linux os.\n\n0.3.5 - 10-12-2018\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#37 `_: moban will report line\n number where the value is empty and the name of mobanfile. Switch from pyyaml\n to ruamel.yaml.\n\n0.3.4.1 - 28-11-2018\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#137 `_: missing\n contributors.rst file\n\n0.3.4 - 18-11-2018\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. global variables to store the target and template file names in the jinja2\n engine\n#. moban-handlebars is tested to work well with this version and above\n\n**Updated**\n\n#. Template engine interface has been clarified and documented\n\n0.3.3 - 05-11-2018\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. alternative and expanded syntax for requires, so as to accomendate github\n submodule recursive\n\n0.3.2 - 04-11-2018\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. configuration dirs may be located by `requires`, i.e. configuration files may\n be in a python package or git repository.\n\n0.3.1 - 02-11-2018\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#97 `_: requires will clone a\n repo if given. Note: only github, gitlab, bitbucket for now\n\n0.3.0 - 27-18-2018\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#89 `_: Install pypi-hosted\n mobans through requires syntax\n\n**Updated**\n\n#. `#96 `_: Fix for\n FileNotFoundError for plugins\n#. various documentation updates\n\n**Removed**\n\n#. `#88 `_: removed python 2.6\n support\n#. removed python 3.3 support\n\n0.2.4 - 14-07-2018\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#32 `_: option 1 copy a\n directory without its subdirectories.\n#. `#30 `_: command line template\n option is ignore when a moban file is present\n\n0.2.3 - 10-07-2018\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#76 `_: running moban as a\n module from python command\n#. `#32 `_: copy a directory\n recusively\n#. `#33 `_: template all files in\n a directory\n\n0.2.2 - 16-06-2018\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#31 `_: create directory if\n missing during copying\n\n**Updated**\n\n#. `#28 `_: if a template has been\n copied once before, it is skipped in the next moban call\n\n0.2.1 - 13-06-2018\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. templates using the same template engine will be templated as a group\n#. update lml dependency to 0.0.3\n\n0.2.0 - 11-06-2018\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#18 `_: file exists test\n#. `#23 `_: custom jinja plugins\n#. `#26 `_: repr filter\n#. `#47 `_: allow the expansion of\n template engine\n#. `#58 `_: allow template type\n per template\n\n**Updated**\n\n#. `#34 `_: fix plural message if\n single file is processed\n\n0.1.4 - 29-May-2018\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. `#21 `_: targets become\n optional\n#. `#19 `_: transfer symlink's\n target file's file permission under unix/linux systems\n#. `#16 `_: introduce copy key\n word in mobanfile\n\n0.1.3 - 12-Mar-2018\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. handle unicode on python 2\n\n0.1.2 - 10-Jan-2018\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#13 `_: strip off new lines in\n the templated file\n\n0.1.1 - 08-Jan-2018\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. the ability to present a long text as multi-line paragraph with a custom\n upper limit\n#. speical filter expand github references: pull request and issues\n#. `#15 `_: fix templating syntax\n to enable python 2.6\n\n0.1.0 - 19-Dec-2017\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#14 `_, provide shell exit\n code\n\n0.0.9 - 24-Nov-2017\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#11 `_, recognize .moban.yaml\n as well as .moban.yml.\n#. `#9 `_, preserve file\n permissions of the source template.\n#. `-m` option is added to allow you to specify a custom moban file. kinda\n related to issue 11.\n\n**Updated**\n\n#. use explicit version name: `moban_file_spec_version` so that `version` can be\n used by users. `#10 `_ Please\n note: moban_file_spec_version is reserved for future file spec upgrade. For\n now, all files are assumed to be '1.0'. When there comes a new version i.e.\n 2.0, new moban file based on 2.0 will have to include\n 'moban_file_spec_version: 2.0'\n\n0.0.8 - 18-Nov-2017\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. `#8 `_, verify the existence of\n custom template and configuration directories. default .moban.td, .moban.cd\n are ignored if they do not exist.\n\n**Updated**\n\n#. Colorize error messages and processing messages. crayons become a dependency.\n\n0.0.7 - 19-Jul-2017\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. Bring the visibility of environment variable into jinja2 templating process:\n `#7 `_\n\n0.0.6 - 16-Jun-2017\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. added '-f' flag to force moban to template all files despite of .moban.hashes\n\n**Updated**\n\n#. moban will not template target file in the situation where the changes\n occured in target file than in the source: the template file + the data\n configuration after moban has been applied. This new release will remove the\n change during mobanization process.\n\n0.0.5 - 17-Mar-2017\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. Create a default hash store when processing a moban file. It will save\n unnecessary file write to the disc if the rendered content is not changed.\n#. Added summary reports\n\n0.0.4 - 11-May-2016\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. Bug fix `#5 `_, should detect\n duplicated targets in `.moban.yml` file.\n\n0.0.3 - 09-May-2016\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. Bug fix `#4 `_, keep trailing\n new lines\n\n0.0.2 - 27-Apr-2016\n--------------------------------------------------------------------------------\n\n**Updated**\n\n#. Bug fix `#1 `_, failed to save\n utf-8 characters\n\n0.0.1 - 23-Mar-2016\n--------------------------------------------------------------------------------\n\n**Added**\n\n#. Initial release\n\n", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/moremoban/moban/archive/0.6.5.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/moremoban/moban", "keywords": "python", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "moban", "package_url": "https://pypi.org/project/moban/", "platform": "", "project_url": "https://pypi.org/project/moban/", "project_urls": { "Download": "https://github.com/moremoban/moban/archive/0.6.5.tar.gz", "Homepage": "https://github.com/moremoban/moban" }, "release_url": "https://pypi.org/project/moban/0.6.5/", "requires_dist": null, "requires_python": "", "summary": "Yet another jinja2 cli command for static text generation", "version": "0.6.5" }, "last_serial": 5965510, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "8efb189df47a8262b899f9f1ee221d13", "sha256": "e2aa85aef6ae1c31cbf586e7c5ea081c25ac2781bf152c0b035e3f428882b718" }, "downloads": -1, "filename": "moban-0.0.1-py3.4.egg", "has_sig": false, "md5_digest": "8efb189df47a8262b899f9f1ee221d13", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 16953, "upload_time": "2016-03-23T22:24:18", "url": "https://files.pythonhosted.org/packages/fc/70/a0ad27751635df46188ef911cc17bcbb2689e7d002fd5ca0e1acfbbe0e9b/moban-0.0.1-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "61ea2bdf34939e855be867b014576a1c", "sha256": "aa029bba18a145240ff5e64a9063b1ccbf3dfcbb055540d7acd6a9e57fcdf9cd" }, "downloads": -1, "filename": "moban-0.0.1.zip", "has_sig": false, "md5_digest": "61ea2bdf34939e855be867b014576a1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10238, "upload_time": "2016-03-23T22:23:57", "url": "https://files.pythonhosted.org/packages/aa/cf/5c15b1b9959f1ca91284f336af5adf922b225d0d4b65e78dbde76064ec2f/moban-0.0.1.zip" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "815279cd6ba00c8e3e2ac3ede7d08b3a", "sha256": "f4ad2fd84eaa4882587c1e5a62bb892933592f044c5aaf91feb7cd075d612d1f" }, "downloads": -1, "filename": "moban-0.0.2.zip", "has_sig": false, "md5_digest": "815279cd6ba00c8e3e2ac3ede7d08b3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11008, "upload_time": "2016-04-27T22:09:06", "url": "https://files.pythonhosted.org/packages/e9/49/b9d22b1301cc4859439c1461662b49bf5ccda44bddb50eef5ff4daf7c651/moban-0.0.2.zip" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "6952477c8ba321921d4fda1d0377162d", "sha256": "b6254eb9fe4c235bc12968b1d08906be5f34d36e982be7a5fc69d2761a2f45fc" }, "downloads": -1, "filename": "moban-0.0.3.zip", "has_sig": false, "md5_digest": "6952477c8ba321921d4fda1d0377162d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11140, "upload_time": "2016-05-09T22:06:55", "url": "https://files.pythonhosted.org/packages/c0/a4/3c40154466b7ff93e4a96f68fe0bc1e9e79320f2a584bf65e44af0f606b4/moban-0.0.3.zip" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "c2523a6a73dc4636eebe74defc144476", "sha256": "a5b80d4fa013f41dec5a99277bb11981a1b8d2cb435f6f450678578f40eb23e8" }, "downloads": -1, "filename": "moban-0.0.4.zip", "has_sig": false, "md5_digest": "c2523a6a73dc4636eebe74defc144476", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11359, "upload_time": "2016-05-11T21:37:43", "url": "https://files.pythonhosted.org/packages/93/65/5c093f963512eff31e9f04e442061e7facaec6562398dde9a7c4616a337c/moban-0.0.4.zip" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "b9234060fc698ea142ba228c6eef2ca9", "sha256": "30a7c5ff19fbcfd030d0defeab81be8dd8b20256f5269fe2be2f240f202d42b3" }, "downloads": -1, "filename": "moban-0.0.5.tar.gz", "has_sig": false, "md5_digest": "b9234060fc698ea142ba228c6eef2ca9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6668, "upload_time": "2017-03-17T23:04:59", "url": "https://files.pythonhosted.org/packages/5f/26/e635aa76d0e5477249e06019d220c2664b7a70f113ed83a7cada2fda6e3f/moban-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "d7a4b8b380f8404b943e82dd3eb37999", "sha256": "a2e7bab0311350506b3a3bc8dde161b4f19ab62cc60a404d09ddd82946bf318a" }, "downloads": -1, "filename": "moban-0.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d7a4b8b380f8404b943e82dd3eb37999", "packagetype": "bdist_wheel", "python_version": "any", "requires_python": null, "size": 13252, "upload_time": "2017-06-16T22:17:50", "url": "https://files.pythonhosted.org/packages/25/74/6c1da22d205dcdf8092b89ff31726cd9196e291e14b2e063d703ae5f6ca3/moban-0.0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "90c3eab31ff2fac040f87cf980a86af9", "sha256": "0deda3b3d2e9eccc2a73b4fe5cd0396da9dbd48df964b5c540a14108e99593a7" }, "downloads": -1, "filename": "moban-0.0.6.tar.gz", "has_sig": false, "md5_digest": "90c3eab31ff2fac040f87cf980a86af9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7321, "upload_time": "2017-06-16T22:17:31", "url": "https://files.pythonhosted.org/packages/7a/2a/089e6c8195e8a63e6c81a953704448c213735fcc9957795d01ca1dd410e9/moban-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "a7ce899e258c1cebd7122cdf6243a118", "sha256": "9a92fb18bf895a3e9f01c4c29cac906cb054d9a3de5fbf032f0bba30ad95ba70" }, "downloads": -1, "filename": "moban-0.0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a7ce899e258c1cebd7122cdf6243a118", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11071, "upload_time": "2017-07-19T19:02:28", "url": "https://files.pythonhosted.org/packages/23/f3/772e926dab8a42dc3d5c25abfb2f1beeafba0aa154eee03256766aa7aa34/moban-0.0.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bb4eb4f754e6669b15e9e126f0651596", "sha256": "f747707fdb03d399225ccbcaf889ee8430e49be0ca9df44eb2313797ec0642bc" }, "downloads": -1, "filename": "moban-0.0.7.tar.gz", "has_sig": false, "md5_digest": "bb4eb4f754e6669b15e9e126f0651596", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8360, "upload_time": "2017-07-19T19:02:26", "url": "https://files.pythonhosted.org/packages/6d/01/a1e4de66f7cb8ab42ac2e4f703a45f1afbb79e9396a5ccbe2cc52b79859f/moban-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "14a12244283430913968ea82c515663f", "sha256": "6c4021ca8452b3f3fcbc0d730779668b6ac412d72f7914f2b9e862d97cc295f7" }, "downloads": -1, "filename": "moban-0.0.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "14a12244283430913968ea82c515663f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12563, "upload_time": "2017-11-18T23:01:48", "url": "https://files.pythonhosted.org/packages/f8/c4/63a5735f8a5d6d9314cd8369cc6196fcfec27cc2375c0fc5456f31bbdb26/moban-0.0.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "55ccf119e0494ec72577bfccf19de77c", "sha256": "b71d55743d3e915ec206695d4abd342a9f6c9bd4a3097b0635884983b3650aff" }, "downloads": -1, "filename": "moban-0.0.8.tar.gz", "has_sig": false, "md5_digest": "55ccf119e0494ec72577bfccf19de77c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9981, "upload_time": "2017-11-18T23:01:46", "url": "https://files.pythonhosted.org/packages/5d/62/80d0f074cdd41d05960c3f0394d774f878315e425c1afb3612449374b027/moban-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "30ee58346bfece07198407a669d996fd", "sha256": "c1e45f2ecdc277d0a644f5594285eda6a2003b5f47623b9c77c2c64cd6ad3ecd" }, "downloads": -1, "filename": "moban-0.0.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "30ee58346bfece07198407a669d996fd", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 13950, "upload_time": "2017-11-24T06:55:25", "url": "https://files.pythonhosted.org/packages/70/08/b8170611f051b426febaa3f22d6af291632e3f3fe91bbb0f64180add6662/moban-0.0.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fab1a106576ddc3600c04ca359a3e5d6", "sha256": "ef8745b2a92b51f59e7525a4d6f597376796bf78c0fd7b321946ebc1ce7d9c71" }, "downloads": -1, "filename": "moban-0.0.9.tar.gz", "has_sig": false, "md5_digest": "fab1a106576ddc3600c04ca359a3e5d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11730, "upload_time": "2017-11-24T06:55:22", "url": "https://files.pythonhosted.org/packages/1a/c8/447a85973a39d962918e5329784af751fbdbcbaa06c030118ef9d731d54c/moban-0.0.9.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "c620e341f5f261c32c7499e9a0604dcf", "sha256": "ebcb3ce96292405c12d0ac7f4f0ff0cd7d8d473ed826631a066c3ff880cdce70" }, "downloads": -1, "filename": "moban-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c620e341f5f261c32c7499e9a0604dcf", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 14334, "upload_time": "2017-12-19T20:13:48", "url": "https://files.pythonhosted.org/packages/a4/5e/9327834880be48df515208d0f8804849f62aa13ac95f6f1cc86efc339bc6/moban-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5a2b87188baee40e122f2b7f0b01ab33", "sha256": "7ddff2ac00c0224438da891be98fcd4972fa2acf1df785cc11e66722800e0f9a" }, "downloads": -1, "filename": "moban-0.1.0.tar.gz", "has_sig": false, "md5_digest": "5a2b87188baee40e122f2b7f0b01ab33", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11977, "upload_time": "2017-12-19T20:13:46", "url": "https://files.pythonhosted.org/packages/8b/b4/dad64936d188cad205e24794f84a5c81201c60c8099ddad23d0e15c9e58e/moban-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "7f404093ff787b978194c90f5889241a", "sha256": "33fcf69c71bd577b4538a22d339b32264caa2ba79f4e39efc37b1fcff3afd590" }, "downloads": -1, "filename": "moban-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7f404093ff787b978194c90f5889241a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 17109, "upload_time": "2018-01-08T08:41:07", "url": "https://files.pythonhosted.org/packages/db/1a/0529de38c2569aa3f766664669082ddb5d387fa64e945397e1d76d59f617/moban-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "acc22bd54d099970960a6497c425805f", "sha256": "739aa902ed2ba96c148ecd64ebb642d7024987c9f9a6dbbffc2e804ba5d62755" }, "downloads": -1, "filename": "moban-0.1.1.tar.gz", "has_sig": false, "md5_digest": "acc22bd54d099970960a6497c425805f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13617, "upload_time": "2018-01-08T08:41:01", "url": "https://files.pythonhosted.org/packages/3d/8a/73b93c8f0492bcf30e9a936483f53eb19a6cec292dcba56095d1093b28c0/moban-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "0bdc0a7235e22ad1b0cceef73efcefcd", "sha256": "81fbad0e00a9e468a3040fb0f839c4d902ae750b44e54b63e12e3e665b63dc77" }, "downloads": -1, "filename": "moban-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0bdc0a7235e22ad1b0cceef73efcefcd", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 17341, "upload_time": "2018-01-10T19:19:41", "url": "https://files.pythonhosted.org/packages/ed/31/691cf51ca0f63fb1718d2131c78a36e0784aa334e42b8eddbe47bbcbbb9c/moban-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "82351af970bc81317dbd4a020b24ab20", "sha256": "6d172b8e0ae012bf5a7a53b01f215409fab478f82ac5c6b5364c9c147aa17491" }, "downloads": -1, "filename": "moban-0.1.2.tar.gz", "has_sig": false, "md5_digest": "82351af970bc81317dbd4a020b24ab20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13804, "upload_time": "2018-01-10T19:19:38", "url": "https://files.pythonhosted.org/packages/94/f6/dd1f72151323821c4c5cf03983727552075300d5a8aed4e83c13be57198e/moban-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "af355dc0e09aab6d82000aa4540ebb96", "sha256": "2acd03fccce7203911e880679c271b5ecbefb72399f4ecf024eec4efd2abde83" }, "downloads": -1, "filename": "moban-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "af355dc0e09aab6d82000aa4540ebb96", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 17017, "upload_time": "2018-03-12T17:49:33", "url": "https://files.pythonhosted.org/packages/4d/c0/d51bf07e2d6e2994c052b7408de0e1bc84cb12bb12103b59d36168736cbf/moban-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4bc81f13e9baa54e69323bda1901acc0", "sha256": "75ccae78f58de4fa00c1b99cf1c6b7e52c44b2a539691b3854fd3b7c390a7c95" }, "downloads": -1, "filename": "moban-0.1.3.tar.gz", "has_sig": false, "md5_digest": "4bc81f13e9baa54e69323bda1901acc0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15480, "upload_time": "2018-03-12T17:49:24", "url": "https://files.pythonhosted.org/packages/95/65/03f28593ad2227ccfd57138e4d855593a6d3df056a9e3979c04c14d2ae3d/moban-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "d3aebf45d50ffc28d3af531c7f0546a5", "sha256": "324b588bcbc70067a5b46e968d9dec2b03dbeb5bdb531ab5e66433c6ef765b87" }, "downloads": -1, "filename": "moban-0.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d3aebf45d50ffc28d3af531c7f0546a5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 18225, "upload_time": "2018-05-29T16:08:26", "url": "https://files.pythonhosted.org/packages/3c/8d/7bd600170ec424ee0fe078b872ddb222bb1412a62b32f659a8f2c8c9d1b8/moban-0.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c22980145664a078330cd959ddc1158e", "sha256": "00a18e100a7508c5b9c3c0f1fdb5e1344f32e9e473f24f86952890f743345971" }, "downloads": -1, "filename": "moban-0.1.4.tar.gz", "has_sig": false, "md5_digest": "c22980145664a078330cd959ddc1158e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16378, "upload_time": "2018-05-29T16:08:24", "url": "https://files.pythonhosted.org/packages/82/55/fb791f1f0c388aa6721ab9ae0b66de32854eea8ac20c86b59a69abdbb6c8/moban-0.1.4.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "5e3f8205920378cb306c4a25e799ddfd", "sha256": "cef77f9ac1810adf864860da3f485e59ef532aa63fec1ec7e89508043c830e62" }, "downloads": -1, "filename": "moban-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5e3f8205920378cb306c4a25e799ddfd", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20706, "upload_time": "2018-06-11T17:25:04", "url": "https://files.pythonhosted.org/packages/1c/c1/1d82945835717583a6a326891ec255538f64a5e98d575c6178261bec7b63/moban-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "69ac38ed08de03cd3645ef1f5c672e86", "sha256": "9fc7923ae19ea91590029d1d07b04a4f2d0175704875f85e18833a87bf0a1787" }, "downloads": -1, "filename": "moban-0.2.0.tar.gz", "has_sig": false, "md5_digest": "69ac38ed08de03cd3645ef1f5c672e86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18165, "upload_time": "2018-06-11T17:25:01", "url": "https://files.pythonhosted.org/packages/2e/94/508248f8c7426c9a19c363ae004cde2ccff50f624fa5a9ffd78872642f9c/moban-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "0001f1a9f2792540553dec58d6b1632d", "sha256": "9c19567f5d3b64fc592244c7f09d80d8c6a0e911fe61d4cf0dea002449f18be4" }, "downloads": -1, "filename": "moban-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0001f1a9f2792540553dec58d6b1632d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20776, "upload_time": "2018-06-13T07:59:02", "url": "https://files.pythonhosted.org/packages/31/7c/11cb29acc3bca2d1b1b61ffdf2abb205668e690f86efd6bb2ca80cee1bbd/moban-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b01842009a20c076c0eece4242fd91b0", "sha256": "53346e3bc60ab1f4c650a7b05b902d030049bdab7df89f7c29b5edc657487307" }, "downloads": -1, "filename": "moban-0.2.1.tar.gz", "has_sig": false, "md5_digest": "b01842009a20c076c0eece4242fd91b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18261, "upload_time": "2018-06-13T07:58:59", "url": "https://files.pythonhosted.org/packages/69/69/8b1b65ae9e526c6f03d7e5a93682c61e7eb2cc5d2a4f3add7b29a7cf80eb/moban-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "c49248b8b62ee06c4ee470137b53580a", "sha256": "9cbe834a4a532ee3a0a1bade07819eea1ee361929a0654e9de6ae8f77b6c9c2b" }, "downloads": -1, "filename": "moban-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c49248b8b62ee06c4ee470137b53580a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21391, "upload_time": "2018-06-16T14:26:15", "url": "https://files.pythonhosted.org/packages/77/12/649792c31683bb9a7f6d1a830a4e93cd939bbf47f33b4fc6c52f63f29c3c/moban-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "884dcbe3d54a1f5246b48bfe1689fb90", "sha256": "62fbf472b96fc47bac05a6215d6f13f7c61e7d11237839ea79584f59335b32ba" }, "downloads": -1, "filename": "moban-0.2.2.tar.gz", "has_sig": false, "md5_digest": "884dcbe3d54a1f5246b48bfe1689fb90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18896, "upload_time": "2018-06-16T14:26:13", "url": "https://files.pythonhosted.org/packages/c0/74/3814ebd7b7c53c4342c950f9731df615683ac9e9d9cb7d13fb353a86008f/moban-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "33cfd6d57a92760b88c452cbee55bc40", "sha256": "fdd29c3e93aef19581c5cb2cb44493ff060af7d6da114e46141a356bbe6ca888" }, "downloads": -1, "filename": "moban-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "33cfd6d57a92760b88c452cbee55bc40", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22336, "upload_time": "2018-07-10T21:21:05", "url": "https://files.pythonhosted.org/packages/59/00/18f6668ea9f966e5add2b46c241c00761f4808dc0d3192cdb6924bd2c149/moban-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a909f285c7def3490b2207c91e31fb27", "sha256": "cc1999380ccf892e3ce9aab8c3bb6bd03730aaf011f23d255cf0d8fd3fcf9e74" }, "downloads": -1, "filename": "moban-0.2.3.tar.gz", "has_sig": false, "md5_digest": "a909f285c7def3490b2207c91e31fb27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19465, "upload_time": "2018-07-10T21:21:03", "url": "https://files.pythonhosted.org/packages/24/16/4f7063afe2974cbbaa8444b062f548a299ca223e274a33cc1a02f2556367/moban-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "e6880a724553d87c2b617afa22a9aa47", "sha256": "17a26e6561374bddcf79c9fcdf526fc2edeea777c0645aaf464c7832ee2aa96e" }, "downloads": -1, "filename": "moban-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e6880a724553d87c2b617afa22a9aa47", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22833, "upload_time": "2018-07-14T09:42:33", "url": "https://files.pythonhosted.org/packages/3e/d5/fb1198a5d92a417b6881daaed3efda477e242a734a664e1cf29e9599ec67/moban-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1dc0afba3eea22ff9f248524aee35fa3", "sha256": "5e24338aaf036c77e99cd92e88841b42200e50a93c8fa1dff8a7410035e61d32" }, "downloads": -1, "filename": "moban-0.2.4.tar.gz", "has_sig": false, "md5_digest": "1dc0afba3eea22ff9f248524aee35fa3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20056, "upload_time": "2018-07-14T09:42:31", "url": "https://files.pythonhosted.org/packages/d4/3e/57f1f7d2f781bb9e854f93bb733ef18c152656cc7f00a1dbc21bb2ee6a6b/moban-0.2.4.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "5e0bc55c12c9da25b6aac88837dc885a", "sha256": "a0fdd7e9d0e52f89a678fd3aacf59423b4156338c60e26e70665eaa469237088" }, "downloads": -1, "filename": "moban-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5e0bc55c12c9da25b6aac88837dc885a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 23851, "upload_time": "2018-10-27T11:56:18", "url": "https://files.pythonhosted.org/packages/11/7d/46245978a08ef68004eb34d4b2fabc034c9156c9975d70c873b746857d68/moban-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3cf685c3f92d2f8eab224cb218f10f5e", "sha256": "cb875541ec74fa7098cd049352b36a70fcedb1583052e9cf7eee6040e195de9c" }, "downloads": -1, "filename": "moban-0.3.0.tar.gz", "has_sig": false, "md5_digest": "3cf685c3f92d2f8eab224cb218f10f5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21038, "upload_time": "2018-10-27T11:56:15", "url": "https://files.pythonhosted.org/packages/f5/66/cb193fc6d90e6efcc4d62fe119eb56d241e6af89ee756a640e1beed97c79/moban-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "513787a3f3be78f21ee5440af506f8af", "sha256": "596727b4a0c1b8fbb1dfb7ccd872a4559e1c57b683f442291667035b3d85e183" }, "downloads": -1, "filename": "moban-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "513787a3f3be78f21ee5440af506f8af", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24771, "upload_time": "2018-11-03T00:04:34", "url": "https://files.pythonhosted.org/packages/1a/6f/68fd3984a87063429b0b0160ce17f7ec8973f9ad6e22753eec439a583263/moban-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c8200db705e54210fa494dc36fcd1340", "sha256": "0639cd0d40bd2b76c829f9cb7100ebfda54881aa3b1f00bfc928ac6419436834" }, "downloads": -1, "filename": "moban-0.3.1.tar.gz", "has_sig": false, "md5_digest": "c8200db705e54210fa494dc36fcd1340", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21858, "upload_time": "2018-11-03T00:04:32", "url": "https://files.pythonhosted.org/packages/91/38/78551df6aa21b708d35ff112ada4a2039284fafb6e92a0e96dd78ac784c7/moban-0.3.1.tar.gz" } ], "0.3.10": [ { "comment_text": "", "digests": { "md5": "5df09230dc91ccdb8970f82b863efa42", "sha256": "6d1ce8ef007ca817e388dbbe526b11db1431e2c37922f8787f18e6ebb86e54cc" }, "downloads": -1, "filename": "moban-0.3.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5df09230dc91ccdb8970f82b863efa42", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 27999, "upload_time": "2019-02-03T21:35:43", "url": "https://files.pythonhosted.org/packages/5e/ff/7c18352bfed2038d90ae2ed790294d8fec9f6981fb366652e96d48c24f28/moban-0.3.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e5c1447c723aa8ba06d8e0a9caa0cdb", "sha256": "aa6c5e7701b584bb2880b5f08bad1468efe4141cfd68ddb14fa519010f90f10a" }, "downloads": -1, "filename": "moban-0.3.10.tar.gz", "has_sig": false, "md5_digest": "0e5c1447c723aa8ba06d8e0a9caa0cdb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73633, "upload_time": "2019-02-03T21:35:40", "url": "https://files.pythonhosted.org/packages/5a/61/686c0a6efb5237c3fe6b1439c7a0d88f8816b05ebeb6a6779217490691c5/moban-0.3.10.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "3663e28c01efc5b1f5d2ed45c60b0b24", "sha256": "5feade6fc63cbaf384e2268a9cb7cd2862daa4f2b330902d6cea7f6f3aef642c" }, "downloads": -1, "filename": "moban-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3663e28c01efc5b1f5d2ed45c60b0b24", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24958, "upload_time": "2018-11-05T07:26:51", "url": "https://files.pythonhosted.org/packages/7e/b6/475cdfef1f09558b1a1d51313bab189820f3f05b207376f960e5f95b0126/moban-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4dce967b8453db6ae56264c49ba475ed", "sha256": "fe96279d568a0d3aeaa13761352bf060a6f7417fbee59f392f63bd0d3dec6bc0" }, "downloads": -1, "filename": "moban-0.3.2.tar.gz", "has_sig": false, "md5_digest": "4dce967b8453db6ae56264c49ba475ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22146, "upload_time": "2018-11-05T07:26:48", "url": "https://files.pythonhosted.org/packages/17/29/1de64a6bd6f96821e56572cc784681456b0ddb9ae906d6b141a6d9a7fdfe/moban-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "5471257cd814640ca21a85b82f6bd882", "sha256": "ec1674307eb84f5465db248b1a1f8d40cc0b8d6fd2bb151c68808c87d9f6f21e" }, "downloads": -1, "filename": "moban-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5471257cd814640ca21a85b82f6bd882", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 25358, "upload_time": "2018-11-05T21:45:31", "url": "https://files.pythonhosted.org/packages/01/96/929056f192b3e13bbe1f3c86becdd1328baba13d1e275ae25a32637021a1/moban-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fac1a5c9bb34e06b09ccf62dc3c7cce1", "sha256": "b0a2c387298f910e25b4b90927ec45286faa7180b117c3a42b6ffcce6c1e8612" }, "downloads": -1, "filename": "moban-0.3.3.tar.gz", "has_sig": false, "md5_digest": "fac1a5c9bb34e06b09ccf62dc3c7cce1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22496, "upload_time": "2018-11-05T21:45:29", "url": "https://files.pythonhosted.org/packages/ae/4c/ffabda4b09fc9e6036cbda874452b328686d09f238091d9941137c2624c0/moban-0.3.3.tar.gz" } ], "0.3.4.1": [ { "comment_text": "", "digests": { "md5": "6bf7dd3168e4df74b98a6793aca1ae61", "sha256": "8fed49d1664ef2534c6bd460079a39f382639e71c6b92090750bf5fa7dc61d3d" }, "downloads": -1, "filename": "moban-0.3.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6bf7dd3168e4df74b98a6793aca1ae61", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 23687, "upload_time": "2018-11-27T22:00:36", "url": "https://files.pythonhosted.org/packages/ad/cd/425b71b08e2f900fcca3051317a63cc12ce5c042acdfdce2b554ba4aa666/moban-0.3.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3bc0eab3acff5b17976c25a32339379d", "sha256": "1f32481a75513c66948ee9e760b66e3f31df77211203af59a791d484706b9ff4" }, "downloads": -1, "filename": "moban-0.3.4.1.tar.gz", "has_sig": false, "md5_digest": "3bc0eab3acff5b17976c25a32339379d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24039, "upload_time": "2018-11-27T22:00:34", "url": "https://files.pythonhosted.org/packages/8e/0b/2ea9232079f045894b57fdfb6264204d9ace2bab91fd5b1ebc15d2de2172/moban-0.3.4.1.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "0d21feedd024b1d307b9bf55a3bead66", "sha256": "a1174b29209397c1c5b97a94556ab3d12c29a8c4aaa98be83175c0fcff6e439a" }, "downloads": -1, "filename": "moban-0.3.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0d21feedd024b1d307b9bf55a3bead66", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 24022, "upload_time": "2018-12-10T08:08:56", "url": "https://files.pythonhosted.org/packages/8e/30/17a0a6cf723118fb2f3f347adccf562631f05648f007007e99848441bd57/moban-0.3.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b8ccdcb875f29087ef2fb011c7b3ec8d", "sha256": "201c3fd2b6b0f6d6b9e2aed40cd54906c42fc9b1c9011455222804c02f2e5ab7" }, "downloads": -1, "filename": "moban-0.3.5.tar.gz", "has_sig": false, "md5_digest": "b8ccdcb875f29087ef2fb011c7b3ec8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24462, "upload_time": "2018-12-10T08:08:53", "url": "https://files.pythonhosted.org/packages/de/d9/571b5918871ef6866ea3e963a96844f153424f31614b9a69ee82b5f3267e/moban-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "b5b7e93e217132be6d3127904b742bac", "sha256": "dcaeafd9f4960bf1b43c1a6272a62f9cab7af29ab555a20f238b44a26d8134c2" }, "downloads": -1, "filename": "moban-0.3.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b5b7e93e217132be6d3127904b742bac", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 24321, "upload_time": "2018-12-30T21:21:30", "url": "https://files.pythonhosted.org/packages/01/1e/32550c3c42de52d7ac1eab052df6d1702903f7db81d5637bd7e7dfbbedc4/moban-0.3.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "08fd75dd71d9d524330df1458ad87967", "sha256": "1a119ba7cf5e6d804ed99399a4248b4a0942c4641295ba3ef052fa3a408b0232" }, "downloads": -1, "filename": "moban-0.3.6.tar.gz", "has_sig": false, "md5_digest": "08fd75dd71d9d524330df1458ad87967", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25663, "upload_time": "2018-12-30T21:21:29", "url": "https://files.pythonhosted.org/packages/88/8e/e0046c187f6be5b2612fd7a2f10bfa7ad664889fbd432c63cb8f9dbdb93c/moban-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "834ba6bf29db8ce4f93791f2cf0c2e36", "sha256": "8460fe3fb9a2e0b1c738433a079e9da5d460c2229872b60ef03fe8df95699200" }, "downloads": -1, "filename": "moban-0.3.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "834ba6bf29db8ce4f93791f2cf0c2e36", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 24951, "upload_time": "2019-01-06T22:55:47", "url": "https://files.pythonhosted.org/packages/83/64/8608df7b77f9e4c7425775abc201e02892dcbd7182065eb158451708a5ec/moban-0.3.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3678da7b734ad4acd578414f4f1b0bdb", "sha256": "dcaeb10204db31a4cbf36bdc36f46a03f74fea833c7dac0e8f1a473348078821" }, "downloads": -1, "filename": "moban-0.3.7.tar.gz", "has_sig": false, "md5_digest": "3678da7b734ad4acd578414f4f1b0bdb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66675, "upload_time": "2019-01-06T22:55:44", "url": "https://files.pythonhosted.org/packages/2f/97/0013adecf712ad69aca61c0e99aa2ad21c56e194e6e2770fe1b00a195ec3/moban-0.3.7.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "8c7b96b039094d8f81424d881c74bdac", "sha256": "bdc8051749c07d552e3eda7c60fc2fe032fbdafeb12f81e38833dd489b9e0a52" }, "downloads": -1, "filename": "moban-0.3.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8c7b96b039094d8f81424d881c74bdac", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 25721, "upload_time": "2019-01-12T19:38:56", "url": "https://files.pythonhosted.org/packages/87/d7/55e4afc5ca3f66dd6693ffed2037dcc3a41304dfd3f6121e695654a23a69/moban-0.3.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4d0ec13e5b3dc2e2977242f106f62307", "sha256": "83428b6a293c54cd6c08912973bf502f1aaab7c178d43777fbacf396fcc24540" }, "downloads": -1, "filename": "moban-0.3.8.tar.gz", "has_sig": false, "md5_digest": "4d0ec13e5b3dc2e2977242f106f62307", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67913, "upload_time": "2019-01-12T19:38:54", "url": "https://files.pythonhosted.org/packages/e4/4b/63977d869fa8407efd5c8c531486200b661a5a0aa9f2aedf8cb2bc9f4731/moban-0.3.8.tar.gz" } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "5f22bba3491c837ce793d72baa62c30e", "sha256": "f9a4a8d146e18cdf4432ab7984208d09deaca2a2a01aae0551ddc96336abf13f" }, "downloads": -1, "filename": "moban-0.3.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5f22bba3491c837ce793d72baa62c30e", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 26048, "upload_time": "2019-01-18T18:01:52", "url": "https://files.pythonhosted.org/packages/11/89/9e46ed6e0e8c12d714908685fe727de1b0726030ca3f7d707833aca83c7b/moban-0.3.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ab731f801aef0b4a398f8cb1cf438a76", "sha256": "7af23d01fcafe6f7e1c621d2f51d84cb47220708d57f5f7d76ff56b879709d73" }, "downloads": -1, "filename": "moban-0.3.9.tar.gz", "has_sig": false, "md5_digest": "ab731f801aef0b4a398f8cb1cf438a76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69455, "upload_time": "2019-01-18T18:01:45", "url": "https://files.pythonhosted.org/packages/c8/40/0fbb86cbf66fcb0d4e70ca6655220d0fca9da02effeadf0dc4d6abfc238d/moban-0.3.9.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "d139468910f443fd1a745a476f2ccb4f", "sha256": "3f2f25a714eb72ab0e2323de980cf0d9b7e9e7eebdc2013b5b37ac3fb367b0e2" }, "downloads": -1, "filename": "moban-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d139468910f443fd1a745a476f2ccb4f", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 34227, "upload_time": "2019-02-20T07:07:14", "url": "https://files.pythonhosted.org/packages/84/2c/47f5dee5c18346d59147beb96c3b193e06bf187ea286858572c92b96b240/moban-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "61beccf43991716a85235c3060f9647d", "sha256": "d78739d61854e50dea3dc40a882536ce42a05af446da4381468de15a87776be5" }, "downloads": -1, "filename": "moban-0.4.0.tar.gz", "has_sig": false, "md5_digest": "61beccf43991716a85235c3060f9647d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80008, "upload_time": "2019-02-20T07:07:10", "url": "https://files.pythonhosted.org/packages/93/58/fd9db4708b879d25a835ad72abce5c8064e350127e18f0581f44d0907f45/moban-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "cd536ebf6751a19eb3a067653544c0a1", "sha256": "e403fabf0063b8ba506a7ce4efab0369446c6ae69939d77af53407579827ca85" }, "downloads": -1, "filename": "moban-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cd536ebf6751a19eb3a067653544c0a1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 34656, "upload_time": "2019-02-28T19:34:52", "url": "https://files.pythonhosted.org/packages/47/ee/203632f6e45fcda3ec380e0aabff98b111f76e7487227e39b644a152119b/moban-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "86e43db986f01be762dc830278c10880", "sha256": "eec8b315f4d95db531bbb6865ce4efefa8f4892c8e0fcd9b5e97fd903a95f166" }, "downloads": -1, "filename": "moban-0.4.1.tar.gz", "has_sig": false, "md5_digest": "86e43db986f01be762dc830278c10880", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75970, "upload_time": "2019-02-28T19:34:53", "url": "https://files.pythonhosted.org/packages/a8/c4/98d17098307f8f84a25b899c841aa6c1b8c1e895b2d01ad0877243990f44/moban-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "98122876ea7b24f881cdec57f51eb37a", "sha256": "e6fb0b9b8fc9b02e18cf8a7a9b893c397ff88d3da5f0f40d1fa63d25d14519e6" }, "downloads": -1, "filename": "moban-0.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "98122876ea7b24f881cdec57f51eb37a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36010, "upload_time": "2019-03-08T18:09:45", "url": "https://files.pythonhosted.org/packages/29/62/4437336755d0858177d883d60180ecd75e46fb3d1eb7860160ac3e74aaf4/moban-0.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "779294e353e3772ae6e18b77f91c1672", "sha256": "042dde71d2dbead53ab85792ee4b1a06d2ee1c470cd5d8e275b171cbd86cc137" }, "downloads": -1, "filename": "moban-0.4.2.tar.gz", "has_sig": false, "md5_digest": "779294e353e3772ae6e18b77f91c1672", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121879, "upload_time": "2019-03-08T18:09:48", "url": "https://files.pythonhosted.org/packages/09/1f/3725eee00a7d942f9ee434a6110bd035d5fef10430d33afd4b4b3f932346/moban-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "8be5d65c789fb0b32987743ff0983dae", "sha256": "dfdcf543138d65db6449e48bad999f90c923cd03da5e1d643fc51d601795cb3d" }, "downloads": -1, "filename": "moban-0.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8be5d65c789fb0b32987743ff0983dae", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36731, "upload_time": "2019-03-15T19:24:21", "url": "https://files.pythonhosted.org/packages/e6/c3/1518a9a302e4e38e30749a267e21d6006abf6d2d26c956392734caf7c3a9/moban-0.4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fcfdc0693cad69cb8b876b424f5dd7ef", "sha256": "2776b0683413f6c653a24436e1e1356c5c9a18550defb57a9ed0177b3dc2862c" }, "downloads": -1, "filename": "moban-0.4.3.tar.gz", "has_sig": false, "md5_digest": "fcfdc0693cad69cb8b876b424f5dd7ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81165, "upload_time": "2019-03-15T19:24:23", "url": "https://files.pythonhosted.org/packages/b1/1b/dc7212359199fa4a0341a26cb24c83e6ca577acfd544aa292a7b2a9ae2bc/moban-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "adc0c486c4d7b28af323a74f3c1e7a3d", "sha256": "e479083ec071eeddd1ffe59a241b105fcebaa3837e7b6bbdc2e485c90eb48f8f" }, "downloads": -1, "filename": "moban-0.4.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "adc0c486c4d7b28af323a74f3c1e7a3d", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 36708, "upload_time": "2019-05-26T09:47:30", "url": "https://files.pythonhosted.org/packages/df/ac/884dc8ec729d0f646593ba75b44c37ce2df7d476f725f311af547e349c2e/moban-0.4.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f8ccffc8e6a1419871776e9388dd2aaa", "sha256": "24cb503be95fd09f4798b734c686d5d7e09276a87c07d332ffc272f8aeaf1ede" }, "downloads": -1, "filename": "moban-0.4.4.tar.gz", "has_sig": false, "md5_digest": "f8ccffc8e6a1419871776e9388dd2aaa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 487766, "upload_time": "2019-05-26T09:47:27", "url": "https://files.pythonhosted.org/packages/bf/4f/b3266ae65fdf7e7c5d42963bb47ea33b6ed5273ebade9320f5afde906d0c/moban-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "17dab55efff90516321e4ea16b4784fd", "sha256": "abee0954be38e8ee6a5648c593ce41a8c9502aaf2cdb81ca82d5490604424609" }, "downloads": -1, "filename": "moban-0.4.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "17dab55efff90516321e4ea16b4784fd", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 36863, "upload_time": "2019-07-07T17:20:10", "url": "https://files.pythonhosted.org/packages/29/f2/81201272372a6b488d36a459dad5d7a2b8d7ef54026cc49b5afffea81b4a/moban-0.4.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cbedb4411fd2c565c8258f8bc94222a7", "sha256": "b4ae2bd8b34c6ba57d5ce1d7b1750bfa46319d1571ecc1ba79967ff4244ce039" }, "downloads": -1, "filename": "moban-0.4.5.tar.gz", "has_sig": false, "md5_digest": "cbedb4411fd2c565c8258f8bc94222a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 488891, "upload_time": "2019-07-07T17:20:07", "url": "https://files.pythonhosted.org/packages/41/36/3e75691fe9986d716d6f6e1794420c1aaea203034fa72d8ad6ed4788d350/moban-0.4.5.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "b29f3007082b0373d40ea5fdec10fdf9", "sha256": "66dcbe4fc819c6ca22199f769d7610b0fde4e04785d25fffd6c7f58fa2cfdbad" }, "downloads": -1, "filename": "moban-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b29f3007082b0373d40ea5fdec10fdf9", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 37306, "upload_time": "2019-07-14T16:57:31", "url": "https://files.pythonhosted.org/packages/78/8b/451d95478fd9e9e5a2b4fc27e7d3777f6f6a0da306b4d153e78aa7d7ed07/moban-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c50bed15c68730643721204060730924", "sha256": "64a3f4fe5ee9825d7c447d6d992a01e18f74052b6ec1c78ac86d4e6b9279cebe" }, "downloads": -1, "filename": "moban-0.5.0.tar.gz", "has_sig": false, "md5_digest": "c50bed15c68730643721204060730924", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 492910, "upload_time": "2019-07-14T16:57:28", "url": "https://files.pythonhosted.org/packages/d5/e1/0fa026a4f23e4a2bcf522b6711fc699db3f266fb32e7ca56980393625cc8/moban-0.5.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "12af9f8a7fdad87878facf2c845437c1", "sha256": "ff3954ee1c1f94d576d4e0a88d6330d8503cd91305ffca1f09f79ca8df86ba07" }, "downloads": -1, "filename": "moban-0.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "12af9f8a7fdad87878facf2c845437c1", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 40838, "upload_time": "2019-09-10T20:19:52", "url": "https://files.pythonhosted.org/packages/40/c0/192613e44d1d0962679b02d817bebf194bdc5eb2760213102429f377b5dd/moban-0.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b6d8ce74fc5ae43cba47e3b6fb09d6e9", "sha256": "933db7542d6488df2ea263639e5ddfeac4102be49a3e4abc57dcd3c810a4cfef" }, "downloads": -1, "filename": "moban-0.6.1.tar.gz", "has_sig": false, "md5_digest": "b6d8ce74fc5ae43cba47e3b6fb09d6e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 497240, "upload_time": "2019-09-10T20:19:49", "url": "https://files.pythonhosted.org/packages/f4/78/a2f93aeae3265f8faf76f3235eda2a6453ee6e592e0c3e1bd5ba02779f6e/moban-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "dc511fd9450ad66b1f2cdee5296e57f6", "sha256": "b9505e8e5625a74c96fc2f825213a9e59125dca542235945489dc30f3ec3c395" }, "downloads": -1, "filename": "moban-0.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dc511fd9450ad66b1f2cdee5296e57f6", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 41451, "upload_time": "2019-09-14T09:27:19", "url": "https://files.pythonhosted.org/packages/93/1f/37bbe9d98e67500051ae7e4f190808e8faf3257e2c1f81053dfcb2828b1b/moban-0.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2be8e70c539438760757da25bf212627", "sha256": "7cf7b79da9c6efa90043948a1adaded3795ede2ab1f0ecbf04d0f0f1e536c3ef" }, "downloads": -1, "filename": "moban-0.6.2.tar.gz", "has_sig": false, "md5_digest": "2be8e70c539438760757da25bf212627", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 498555, "upload_time": "2019-09-14T09:27:15", "url": "https://files.pythonhosted.org/packages/f5/ed/e7b269d907468c3568df8b78a82600b28e435127bcb31b23dba179e16c78/moban-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "8884c930b5577c01f491b896b1acd90e", "sha256": "816ce200cec88b501d48af246bdb0a42d3071e72783ddc5bc6db2e3cb9d6c78f" }, "downloads": -1, "filename": "moban-0.6.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8884c930b5577c01f491b896b1acd90e", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 41558, "upload_time": "2019-09-25T07:37:48", "url": "https://files.pythonhosted.org/packages/d8/97/482cde5945cb9ed610c7ab5c0f502784141edb521b10455ab87bd89f7166/moban-0.6.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ee07b66a6a6089b51e82394e9aacfacf", "sha256": "2d641a3130576889a291aad4f08781045c04422e0ebeae6e20c5480cf3db3056" }, "downloads": -1, "filename": "moban-0.6.3.tar.gz", "has_sig": false, "md5_digest": "ee07b66a6a6089b51e82394e9aacfacf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 498962, "upload_time": "2019-09-25T07:37:43", "url": "https://files.pythonhosted.org/packages/92/e2/5c7628bc04b393238203429bf86cef31e55c9ff73b82ddeb162d66271f3e/moban-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "29a02cae9afc87dc6d8c27724c0a3def", "sha256": "9c27558e76fef1083d9d6b46af0c814b1277c3f4f882d343ebb710b6fa0e67f5" }, "downloads": -1, "filename": "moban-0.6.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "29a02cae9afc87dc6d8c27724c0a3def", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 41910, "upload_time": "2019-10-05T10:23:34", "url": "https://files.pythonhosted.org/packages/60/d9/fa78f6b1577cd3244e01961fdfa5651d01507b522fbbe7365ad012947a7c/moban-0.6.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b9989675ffba4c09b99bffa14cd7c012", "sha256": "c6f94c71b9628f56e21dfc630fb6e91c7b253f6d125d1d801af813ac9e5311e8" }, "downloads": -1, "filename": "moban-0.6.4.tar.gz", "has_sig": false, "md5_digest": "b9989675ffba4c09b99bffa14cd7c012", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 499952, "upload_time": "2019-10-05T10:23:31", "url": "https://files.pythonhosted.org/packages/84/05/b65c6fa4971230cdfb2680f071c7906b0ae028785121edf4536db7980892/moban-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "260d61449e5e42a86bdc985d520d3f3c", "sha256": "f9e863df6cca072e32b58a7031d754e6e3acc9b4a31213f7bc9465875e917064" }, "downloads": -1, "filename": "moban-0.6.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "260d61449e5e42a86bdc985d520d3f3c", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 42831, "upload_time": "2019-10-12T21:55:30", "url": "https://files.pythonhosted.org/packages/a8/17/f82c3ce8e9ccb5098f565aaa7c5616e9bac566bc2b824a0fe94ed755f123/moban-0.6.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "87d2f19cd11f7147965680121c9e604b", "sha256": "63709f2f6da79af22e9b6ce36da253a167c27e757cd92c5bdf1c84f18731c64a" }, "downloads": -1, "filename": "moban-0.6.5.tar.gz", "has_sig": false, "md5_digest": "87d2f19cd11f7147965680121c9e604b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 499670, "upload_time": "2019-10-12T21:55:25", "url": "https://files.pythonhosted.org/packages/d6/a8/a402bf13ea267172f675b517484f54c4ec75d91872a0cdf14cb05fc72a9e/moban-0.6.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "260d61449e5e42a86bdc985d520d3f3c", "sha256": "f9e863df6cca072e32b58a7031d754e6e3acc9b4a31213f7bc9465875e917064" }, "downloads": -1, "filename": "moban-0.6.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "260d61449e5e42a86bdc985d520d3f3c", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 42831, "upload_time": "2019-10-12T21:55:30", "url": "https://files.pythonhosted.org/packages/a8/17/f82c3ce8e9ccb5098f565aaa7c5616e9bac566bc2b824a0fe94ed755f123/moban-0.6.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "87d2f19cd11f7147965680121c9e604b", "sha256": "63709f2f6da79af22e9b6ce36da253a167c27e757cd92c5bdf1c84f18731c64a" }, "downloads": -1, "filename": "moban-0.6.5.tar.gz", "has_sig": false, "md5_digest": "87d2f19cd11f7147965680121c9e604b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 499670, "upload_time": "2019-10-12T21:55:25", "url": "https://files.pythonhosted.org/packages/d6/a8/a402bf13ea267172f675b517484f54c4ec75d91872a0cdf14cb05fc72a9e/moban-0.6.5.tar.gz" } ] }