{
"info": {
"author": "German Gomez-Herrero",
"author_email": "german@findhotel.net",
"bugtrack_url": null,
"classifiers": [
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3"
],
"description": "humilis\n=======\n\n|Build Status| |PyPI|\n\nHelps you deploy AWS infrastructure with\n`Cloudformation `__.\n\nThis project is originally based on the\n`cumulus `__ project. See\n`CUMULUS_LICENSE `__\nfor license information.\n\nInstallation\n============\n\nInstall the `AWS CLI `__:\n\n::\n\n pip install awscli\n\nConfigure the AWS CLI:\n\n::\n\n aws configure\n\n``humilis`` will use whatever credentials you introduced when\nconfiguring your AWS CLI installation.\n\nYou can now install the latest \u201cstable\u201d version of ``humilis``:\n\n::\n\n pip install humilis\n\nor the development version if you prefer that:\n\n::\n\n pip install git+https://github.com/humilis/humilis\n\nAfter installation you need to configure humilis. To configure globally\nfor your system:\n\n::\n\n humilis configure\n\nThe command above will store and read the configuration options from\n``~/.humilis.ini``. You can also store the configuration in a\n``.humilis.ini`` file stored in your current working directory by using:\n\n::\n\n humilis configure --local\n\n``humilis`` will always read the configuration first from a\n``.humilis.ini`` file under your current work directory. If it is not\nfound then it will read it from your system global config file\n``~/.humilis``.\n\nDevelopment environment\n=======================\n\nAssuming you have\n`virtualenv `__\ninstalled:\n\n::\n\n make develop\n\n . .env/bin/activate\n\nTesting\n=======\n\nAt the moment, most tests are integration tests with the AWS SDK. This\nmeans that you will need to `set up your\nsystem `__\nto access AWS resources if you want to run the test suite.\n\n::\n\n py.test tests\n\nQuickstart\n==========\n\nDefine your infrastructure environment following the examples in the\n`examples\ndirectory `__.\nThen to create the environment:\n\n::\n\n humilis create examples/humilis-firehose.yaml\n\nTo update the environment after it has been deployed:\n\n::\n\n humilis update examples/humilis-firehose.yaml\n\nAnd to delete it:\n\n::\n\n humilis delete examples/humilis-firehose.yaml\n\nHumilis environments\n====================\n\nA ``humilis`` environment is just a collection of cloudformation stacks\nthat are required for an application. Instead of having a monolytic CF\ntemplate for your complete application, ``humilis`` allows you to define\ninfrastructure *layers* that are combined into an *environment*. Each\n``humilis`` layer translates exactly into one CF template (therefore\ninto one CF stack after the layer is deployed).\n\nBreaking a complex infrastructure environment into smaller layers has at\nleast two obvious advantages:\n\n- **Easier to maintain**. It\u2019s easier to maintain a simple layer that\n contains just a bunch of `CF\n resources `__\n than serve a well-defined purpose.\n\n- **Easier to reuse**. You should strive to define your infrastructure\n layers in such a way that you can reuse them across various\n environments. For instance, many projects may require a base layer\n that defines a VPC, a few subnets, a gateway and some routing tables,\n and maybe a (managed) NAT. You can define a humilis layer with those\n resources and have a set of layer parameters (e.g.\u00a0the VPC CIDR) that\n will allow you to easily reuse it across environments.\n\nEnvironment anatomy\n-------------------\n\nAn environment *definition file* is a\n`yaml `__ document that specifies\nthe list of layers that form your enviroment. The file should be named\nas your environment. That is, for environment ``my-app-environment`` the\nenvironment description file should be called\n``my-app-environment.yaml``. The contents of the environment definition\nshould be organized as follows:\n\n::\n\n ---\n my-app-environment:\n description:\n A description of what this environment is for\n layers:\n # The layers that you environment requires. They will be deployed in the\n # same order as you list them. Note that you can also pass parameters \n # to a layer (more on that later).\n - {layer: name_of_first_layer, layer_param: layer_value}\n - {layer: name_of_second_layer}\n - {layer: name_of_third_layer}\n\nLayer anatomy\n-------------\n\nAnything associated to a given layer must be stored in a directory with\nthe same name as the layer, within the same directory where the\nenvironment *definition file* is located. If we consider the\n``my-app-environment`` environment we used above then your directory\ntree should look like this:\n\n::\n\n .\n \u251c\u2500\u2500 my-app-environment.yaml\n \u251c\u2500\u2500 name_of_first_layer\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 meta.yaml\n \u2502\u00a0\u00a0 \u2514\u2500\u2500 resources.yaml\n \u251c\u2500\u2500 name_of_second_layer\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 meta.json\n \u2502\u00a0\u00a0 \u2514\u2500\u2500 meta.yaml\n \u2514\u2500\u2500 name_of_third_layer\n \u251c\u2500\u2500 resources.json.j2\n \u2514\u2500\u2500 resources.yaml.j2\n\nA layer must contain at least two files:\n\n- ``meta.yaml``: Meta information about the layer such as a\n description, and layer parameters.\n- ``resources.yaml``: Basically a CF template with the resources that\n the layer contains.\n\nThose two files can also be in ``.json`` format (``meta.json`` and\n``resources.json``). Or you can add the extension ``.j2`` if you want\nthe files to be pre-processed with the\n`Jinja2 `__ template compiler.\n\nBelow an example of how a layer ``meta.yaml`` may look like:\n\n::\n\n ---\n meta:\n description:\n Creates a VPC, that's it\n parameters:\n vpc_cidr:\n description: The CIDR block of the VPC\n value: 10.0.0.0/16\n\nAbove we declare only one layer parameter: ``vpc_cidr``. ``humilis``\nwill make pass that parameter to Jinja2 when compiling any template\ncontained in the layer. So the ``resources.yaml.j2`` for that same layer\nmay look like this:\n\n::\n\n ---\n resources:\n VPC:\n Type: \"AWS::EC2::VPC\"\n Properties:\n CidrBlock: {{ vpc_cidr }}\n\nReferences\n==========\n\nYou can use references in your ``meta.yaml`` files to refer to thing\nother than resources within the same layer (to refer to resources within\na layer you can simply use Cloudformation\u2019s\n`Ref `__\nor\n`GetAtt `__\nfunctions). Humilis references are used by setting the value of a layer\nparameter to a dict that has a ``ref`` key. Below an a ``meta.yaml``\nthat refers to a resource (with a logical name ``VPC``) that is\ncontained in another layer (called ``vpc_layer``):\n\n::\n\n ---\n meta:\n description:\n Creates an EC2 instance in the vpc created by the vpc layer\n dependencies:\n - vpc\n parameters:\n vpc:\n description: Physical ID of the VPC where the instance will be created\n value:\n ref: \n parser: layer\n parameters:\n layer_name: vpc_layer\n resource_name: VPC\n\nEvery reference must have a ``parser`` key that identifies the parser\nthat should be used to parse the reference. There are also two optional\nkeys:\n\n- ``parameters``: allows you to pass parameters to the reference\n parser. You can pass either named parameters (as a dict) or\n positional arguments (as a list).\n\n- ``priority``: the parsing priority. Parameters with a lower value in\n ``priority`` will be parsed before parameters with a higher value.\n This allows some reference parsers to refer internally to other\n parameters within the same layer. For example, the ``lambda`` parser,\n when parsing templated lambda code, it uses previously parsed layer\n parameters as template parameters.\n\nMore information on the reference parsers that are bundled with humilis\nbelow.\n\nAvailable reference parsers\n---------------------------\n\n``layer_resource`` references\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n``layer_resource`` references allow you to refer to the physical ID of a\nresource that is part of another layer.\n\n**Parameters**:\n\n- ``layer_name``: The name of the layer you are referring to\n- ``resource_name``: The logical name of the layer resource\n\n**Example**:\n\nConsider the following environment definition:\n\n::\n\n ---\n my-environment:\n description:\n Creates a VPC with a NAT in the public subnet\n layers:\n - {layer: vpc}\n - {layer: nat}\n\nObviously the ``nat`` layer that takes care of deploying the NAT in the\npublic subnet will need to know the physical ID of that subnet. You\nachieve this by declaring a ``layer_resource`` reference in the\n``meta.yaml`` for the ``nat`` layer:\n\n::\n\n ---\n meta:\n description:\n Creates a managed NAT in the public subnet of the NAT layer\n parameters:\n subnet_id:\n description:\n The physical ID of the subnet where the NAT will be placed\n value:\n ref:\n parser: layer_resource\n parameters:\n layer_name: vpc\n # The logical name of the subnet in the vpc layer\n resource_name: PublicSubnet\n\nWhen parsing ``meta.yaml`` humilis will replace this:\n\n::\n\n ref:\n parser: layer_resource\n parameters:\n layer_name: vpc\n # The logical name of the subnet in the vpc layer\n resource_name: PublicSubnet\n\nwith the physical ID you need (something like ``subnet-bafa90cd``). You\ncan then use this physical ID in the ``resources.yaml.j2`` section of\nthe ``nat`` layer:\n\n::\n\n {# Pseudo-content of layers/nat/resources.yaml.j2 #}\n resources:\n {# An Elastic IP reservation that will be associated to the NAT #}\n NatEip:\n Type: 'AWS::EC2::EIP'\n Properties: {}\n {# Custom resource deploying the NAT #}\n NatGateway:\n Type: 'Custom::NatGateway',\n Properties:\n {# The ARN of the Lambda function backing the custom resource #}\n ServiceToken: 'arn:aws:lambda:eu-west-1:XXXX:function:CreateNatGateway'\n {# Here we use the subnet_id reference defined in meta.yaml #}\n SubnetId: {{subnet_id}}\n AllocationId:\n Ref: NatEip\n\n``environment_resource`` references\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n``environment_output`` references allow you to refer to resources that\nbelong to other humilis environments.\n\n**Parameters**:\n\n- ``environment_name``: The name of the environment you are referring\n to\n- ``layer_name``: The name of the layer you are referring to\n- ``resource_name``: The logical name of the layer resource\n\n``layer_output`` references\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n``layer_output`` references allow you to refer to outputs produced by\nanother layer.\n\n**Parameters**:\n\n- ``layer_name``: The name of the layer you are referring to\n- ``output_name``: The logical name of the output parameter\n\nIn general you should prefer using ``layer_output`` references over\n``layer_resource`` references. The output parameters produced by a layer\ndefine an informal *layer interface* that is more likely to remain\nconstant than the logical names of resources within a layer.\n\n``boto3`` references\n~~~~~~~~~~~~~~~~~~~~\n\n``boto3`` references define arbitrary calls to\n`boto3facade `__. The\nlatter is just a simpler facade interface on top of\n`boto3 `__.\n\n**Parameters**:\n\n- ``service``: The AWS service, e.g.\u00a0\\ ``ec2`` or ``cloudformation``.\n Note that only only AWS services that have a facade in\n `boto3facade `__ are\n supported.\n- ``call``: The corresponding facade method,\n e.g.\u00a0\\ ``get_ami_by_name``. The value of this parameter must be a\n dictionary with a ``method`` key (the name of the facade method to\n invoke) and an optional ``args`` key (the parameters to pass to the\n facade method). Best to look at the example below to understand how\n this works.\n- ``output_attribute``: Optional. If provided the reference parser will\n return the value of this attribute from the object returned by the\n facade method.\n\nBelow an example of a layer that uses a ``boto3`` reference:\n\n::\n\n ---\n meta:\n description:\n Creates an EC2 instance using a named AMI\n # More stuff omitted for brevity\n ami:\n description: The AMI to use when launching the EC2 instance\n value:\n ref:\n parser: boto3\n parameters:\n service: ec2\n call:\n method: get_ami_by_name\n args:\n - test-ami\n output_attribute: id\n\n``humilis`` will parse the reference using this code:\n\n::\n\n # Import the Ec2 facade\n from boto3facade.ec2 import Ec2\n\n # Create a facade object\n ec2_facade = Ec2()\n\n # Make the call\n ami = ec2_facade.get_ami_by_name('test-ami')\n\n # Extract the requested attribute\n ref_value = ami.id\n\n``file`` references\n~~~~~~~~~~~~~~~~~~~\n\n``file`` references allow you to refer to a local file. The file will be\nuploaded to S3 and the reference will evaluate to the corresponding S3\npath.\n\n**Parameters**:\n\n- ``path``: The path to the file, relative to the layer root directory.\n\n``lambda`` references\n~~~~~~~~~~~~~~~~~~~~~\n\n``lambda`` references allow you to refer to some Python code in your\nlocal machine. If your code follows some simple conventions ``humilis``\nwill take care of building a `deployment\npackage `__\nfor you, uploading it to S3, and the reference will evaluate to the S3\npath of the deployment package.\n\n**Parameters**:\n\n- ``path``: Path to either a completely self-contained ``.py`` file, or\n to the root directory of your lambda code. In the latter case your\n code needs to follow some simple conventions for this to work. More\n information below.\n\n- ``dependencies``: A list of dependencies to be included in the Lambda\n deployment package. Dependencies may be either pip installable\n packages, or paths to local Python packages or modules, or paths to\n local ``requirements`` files.\n\n**Example**:\n\n::\n\n ref:\n parser: lambda\n parameters:\n # Path to the root directory containing your lambda code\n path: dummy_function\n dependencies:\n # The Lambda code requires Pypi's pyyaml\n - pyyaml\n # It also requires a local package in this path\n - mycode/mypkgdir\n # And this local module\n - mycode/mymodule.py\n\nwhich will evaluate to a S3 path such as:\n\n::\n\n s3://[bucket_name]/[environment_name]/[stage_name]/[func_name]-[commithash].zip\n\n**Code conventions**:\n\nFollowing the example above, the contents of the layer responsible of\ndeploying the ``dummy_function`` lambda may look like this:\n\n::\n\n .\n \u251c\u2500\u2500 dummy_function\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 dummy_function.py\n \u2502\u00a0\u00a0 \u2514\u2500\u2500 setup.py\n \u251c\u2500\u2500 meta.yaml\n \u251c\u2500\u2500 outputs.yaml.j2\n \u2514\u2500\u2500 resources.yaml.j2\n\nBasically all your code needs to be included under directory\n``dummy_function``. In this case there is only one file:\n``dummy_function.py``. External dependencies need to be specified in\nyour ``setup.py``.\n\n``secret`` references\n~~~~~~~~~~~~~~~~~~~~~\n\n``secret`` references retrieve a secret using Python\u2019s\n`keyring `__ module.\n\n**Parameters**:\n\n- ``service``: The name of the service the secret is associated to.\n\n- ``key``: The key (e.g.\u00a0the username) that identifies the secret.\n\n**Example**:\n\n::\n\n ref:\n parser: secret\n parameters: {\"service\": \"mysqldb\", \"key\": \"adminuser\"}\n\nCustom Jinja2 filters\n---------------------\n\nHumilis defines the following `custom Jinja2\nfilters `__:\n\n- ``uuid``: A random UUID. Example: ``{{''|uuid}}``.\n- ``password(length=8)``: A random password. Example:\n ``{{10|password}}``.\n\n.. |Build Status| image:: https://travis-ci.org/humilis/humilis.svg?branch=master\n :target: https://travis-ci.org/humilis/humilis\n.. |PyPI| image:: https://img.shields.io/pypi/v/humilis.svg?style=flat\n :target: https://pypi.python.org/pypi/humilis",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "http://github.com/humilis/humilis",
"keywords": "",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "humilis",
"package_url": "https://pypi.org/project/humilis/",
"platform": "",
"project_url": "https://pypi.org/project/humilis/",
"project_urls": {
"Homepage": "http://github.com/humilis/humilis"
},
"release_url": "https://pypi.org/project/humilis/1.5.7/",
"requires_dist": null,
"requires_python": "",
"summary": "AWS cloudformation-based deployment framework",
"version": "1.5.7"
},
"last_serial": 5804930,
"releases": {
"0.0.1": [
{
"comment_text": "",
"digests": {
"md5": "9c49121915d857ff4c5b09edb867c1ae",
"sha256": "cbd08aa7f58b821ceb1570f0e2b6ca375fd52728c7e7b7000e09e429f378464c"
},
"downloads": -1,
"filename": "humilis-0.0.1.tar.gz",
"has_sig": false,
"md5_digest": "9c49121915d857ff4c5b09edb867c1ae",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17616,
"upload_time": "2016-01-17T18:55:05",
"url": "https://files.pythonhosted.org/packages/30/8f/f6a0d95926c59b85101e4dc53e7c37970b21b13b995d412c08c9fd660ea8/humilis-0.0.1.tar.gz"
}
],
"0.0.2": [
{
"comment_text": "",
"digests": {
"md5": "1346e6f544f50b4388ec4907dd93e552",
"sha256": "9d10f6cb338b2c02b7ad1038c2a11a7baa3fbcfb660e2018b4da4216a6f4aa07"
},
"downloads": -1,
"filename": "humilis-0.0.2.tar.gz",
"has_sig": false,
"md5_digest": "1346e6f544f50b4388ec4907dd93e552",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 20490,
"upload_time": "2016-01-17T18:57:23",
"url": "https://files.pythonhosted.org/packages/14/5a/6cfd2edc46ca7beb0faaa65c2f62b036c7302731519ae9060a0fdd0896da/humilis-0.0.2.tar.gz"
}
],
"0.0.3": [
{
"comment_text": "",
"digests": {
"md5": "1ab11b2513adfd038aa3a9b8decf7632",
"sha256": "5f37dca20eb10e0e42afd4d38fa47a3518ccb96e8034019e57f2478d8b2119aa"
},
"downloads": -1,
"filename": "humilis-0.0.3.tar.gz",
"has_sig": false,
"md5_digest": "1ab11b2513adfd038aa3a9b8decf7632",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 20547,
"upload_time": "2016-01-17T19:59:48",
"url": "https://files.pythonhosted.org/packages/b3/45/505b66f24a3a6a483f17f3c0baff934535942827dce034f86c8da9158580/humilis-0.0.3.tar.gz"
}
],
"0.0.4": [
{
"comment_text": "",
"digests": {
"md5": "28d4b2156194ff79187f21fb1ca4e455",
"sha256": "69252ef9fa271d1ecaec012b759ecd3c6418d60a7312d1ebe10f89d85822c91c"
},
"downloads": -1,
"filename": "humilis-0.0.4.tar.gz",
"has_sig": false,
"md5_digest": "28d4b2156194ff79187f21fb1ca4e455",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 20563,
"upload_time": "2016-01-17T20:42:38",
"url": "https://files.pythonhosted.org/packages/87/8e/d05a6000bd7931f85d7113890cc435eb0a75e266cd5479bebc18999a6d66/humilis-0.0.4.tar.gz"
}
],
"0.0.5": [
{
"comment_text": "",
"digests": {
"md5": "e6be1505162be5ab0b15ec0465bafc71",
"sha256": "6c9fb0f96574741aa05b06173f4c0a1455b5bd0e32933cd08a8f884facce47eb"
},
"downloads": -1,
"filename": "humilis-0.0.5.tar.gz",
"has_sig": false,
"md5_digest": "e6be1505162be5ab0b15ec0465bafc71",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 20505,
"upload_time": "2016-01-17T20:46:07",
"url": "https://files.pythonhosted.org/packages/7f/c1/732be16077675476b42a30aef84d34dac6a0ad0d307c2796189f8b70fe69/humilis-0.0.5.tar.gz"
}
],
"0.0.7": [
{
"comment_text": "",
"digests": {
"md5": "851aaec84a1ec7b46fdf8e87a6ce2be5",
"sha256": "8ed0f50c063baad711c341ca48f6d2ed02125058c8fc4ac77ad957806b97c3a3"
},
"downloads": -1,
"filename": "humilis-0.0.7.tar.gz",
"has_sig": false,
"md5_digest": "851aaec84a1ec7b46fdf8e87a6ce2be5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 20815,
"upload_time": "2016-01-18T21:16:16",
"url": "https://files.pythonhosted.org/packages/3c/7d/158a11a61915e87e53d533001b8786ba734e29588bd149d88b43281bab6b/humilis-0.0.7.tar.gz"
}
],
"0.0.8": [
{
"comment_text": "",
"digests": {
"md5": "cf4e774ae2466899288355a311bf911b",
"sha256": "1c7ba74c3da9fa71cbfd27ed64c45061f472ae7e90a767dd2df51d1b14f40238"
},
"downloads": -1,
"filename": "humilis-0.0.8.tar.gz",
"has_sig": false,
"md5_digest": "cf4e774ae2466899288355a311bf911b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22902,
"upload_time": "2016-01-19T12:18:02",
"url": "https://files.pythonhosted.org/packages/dd/7d/500f154942148baf2b78035a2fe2e2523b821651842f82cade2d667dc550/humilis-0.0.8.tar.gz"
}
],
"0.0.9": [
{
"comment_text": "",
"digests": {
"md5": "561d8bf57e80c74c135c9c0197909b45",
"sha256": "3d02e3295cafa90ff5b7a56d48803afa762da04cc67191b2e95110aeeba3f5d4"
},
"downloads": -1,
"filename": "humilis-0.0.9.tar.gz",
"has_sig": false,
"md5_digest": "561d8bf57e80c74c135c9c0197909b45",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22911,
"upload_time": "2016-01-19T12:20:22",
"url": "https://files.pythonhosted.org/packages/c7/56/62f0a3b97a1b5412d263ce84b7c38adb7ba8dd3088c5c382d8bb97599611/humilis-0.0.9.tar.gz"
}
],
"0.1.0": [
{
"comment_text": "",
"digests": {
"md5": "985a5b206d1bdfc7ec9e1bd275579dad",
"sha256": "c96fac3efe056d9bb68f69ad6de1c0d1f14725f18df1b71483570ad872dd0947"
},
"downloads": -1,
"filename": "humilis-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "985a5b206d1bdfc7ec9e1bd275579dad",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22905,
"upload_time": "2016-01-19T12:23:45",
"url": "https://files.pythonhosted.org/packages/23/9f/24e7bf4118048f33f85b4b597bdac46ccc76d8df045e4344e8105cd77b88/humilis-0.1.0.tar.gz"
}
],
"0.1.1": [
{
"comment_text": "",
"digests": {
"md5": "77f579322576eafa491785e984376980",
"sha256": "d1864f5ee71637398012eff166d44a17a21a8b00b05f49c4a4269488377b51db"
},
"downloads": -1,
"filename": "humilis-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "77f579322576eafa491785e984376980",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22910,
"upload_time": "2016-01-19T15:41:44",
"url": "https://files.pythonhosted.org/packages/d4/a8/41be5112d4e1d7de70263257b03f2333dff901de87b8876cfa313979a2e1/humilis-0.1.1.tar.gz"
}
],
"0.1.2": [
{
"comment_text": "",
"digests": {
"md5": "e481a3b2327cb211090cbd502d5a0b75",
"sha256": "ae3389676bc9eea09be999b24ba7367f07720c5db91fcfa58cb660324d509229"
},
"downloads": -1,
"filename": "humilis-0.1.2.tar.gz",
"has_sig": false,
"md5_digest": "e481a3b2327cb211090cbd502d5a0b75",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22978,
"upload_time": "2016-01-20T13:45:09",
"url": "https://files.pythonhosted.org/packages/6f/8a/81d3aea721276bee8441baa3aff42ecd83056745a34513af99118f0713b0/humilis-0.1.2.tar.gz"
}
],
"0.1.3": [
{
"comment_text": "",
"digests": {
"md5": "99903aa991ed4c49670e1a8fcfcf003e",
"sha256": "12bfe838b1f912719eed9f66502c7df8f79e7623cafbbfc5a66cbffa66c204de"
},
"downloads": -1,
"filename": "humilis-0.1.3.tar.gz",
"has_sig": false,
"md5_digest": "99903aa991ed4c49670e1a8fcfcf003e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22985,
"upload_time": "2016-01-21T20:55:25",
"url": "https://files.pythonhosted.org/packages/02/ad/d0f00d8eaf9b24d4e8d02a97a1c85af6fa312e3868bb3d5316e1e72d9ae4/humilis-0.1.3.tar.gz"
}
],
"0.1.4": [
{
"comment_text": "",
"digests": {
"md5": "0208e6fd21825d49018e437799d32823",
"sha256": "5ded819e1e8766ec4145892e6ad0dae5c5c6ce088d29991318e72afe146e5a3a"
},
"downloads": -1,
"filename": "humilis-0.1.4.tar.gz",
"has_sig": false,
"md5_digest": "0208e6fd21825d49018e437799d32823",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22771,
"upload_time": "2016-02-04T10:22:32",
"url": "https://files.pythonhosted.org/packages/b5/92/f30c61edefeba14c0e91e87f74e3696e9570a280f96a16ac944894cde287/humilis-0.1.4.tar.gz"
}
],
"0.1.5": [
{
"comment_text": "",
"digests": {
"md5": "0c4fc03c24b03c7246cf246ed7d79cf0",
"sha256": "278622e40a919e6e8df1da1ea8620409f823d55d9fa303b0a2d6abcccfb635c6"
},
"downloads": -1,
"filename": "humilis-0.1.5.tar.gz",
"has_sig": false,
"md5_digest": "0c4fc03c24b03c7246cf246ed7d79cf0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23555,
"upload_time": "2016-02-06T22:27:44",
"url": "https://files.pythonhosted.org/packages/3f/48/bf513dbc7fb064329a2bd27c0f2099282ce51f9c70ceadb50330254ae98d/humilis-0.1.5.tar.gz"
}
],
"0.1.6": [
{
"comment_text": "",
"digests": {
"md5": "4d4e73363a352d2c8d87fc838346457b",
"sha256": "e77640f52105cebb32a04247b847a26092ba941039858cea9cef75fbcff6d626"
},
"downloads": -1,
"filename": "humilis-0.1.6.tar.gz",
"has_sig": false,
"md5_digest": "4d4e73363a352d2c8d87fc838346457b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23600,
"upload_time": "2016-02-07T10:56:54",
"url": "https://files.pythonhosted.org/packages/94/ab/38fa15dd7a7fa955ce12ce5bb2e04369c9614d82c998f57262e3ee423daf/humilis-0.1.6.tar.gz"
}
],
"0.1.7": [
{
"comment_text": "",
"digests": {
"md5": "f46a741dafb44737dff438f5b2107a2c",
"sha256": "562f1accd552e71735c639b390171073e29e201b2cce046b13fc2f1b9d23a3fc"
},
"downloads": -1,
"filename": "humilis-0.1.7.tar.gz",
"has_sig": false,
"md5_digest": "f46a741dafb44737dff438f5b2107a2c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23712,
"upload_time": "2016-02-07T14:39:13",
"url": "https://files.pythonhosted.org/packages/75/24/a1af0d23f17c22abd93d53fc026fdd7f7b3b5c4753875936b31b681a00ee/humilis-0.1.7.tar.gz"
}
],
"0.1.8": [
{
"comment_text": "",
"digests": {
"md5": "fb9ceac7299988545b0fd318afaecffa",
"sha256": "19e87cecb0e429a3fef91866b8d4c7ca2b540ae8ed6ff2eec41276911a9d774e"
},
"downloads": -1,
"filename": "humilis-0.1.8.tar.gz",
"has_sig": false,
"md5_digest": "fb9ceac7299988545b0fd318afaecffa",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23837,
"upload_time": "2016-02-07T19:33:18",
"url": "https://files.pythonhosted.org/packages/c6/d8/44d84805a32e1af0595f45ba1aec1eb1e5cb9540fa3c7ff66bc3f61e1e0e/humilis-0.1.8.tar.gz"
}
],
"0.1.9": [
{
"comment_text": "",
"digests": {
"md5": "815e388094f3b8d5a948fddda079f349",
"sha256": "9f2d2fcc36652eb3e2995f6893ee22f9fde1dd23c0885abff774adb8fbd40b11"
},
"downloads": -1,
"filename": "humilis-0.1.9.tar.gz",
"has_sig": false,
"md5_digest": "815e388094f3b8d5a948fddda079f349",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23832,
"upload_time": "2016-02-07T20:09:23",
"url": "https://files.pythonhosted.org/packages/c1/f0/71167b8c17ba6b08db21855d2ba132b2c358fccf4a3d3da0c44a772e7432/humilis-0.1.9.tar.gz"
}
],
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "143a8c202a2cb0f21549b6f05c6c88c7",
"sha256": "ff4b26f1032948ea2bd190217404bf75c974ea5081aaf41b846c47f68d4da4df"
},
"downloads": -1,
"filename": "humilis-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "143a8c202a2cb0f21549b6f05c6c88c7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23286,
"upload_time": "2016-02-12T11:53:09",
"url": "https://files.pythonhosted.org/packages/78/fd/018a4afe3ec49a2befc0b8305fa865dacfc34ac561b87ab742b7e4743b44/humilis-0.2.1.tar.gz"
}
],
"0.2.2": [
{
"comment_text": "",
"digests": {
"md5": "f43a7418dbbb57e0f1b2171f3b214af2",
"sha256": "d5500bf77ec116656e81ddc2d9d54186e2e998c00229535ddff4be53e71c73ff"
},
"downloads": -1,
"filename": "humilis-0.2.2.tar.gz",
"has_sig": false,
"md5_digest": "f43a7418dbbb57e0f1b2171f3b214af2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23292,
"upload_time": "2016-02-12T15:11:19",
"url": "https://files.pythonhosted.org/packages/5f/e1/0ea53504f3eaa7edada4c8a0caf72f1dea2da5350524bb3056a6751e2006/humilis-0.2.2.tar.gz"
}
],
"0.2.3": [
{
"comment_text": "",
"digests": {
"md5": "32a778702e7d4c6f08778c5a1c759aa9",
"sha256": "fc5852d8934444d5fcd1e6340e4dbcde5c4fd0410e7dae6cc73aa44e1a5fc61c"
},
"downloads": -1,
"filename": "humilis-0.2.3.tar.gz",
"has_sig": false,
"md5_digest": "32a778702e7d4c6f08778c5a1c759aa9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23318,
"upload_time": "2016-02-14T13:36:14",
"url": "https://files.pythonhosted.org/packages/14/cf/1c6eec7a0f26e72d7f70fac2e9f6b25696bbd2527e52b3eec4e219fa8af5/humilis-0.2.3.tar.gz"
}
],
"0.2.4": [
{
"comment_text": "",
"digests": {
"md5": "7c0044d23df3f4b6b69ef5454ff55ade",
"sha256": "f5719b36053bb72d6ec2ef5cd873654a378201596f7535118c33d0cedcdc8833"
},
"downloads": -1,
"filename": "humilis-0.2.4.tar.gz",
"has_sig": false,
"md5_digest": "7c0044d23df3f4b6b69ef5454ff55ade",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23329,
"upload_time": "2016-02-14T20:10:50",
"url": "https://files.pythonhosted.org/packages/f3/5e/422d4b55983fee35b9de51dd2c399613aa0210a42ceefe74b6011504e9aa/humilis-0.2.4.tar.gz"
}
],
"0.2.5": [
{
"comment_text": "",
"digests": {
"md5": "fadf218778020156391cd03fbf321c7b",
"sha256": "6701c987a3c83a22b53ec691a31ce4d61b4acfeb4b63e9844eb277fbf4c7a6f6"
},
"downloads": -1,
"filename": "humilis-0.2.5.tar.gz",
"has_sig": false,
"md5_digest": "fadf218778020156391cd03fbf321c7b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23429,
"upload_time": "2016-02-19T10:09:30",
"url": "https://files.pythonhosted.org/packages/21/4a/15635f3f21870b4d154c4fdbf4e91db630a1b9a3df6b21c3105d908a2681/humilis-0.2.5.tar.gz"
}
],
"0.2.6": [
{
"comment_text": "",
"digests": {
"md5": "84256948d5a531e3534d2c5be3065f77",
"sha256": "2ad08348dd2052c2aa2f903ca2aecbef6f94e5ae8ca2c11aa6cd2fe426c23149"
},
"downloads": -1,
"filename": "humilis-0.2.6.tar.gz",
"has_sig": false,
"md5_digest": "84256948d5a531e3534d2c5be3065f77",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23586,
"upload_time": "2016-02-28T13:04:17",
"url": "https://files.pythonhosted.org/packages/ea/fd/27a57f4db0ed547fe6b5cc871862067991cfc8ccab3e46bf90f3a4bb36d5/humilis-0.2.6.tar.gz"
}
],
"0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "b759156f07a5f5889d9ffc42c62b5c01",
"sha256": "8a8e3d63d80783465a77edbf161c1690a1544f0bdfb3aa213c2ce1aa7d74e509"
},
"downloads": -1,
"filename": "humilis-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "b759156f07a5f5889d9ffc42c62b5c01",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23025,
"upload_time": "2016-03-06T21:43:28",
"url": "https://files.pythonhosted.org/packages/a2/3b/e96e53e293d697ff60cfbd95c4608ebe81f474f6fbecdaf035a95db07937/humilis-0.3.0.tar.gz"
}
],
"0.3.1": [
{
"comment_text": "",
"digests": {
"md5": "d5cd7f230eeffcf74266ce513e8d7f32",
"sha256": "03804717da58b0bc79e9fc1bca216d32664e4911978f1b5b37f213bd82d35469"
},
"downloads": -1,
"filename": "humilis-0.3.1.tar.gz",
"has_sig": false,
"md5_digest": "d5cd7f230eeffcf74266ce513e8d7f32",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23029,
"upload_time": "2016-03-07T19:17:36",
"url": "https://files.pythonhosted.org/packages/b1/d3/a4b6afa9b8189b86ed0d38c85965dd00d73ad3f9441bb0505dced02d5893/humilis-0.3.1.tar.gz"
}
],
"0.3.2": [
{
"comment_text": "",
"digests": {
"md5": "2f38384b90954cfe43e140483ef15cd1",
"sha256": "4e5b3acdccb572957beb99195ad1d4e5af2bc0e17a3301bfbc85cb2c8331b6e2"
},
"downloads": -1,
"filename": "humilis-0.3.2.tar.gz",
"has_sig": false,
"md5_digest": "2f38384b90954cfe43e140483ef15cd1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23022,
"upload_time": "2016-03-07T19:18:44",
"url": "https://files.pythonhosted.org/packages/f4/00/163f0b643965f14b1c5aadd84a12d4f56bce99639e207397312694bf9305/humilis-0.3.2.tar.gz"
}
],
"0.3.3": [
{
"comment_text": "",
"digests": {
"md5": "818c2234588f1320748d0a8fc18eb344",
"sha256": "f552f3feff59d6659a2ce05c326e689962c3ae1e172469b5f04be7db32f3eb9f"
},
"downloads": -1,
"filename": "humilis-0.3.3.tar.gz",
"has_sig": false,
"md5_digest": "818c2234588f1320748d0a8fc18eb344",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23070,
"upload_time": "2016-03-14T22:42:11",
"url": "https://files.pythonhosted.org/packages/d6/2c/937ecc987f3e3ef2993bdf4cdcf259ee1a06b3713762f2ea60b188b4880f/humilis-0.3.3.tar.gz"
}
],
"0.3.4": [
{
"comment_text": "",
"digests": {
"md5": "eb13ac9ec5076facfc28bbb4fec59648",
"sha256": "704272c32ca089dee0cb9cea6efc95a27f6262e3efcde5286b765371ad0edf51"
},
"downloads": -1,
"filename": "humilis-0.3.4.tar.gz",
"has_sig": false,
"md5_digest": "eb13ac9ec5076facfc28bbb4fec59648",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23074,
"upload_time": "2016-03-15T00:33:50",
"url": "https://files.pythonhosted.org/packages/29/22/942ba902c4b72861425d795cc51f84cb70c5e64540794aa76f5c678a97f4/humilis-0.3.4.tar.gz"
}
],
"0.3.5": [
{
"comment_text": "",
"digests": {
"md5": "e5a2b4e09635a5520f0e7f8bae855b3b",
"sha256": "39544514446e074646d7b083213ae1d4934bdfd7b36a24596fc137632bd9d1dc"
},
"downloads": -1,
"filename": "humilis-0.3.5.tar.gz",
"has_sig": false,
"md5_digest": "e5a2b4e09635a5520f0e7f8bae855b3b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23074,
"upload_time": "2016-03-15T01:07:18",
"url": "https://files.pythonhosted.org/packages/e3/46/4b5716f2141adbec77e8f0553690a34d40e2fc5bfc1625499c338e94df3e/humilis-0.3.5.tar.gz"
}
],
"0.3.6": [
{
"comment_text": "",
"digests": {
"md5": "e81957a367fa2d5bc11b8c5870d835ea",
"sha256": "84f9c6bbb0e8426b2d4517619ef82455cbfb517383a70dd167a1d87dc7e39e74"
},
"downloads": -1,
"filename": "humilis-0.3.6.tar.gz",
"has_sig": false,
"md5_digest": "e81957a367fa2d5bc11b8c5870d835ea",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23309,
"upload_time": "2016-03-19T15:42:56",
"url": "https://files.pythonhosted.org/packages/78/53/8bcf02eff8a163541e335bc796b92f3aeaec55fe7538ac79ee396525b17c/humilis-0.3.6.tar.gz"
}
],
"0.3.7": [
{
"comment_text": "",
"digests": {
"md5": "98765762847b34e5b2e285acd90843ac",
"sha256": "adab324b76661a3636755bc3f2ba2d1440efae1581ee495ca18d71714ce96aad"
},
"downloads": -1,
"filename": "humilis-0.3.7.tar.gz",
"has_sig": false,
"md5_digest": "98765762847b34e5b2e285acd90843ac",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23356,
"upload_time": "2016-03-20T09:10:41",
"url": "https://files.pythonhosted.org/packages/b6/72/62c2b1d89530b7be631c40bf272c61b444d4b6fdefba59b8686bbd1e1737/humilis-0.3.7.tar.gz"
}
],
"0.3.8": [
{
"comment_text": "",
"digests": {
"md5": "fdc93adb53dc10d41e2a469273465f89",
"sha256": "67917538e7a6f953c4c069f3b6b2f7fe003c06a5453c04f13407b026f0ce35ec"
},
"downloads": -1,
"filename": "humilis-0.3.8.tar.gz",
"has_sig": false,
"md5_digest": "fdc93adb53dc10d41e2a469273465f89",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23369,
"upload_time": "2016-03-20T21:47:50",
"url": "https://files.pythonhosted.org/packages/f5/33/e835423d5a4d7aab211968f76fea2091f398da2c2a857955631753c0154c/humilis-0.3.8.tar.gz"
}
],
"0.3.9": [
{
"comment_text": "",
"digests": {
"md5": "5b1e20902861b278f15a6688a50c7d7b",
"sha256": "a693d5931b4fe5a5f608e00cc3cec03d478a38341036ad9e0e55e614f2b16362"
},
"downloads": -1,
"filename": "humilis-0.3.9.tar.gz",
"has_sig": false,
"md5_digest": "5b1e20902861b278f15a6688a50c7d7b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23369,
"upload_time": "2016-03-21T15:28:07",
"url": "https://files.pythonhosted.org/packages/2f/51/8aaae6f441aa5db3a75b153db8336910cc5e35b614f58604dd487f2bc7e9/humilis-0.3.9.tar.gz"
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "1dc8b1b1e31fdce9c223039e26b59bd9",
"sha256": "4785b8ed339e0cfacb5f73292c71a8ffe922b94d414692b8be817929d8993d6f"
},
"downloads": -1,
"filename": "humilis-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "1dc8b1b1e31fdce9c223039e26b59bd9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23692,
"upload_time": "2016-03-31T23:16:28",
"url": "https://files.pythonhosted.org/packages/89/de/091b0bfe33c52ea5e1bfcfa1e17ce6506f0e3f4bb1b3e9afd201dd5dd5f0/humilis-0.4.0.tar.gz"
}
],
"0.4.1": [
{
"comment_text": "",
"digests": {
"md5": "3ebf47b40ad2f5d30b0f94618e798c26",
"sha256": "4f87c592a9414770f8e175a7c0d218e4c5310471c0bb71655abac0e902d1a950"
},
"downloads": -1,
"filename": "humilis-0.4.1.tar.gz",
"has_sig": false,
"md5_digest": "3ebf47b40ad2f5d30b0f94618e798c26",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23695,
"upload_time": "2016-03-31T23:20:15",
"url": "https://files.pythonhosted.org/packages/41/74/0344c7a9f61a3ece083c5f22e595152ff45419cfb017660cb7f8c30f0eb4/humilis-0.4.1.tar.gz"
}
],
"0.4.10": [
{
"comment_text": "",
"digests": {
"md5": "397de09034d838408e896e55c76a29d8",
"sha256": "3e3ce7648be8bf7525edbc1f2f5b6f8daa302b1360b6f22946061f53c06f3bcf"
},
"downloads": -1,
"filename": "humilis-0.4.10.tar.gz",
"has_sig": false,
"md5_digest": "397de09034d838408e896e55c76a29d8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25451,
"upload_time": "2016-05-11T09:33:06",
"url": "https://files.pythonhosted.org/packages/de/5f/f1bcfef5e06f3933f857b4b304bbd0c04b196311dfa6cee5ac81678a99a7/humilis-0.4.10.tar.gz"
}
],
"0.4.11": [
{
"comment_text": "",
"digests": {
"md5": "110ddf092889963d2ac37278f053d681",
"sha256": "6054152a5a4769de9d9cc99972a12a29e3efcb841dabbf296e1e1bcd6d2316fd"
},
"downloads": -1,
"filename": "humilis-0.4.11.tar.gz",
"has_sig": false,
"md5_digest": "110ddf092889963d2ac37278f053d681",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25463,
"upload_time": "2016-06-02T15:17:08",
"url": "https://files.pythonhosted.org/packages/ea/20/14a8b4fae811fdfa248d39b7b394cd4500b7ea0efda006971a1bdf46598b/humilis-0.4.11.tar.gz"
}
],
"0.4.12": [
{
"comment_text": "",
"digests": {
"md5": "8447dc1b5e550399f9fa51d13be2db67",
"sha256": "92aebb9a2186686fe4219dfbabff89415bc4a7d59cd3f7c520b9834955cc8acc"
},
"downloads": -1,
"filename": "humilis-0.4.12.tar.gz",
"has_sig": false,
"md5_digest": "8447dc1b5e550399f9fa51d13be2db67",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25233,
"upload_time": "2016-06-14T12:32:26",
"url": "https://files.pythonhosted.org/packages/b1/0e/0f92e9dc50973426b10056087fb7ae096c2dd6738dc16e34445df936f6b2/humilis-0.4.12.tar.gz"
}
],
"0.4.2": [
{
"comment_text": "",
"digests": {
"md5": "47a327f5f241313744b854be99a219c2",
"sha256": "f8ed3638a1156752a625d322408d2c727de1feceeed827f7f7c3296aa453338f"
},
"downloads": -1,
"filename": "humilis-0.4.2.tar.gz",
"has_sig": false,
"md5_digest": "47a327f5f241313744b854be99a219c2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23887,
"upload_time": "2016-04-01T10:08:57",
"url": "https://files.pythonhosted.org/packages/f6/0c/15223e8ad34987818fa0713791cb6f1cd8d3f14793fe9920b527e19dffa1/humilis-0.4.2.tar.gz"
}
],
"0.4.3": [
{
"comment_text": "",
"digests": {
"md5": "9438a099a5bde4ea85f49efd5f8c26b3",
"sha256": "cee427653182924190df574f7a6f0c5e51f0651203509126e86a30ccaef7bd09"
},
"downloads": -1,
"filename": "humilis-0.4.3.tar.gz",
"has_sig": false,
"md5_digest": "9438a099a5bde4ea85f49efd5f8c26b3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24107,
"upload_time": "2016-04-01T14:02:17",
"url": "https://files.pythonhosted.org/packages/7f/09/8054148f0692ed59da7c8b8fac784b0caa16cd2556e8d20e9317fee1c014/humilis-0.4.3.tar.gz"
}
],
"0.4.4": [
{
"comment_text": "",
"digests": {
"md5": "7a0e10bb8f7a75b32ee3894fd7fba369",
"sha256": "ee832a5406e0adba3316f92e016a2a16d31ea94c662b697baace54316bb45085"
},
"downloads": -1,
"filename": "humilis-0.4.4.tar.gz",
"has_sig": false,
"md5_digest": "7a0e10bb8f7a75b32ee3894fd7fba369",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24119,
"upload_time": "2016-04-27T16:50:17",
"url": "https://files.pythonhosted.org/packages/5d/df/c4e24d0b43865a91bc32a85fd281925b821cc5096a6c4afd3fde4e32fcc9/humilis-0.4.4.tar.gz"
}
],
"0.4.5": [
{
"comment_text": "",
"digests": {
"md5": "04e0caaf1433161a8d5eb474e34c1e04",
"sha256": "43031cf6f8814eb8e5c3d5fc36380081723211ba31e5f6dbea66ae9145d95713"
},
"downloads": -1,
"filename": "humilis-0.4.5.tar.gz",
"has_sig": false,
"md5_digest": "04e0caaf1433161a8d5eb474e34c1e04",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24354,
"upload_time": "2016-04-30T13:24:05",
"url": "https://files.pythonhosted.org/packages/0a/ac/cdb9ee1fd41eaf3923f9855daadb686433603b59c919414b0672fd653b5d/humilis-0.4.5.tar.gz"
}
],
"0.4.7": [
{
"comment_text": "",
"digests": {
"md5": "1a609b9111d2b147fff7492c6fcd65dc",
"sha256": "59644a9c5330b0c2b8303258ccc7fb5152254b0391e3b67d6ec29c4b8e1ae3e6"
},
"downloads": -1,
"filename": "humilis-0.4.7.tar.gz",
"has_sig": false,
"md5_digest": "1a609b9111d2b147fff7492c6fcd65dc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25039,
"upload_time": "2016-05-08T21:10:43",
"url": "https://files.pythonhosted.org/packages/a1/99/29ba1468e658d62bfa52e0e7111cfc4aa2f148404c17a2ac2b80007f5940/humilis-0.4.7.tar.gz"
}
],
"0.4.8": [
{
"comment_text": "",
"digests": {
"md5": "dde0682ab578c84ec476e80b01afe57b",
"sha256": "8b23f32e60f73f79b1ccdeea3c1ea027bf714a24c4a1013e45451ce415e9ec1f"
},
"downloads": -1,
"filename": "humilis-0.4.8.tar.gz",
"has_sig": false,
"md5_digest": "dde0682ab578c84ec476e80b01afe57b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25367,
"upload_time": "2016-05-09T21:09:20",
"url": "https://files.pythonhosted.org/packages/66/39/664889257f1b9b5e712a2238fbc34d2d37169e8e9d9edc1c39323ae8173f/humilis-0.4.8.tar.gz"
}
],
"0.4.9": [
{
"comment_text": "",
"digests": {
"md5": "8c389de730c48611bcb652dc0bc32067",
"sha256": "63188ae02d6befaa955859723314b795e12564918eb0c9d60a6725dc12d91d96"
},
"downloads": -1,
"filename": "humilis-0.4.9.tar.gz",
"has_sig": false,
"md5_digest": "8c389de730c48611bcb652dc0bc32067",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25439,
"upload_time": "2016-05-11T09:29:42",
"url": "https://files.pythonhosted.org/packages/6e/86/423b192fd091a7b9db643687c46e44da9db02b3cc8c50283a570678d3dd1/humilis-0.4.9.tar.gz"
}
],
"0.5.0": [
{
"comment_text": "",
"digests": {
"md5": "d36d537af47f83df72cf1c0482dec26c",
"sha256": "b079ee034d780434851243392a04311dd0f79a7564baf9f2bdc8212bbf95a1dc"
},
"downloads": -1,
"filename": "humilis-0.5.0.tar.gz",
"has_sig": false,
"md5_digest": "d36d537af47f83df72cf1c0482dec26c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25673,
"upload_time": "2016-06-14T21:41:08",
"url": "https://files.pythonhosted.org/packages/58/0f/2b4e5855c61ba2a871bc8e70d1297bbba35908f89e879b448b3cd566aac9/humilis-0.5.0.tar.gz"
}
],
"0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "f68d3c8b73ba34bdf50b8e2b604e9918",
"sha256": "330f86c1b50e823b34b908de214572bbe63131b004679122247f523cb0133c22"
},
"downloads": -1,
"filename": "humilis-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "f68d3c8b73ba34bdf50b8e2b604e9918",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25768,
"upload_time": "2016-06-25T21:41:28",
"url": "https://files.pythonhosted.org/packages/05/a6/b875e7db4d7c2c823dbc22df78cbf7cb5050423a6c00b8da82fb0425dcdd/humilis-0.6.0.tar.gz"
}
],
"0.6.1": [
{
"comment_text": "",
"digests": {
"md5": "6ce953553433be6417c5b956e7698d05",
"sha256": "9d696e1041bd974b17d270847b28046fc9425c8de7ddc4fa987ea7520218fd94"
},
"downloads": -1,
"filename": "humilis-0.6.1.tar.gz",
"has_sig": false,
"md5_digest": "6ce953553433be6417c5b956e7698d05",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25698,
"upload_time": "2016-07-02T07:04:15",
"url": "https://files.pythonhosted.org/packages/28/f4/8ad140b4db8240e4e58e5d5e202d8c0f33806ca2a3c21e7fabb15b21ca03/humilis-0.6.1.tar.gz"
}
],
"0.6.2": [
{
"comment_text": "",
"digests": {
"md5": "7f93dce8fbd7b32080edd370b78266ac",
"sha256": "1267099e37fd0ac7def74cf49f2ebe63f8c8e084e503ec8af32a9384fce56e7c"
},
"downloads": -1,
"filename": "humilis-0.6.2.tar.gz",
"has_sig": false,
"md5_digest": "7f93dce8fbd7b32080edd370b78266ac",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25717,
"upload_time": "2016-07-02T15:23:07",
"url": "https://files.pythonhosted.org/packages/30/e2/ee9e4d4d35e0344d4faa67eeeaa16ae9ffa5ded3ee091363830ce5a69eab/humilis-0.6.2.tar.gz"
}
],
"0.6.3": [
{
"comment_text": "",
"digests": {
"md5": "708dbdd42537bc7ec173d76235785324",
"sha256": "d67067dfa21d5860296bdb998dd5345a51c9a38e06bc02ab5d4d746faf0ff8c2"
},
"downloads": -1,
"filename": "humilis-0.6.3.tar.gz",
"has_sig": false,
"md5_digest": "708dbdd42537bc7ec173d76235785324",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25716,
"upload_time": "2016-07-02T22:31:03",
"url": "https://files.pythonhosted.org/packages/c3/39/d5ec06a436419dc40314ccecaf6cc36e43b876cfed165da8cf4306d47818/humilis-0.6.3.tar.gz"
}
],
"0.6.4": [
{
"comment_text": "",
"digests": {
"md5": "197992695ba0847cb7a86fc159260c88",
"sha256": "e92ac56edd0ed9ffe1b5b3322ade38cad4082e516499aa02bfeef1d966e8fa11"
},
"downloads": -1,
"filename": "humilis-0.6.4.tar.gz",
"has_sig": false,
"md5_digest": "197992695ba0847cb7a86fc159260c88",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25699,
"upload_time": "2016-07-03T18:15:14",
"url": "https://files.pythonhosted.org/packages/6c/2f/c7397b45f646b1f064b9d1cf1aa9e19f0d51ed597f01821b70da4f4601a5/humilis-0.6.4.tar.gz"
}
],
"0.6.5": [
{
"comment_text": "",
"digests": {
"md5": "b7ca3982a5a2fdf3a478fdab85552284",
"sha256": "9e9f08d8f7797840ca9f171aeca08ffd97058fa1200c66e38c091056c90cc3fc"
},
"downloads": -1,
"filename": "humilis-0.6.5.tar.gz",
"has_sig": false,
"md5_digest": "b7ca3982a5a2fdf3a478fdab85552284",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25724,
"upload_time": "2016-07-04T12:44:17",
"url": "https://files.pythonhosted.org/packages/d5/fa/34b2df11fd499d74c88739aff337ebdf3ea9c1f16768f470e628fa881d56/humilis-0.6.5.tar.gz"
}
],
"0.6.6": [
{
"comment_text": "",
"digests": {
"md5": "91a2b9a139ff70f4255a5f11483d19df",
"sha256": "3bd709ade01cffd54966c64540dc3ab665632a041145ce2111681dbfd7c0567b"
},
"downloads": -1,
"filename": "humilis-0.6.6.tar.gz",
"has_sig": false,
"md5_digest": "91a2b9a139ff70f4255a5f11483d19df",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25754,
"upload_time": "2016-07-18T10:22:07",
"url": "https://files.pythonhosted.org/packages/dd/34/5d8913b75726f453dd636484b35c2cbb71ab6dd0b0516152a383de4e93b5/humilis-0.6.6.tar.gz"
}
],
"0.6.7": [
{
"comment_text": "",
"digests": {
"md5": "f3ea037a6c0f68100cb7c8e504607b46",
"sha256": "43fb0f8b73a1de187a1908d3d024f9cba4748d00597f3f61a19219e9ece6907b"
},
"downloads": -1,
"filename": "humilis-0.6.7.tar.gz",
"has_sig": false,
"md5_digest": "f3ea037a6c0f68100cb7c8e504607b46",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25886,
"upload_time": "2016-08-04T08:58:49",
"url": "https://files.pythonhosted.org/packages/e4/32/b2f65fae31a79695d6d67d25ff60f8e027e3a555bc18ecff13c9c9b03829/humilis-0.6.7.tar.gz"
}
],
"0.6.8": [
{
"comment_text": "",
"digests": {
"md5": "26f93112d7f3804e4125efa491d273c6",
"sha256": "031aefa0fb989ceb762aa7f8bfec4b922c8832d0540aefc75d75d28e461103c0"
},
"downloads": -1,
"filename": "humilis-0.6.8.tar.gz",
"has_sig": false,
"md5_digest": "26f93112d7f3804e4125efa491d273c6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25896,
"upload_time": "2016-08-05T14:34:08",
"url": "https://files.pythonhosted.org/packages/6e/fc/05a8ee64be17fabdec41995028568845d5528dc8b2988ad3a8f10874d8d0/humilis-0.6.8.tar.gz"
}
],
"0.6.9": [
{
"comment_text": "",
"digests": {
"md5": "f6ed5274265e86ce630158ca7663fe52",
"sha256": "bd3f7d9274383121992f423b02650cef030d00b30ff1393496b1f51c4f76d4c1"
},
"downloads": -1,
"filename": "humilis-0.6.9.tar.gz",
"has_sig": false,
"md5_digest": "f6ed5274265e86ce630158ca7663fe52",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25908,
"upload_time": "2016-09-15T09:43:17",
"url": "https://files.pythonhosted.org/packages/05/fe/698fa614cf7c6573d40c3dd29f659ab88a3a1f0254a2bcce56728cfcc924/humilis-0.6.9.tar.gz"
}
],
"0.7.0": [
{
"comment_text": "",
"digests": {
"md5": "7bf2b1367e020ef1a020ea196a01e180",
"sha256": "6218c23f897a9fd5e76033b57eb57a52883fdf21df3274adf2065a939df329f2"
},
"downloads": -1,
"filename": "humilis-0.7.0.tar.gz",
"has_sig": false,
"md5_digest": "7bf2b1367e020ef1a020ea196a01e180",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25961,
"upload_time": "2016-09-24T12:13:43",
"url": "https://files.pythonhosted.org/packages/d2/4f/77d152f83fcc9acfd04227384a4a9819bc6b785109b1bc280a1cdd07b5db/humilis-0.7.0.tar.gz"
}
],
"0.7.1": [
{
"comment_text": "",
"digests": {
"md5": "3c929d0b28bfe0f7d8e4b275a69ddcc9",
"sha256": "4349631b5a151a9047b5db6e448ea607c8dc43b958ec23e572db2b37a1ecd392"
},
"downloads": -1,
"filename": "humilis-0.7.1.tar.gz",
"has_sig": false,
"md5_digest": "3c929d0b28bfe0f7d8e4b275a69ddcc9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25981,
"upload_time": "2016-10-01T11:14:05",
"url": "https://files.pythonhosted.org/packages/cd/74/ad5637238dbcf449fac02b74bbe5e1d466b101017d4b17aa3d143d34fb13/humilis-0.7.1.tar.gz"
}
],
"0.7.2": [
{
"comment_text": "",
"digests": {
"md5": "912d7192920f1384f588eb99dfc844df",
"sha256": "9948593fb13872dd22000620b2c7aa7cfd34f9b1bec0e7a71d35e0b600275f1c"
},
"downloads": -1,
"filename": "humilis-0.7.2.tar.gz",
"has_sig": false,
"md5_digest": "912d7192920f1384f588eb99dfc844df",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26033,
"upload_time": "2016-10-01T13:44:34",
"url": "https://files.pythonhosted.org/packages/e3/aa/21104f1175d811aa88920b370eaefa3f89012138041e9d46237aae1ff984/humilis-0.7.2.tar.gz"
}
],
"0.7.3": [
{
"comment_text": "",
"digests": {
"md5": "83c9169df534a02e404bf873f26f5648",
"sha256": "dd4f18ce0a065d0987921ed36ebbe2b1e888c72da0240f6e1b1ab1e8f6dc8f23"
},
"downloads": -1,
"filename": "humilis-0.7.3.tar.gz",
"has_sig": false,
"md5_digest": "83c9169df534a02e404bf873f26f5648",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26041,
"upload_time": "2016-10-01T15:37:22",
"url": "https://files.pythonhosted.org/packages/d8/20/84a8b2d2589ec40a7991fb9ab8495182a9e9280b8e3e137bf7fd8d00e65a/humilis-0.7.3.tar.gz"
}
],
"0.7.4": [
{
"comment_text": "",
"digests": {
"md5": "817382df74f6d3e29b48babb5fb77a67",
"sha256": "12aa2408651bc6da3881f8775091ffde0d3aa539cfff607a1a2ec0c5d2a8f17f"
},
"downloads": -1,
"filename": "humilis-0.7.4.tar.gz",
"has_sig": false,
"md5_digest": "817382df74f6d3e29b48babb5fb77a67",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26070,
"upload_time": "2016-10-01T19:20:46",
"url": "https://files.pythonhosted.org/packages/07/7b/2879097fbec7fb558361fc8e75cfb62f8e275f889d3b01f24426d372d192/humilis-0.7.4.tar.gz"
}
],
"0.7.5": [
{
"comment_text": "",
"digests": {
"md5": "bfa137df99647312e3c536c312f1e7fb",
"sha256": "2a97809b9b3f6ad800dde14b2c81d06233c1ab9ad4feb913a20f8eeeafd24c8e"
},
"downloads": -1,
"filename": "humilis-0.7.5.tar.gz",
"has_sig": false,
"md5_digest": "bfa137df99647312e3c536c312f1e7fb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26072,
"upload_time": "2016-10-01T20:59:43",
"url": "https://files.pythonhosted.org/packages/80/cd/1ba613c9b8df0b0b89030a78608939214b68c33f6b1afc7d368bc027e5f1/humilis-0.7.5.tar.gz"
}
],
"0.7.6": [
{
"comment_text": "",
"digests": {
"md5": "583febc9451f176b1e32c33039cf514d",
"sha256": "aa9e2b4eee6211178e0f60232436a269b2255054415166ba2d40024b2f3ade7d"
},
"downloads": -1,
"filename": "humilis-0.7.6.tar.gz",
"has_sig": false,
"md5_digest": "583febc9451f176b1e32c33039cf514d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26101,
"upload_time": "2016-10-01T22:24:31",
"url": "https://files.pythonhosted.org/packages/b2/b8/37b5fde9d0517187aa2891277cb01656d0a4fd7d79f67a2a484f4ba408a8/humilis-0.7.6.tar.gz"
}
],
"0.7.7": [
{
"comment_text": "",
"digests": {
"md5": "e0ef82f1a3d05bc9e8d7af56def87a5b",
"sha256": "ca57412a98b2448f40e3b7e111e5c4ad8f372138ff27ff7f8625ae5adcfb7b6d"
},
"downloads": -1,
"filename": "humilis-0.7.7.tar.gz",
"has_sig": false,
"md5_digest": "e0ef82f1a3d05bc9e8d7af56def87a5b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26107,
"upload_time": "2016-10-08T15:27:30",
"url": "https://files.pythonhosted.org/packages/12/d0/2081f5a4546f724394cfeb2ff5afc7feeb69d0deed7f5611230da0f027f2/humilis-0.7.7.tar.gz"
}
],
"0.7.8": [
{
"comment_text": "",
"digests": {
"md5": "9cf8828f63a6f8af1647f1dbd195be75",
"sha256": "08f7df800872f05ba474d0b10d8384f6e80efa5a24a3b0b6c68d327b9632ded2"
},
"downloads": -1,
"filename": "humilis-0.7.8.tar.gz",
"has_sig": false,
"md5_digest": "9cf8828f63a6f8af1647f1dbd195be75",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26147,
"upload_time": "2016-10-08T18:02:25",
"url": "https://files.pythonhosted.org/packages/3f/c8/74632681cd36244dfa85b17519e524a3ed115c164320fc4695790fcb9552/humilis-0.7.8.tar.gz"
}
],
"0.7.9": [
{
"comment_text": "",
"digests": {
"md5": "58d46c461726b0473251985e346041ba",
"sha256": "78fe6261a4f83df04ceab44aee917305fb50b32ff2c0a87d80c2ef1c7a288e10"
},
"downloads": -1,
"filename": "humilis-0.7.9.tar.gz",
"has_sig": false,
"md5_digest": "58d46c461726b0473251985e346041ba",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26086,
"upload_time": "2016-10-08T19:16:08",
"url": "https://files.pythonhosted.org/packages/47/96/deab98a3318a0793ee94c767ad9ccb34c65debdad76e8ff7dff3c73fe4fe/humilis-0.7.9.tar.gz"
}
],
"0.8.0": [
{
"comment_text": "",
"digests": {
"md5": "b4b9a44f68f96053cbb347dc73f520b6",
"sha256": "a24006bb03705853c9004d292038f2a423fb805676578cbc190c177c41f61a70"
},
"downloads": -1,
"filename": "humilis-0.8.0.tar.gz",
"has_sig": false,
"md5_digest": "b4b9a44f68f96053cbb347dc73f520b6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26086,
"upload_time": "2016-10-08T21:13:35",
"url": "https://files.pythonhosted.org/packages/b7/f1/99b33e0f0e4efdd4d1ee36503f18c4fc7dbe0d3746f115d363e6493b6c40/humilis-0.8.0.tar.gz"
}
],
"0.8.1": [
{
"comment_text": "",
"digests": {
"md5": "c482dc5ca9792ac5ec3d206ed2c9efc1",
"sha256": "5f2b648b65b9aa226c2d46720f6fd107fd194cfbc2f797cc8882d54d801c5943"
},
"downloads": -1,
"filename": "humilis-0.8.1.tar.gz",
"has_sig": false,
"md5_digest": "c482dc5ca9792ac5ec3d206ed2c9efc1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26115,
"upload_time": "2016-10-13T20:01:16",
"url": "https://files.pythonhosted.org/packages/8a/43/5fe52310a51e94fd04d32ac0ca074e64e78a5424690c435179e6530907db/humilis-0.8.1.tar.gz"
}
],
"0.8.2": [
{
"comment_text": "",
"digests": {
"md5": "f25d383599facd1e34f9e8f8a431b3ef",
"sha256": "bb0ce6636330590ccf57da69bc02f6675f18ef16e42dc850c7045d388866c69a"
},
"downloads": -1,
"filename": "humilis-0.8.2.tar.gz",
"has_sig": false,
"md5_digest": "f25d383599facd1e34f9e8f8a431b3ef",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26088,
"upload_time": "2016-10-13T20:41:39",
"url": "https://files.pythonhosted.org/packages/95/8d/dd1b0bdfc36bf8db9e2b4093dd01ff3e0df9744835e192e93dc57ce0ca80/humilis-0.8.2.tar.gz"
}
],
"0.8.3": [
{
"comment_text": "",
"digests": {
"md5": "926032a31d539d268ae989abf69cdac2",
"sha256": "5fa6f550d00044e7deb703baab104e8467eba042541ed1de5e644b169097bef3"
},
"downloads": -1,
"filename": "humilis-0.8.3.tar.gz",
"has_sig": false,
"md5_digest": "926032a31d539d268ae989abf69cdac2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26111,
"upload_time": "2016-10-18T15:20:13",
"url": "https://files.pythonhosted.org/packages/8b/c0/247e950c7024d68ec805287a5adbe5885519c0ad489037619661e956974b/humilis-0.8.3.tar.gz"
}
],
"0.8.4": [
{
"comment_text": "",
"digests": {
"md5": "373e81aa4ee42225b411d6e3ba0e944c",
"sha256": "a39984ad67d161ceeccdaaedf8224072b8ecca100fb4131ddccc6a0c565d3071"
},
"downloads": -1,
"filename": "humilis-0.8.4.tar.gz",
"has_sig": false,
"md5_digest": "373e81aa4ee42225b411d6e3ba0e944c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26197,
"upload_time": "2016-10-19T13:39:44",
"url": "https://files.pythonhosted.org/packages/ab/fd/75d9900c9ceea8175d2f8dfdb10362ab7a9317e76be52488fff53614f238/humilis-0.8.4.tar.gz"
}
],
"0.8.5": [
{
"comment_text": "",
"digests": {
"md5": "b70d720d9f0b710e983ba6c7cc63da0b",
"sha256": "21483a25ab11c7d0a526761fe955fa68d74e79b888723709263ad663c61b80f6"
},
"downloads": -1,
"filename": "humilis-0.8.5.tar.gz",
"has_sig": false,
"md5_digest": "b70d720d9f0b710e983ba6c7cc63da0b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26203,
"upload_time": "2016-10-19T15:11:56",
"url": "https://files.pythonhosted.org/packages/7d/4f/88c676b12ffdf7b73f7a6b7d23114eb2167777673d8cc814f74add3bf17d/humilis-0.8.5.tar.gz"
}
],
"0.8.6": [
{
"comment_text": "",
"digests": {
"md5": "22920b38631a547555a4d219f4ff3c40",
"sha256": "ffada5078439552d46099d196afa619874165d13ed5bfcdd4f2dd0f47fb05ce4"
},
"downloads": -1,
"filename": "humilis-0.8.6.tar.gz",
"has_sig": false,
"md5_digest": "22920b38631a547555a4d219f4ff3c40",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26185,
"upload_time": "2016-10-19T15:23:44",
"url": "https://files.pythonhosted.org/packages/d5/86/8d518455fe5932ef16719a35e357b475abd600c8dc1fb5b7761137db7929/humilis-0.8.6.tar.gz"
}
],
"0.8.7": [
{
"comment_text": "",
"digests": {
"md5": "a7de2aa3fce7715429c09f859951208a",
"sha256": "bc0923e1eb1bdaf793c0263b588f83702fa018c613c3b3409da0f1678e2c6eb9"
},
"downloads": -1,
"filename": "humilis-0.8.7.tar.gz",
"has_sig": false,
"md5_digest": "a7de2aa3fce7715429c09f859951208a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26187,
"upload_time": "2016-10-19T17:04:58",
"url": "https://files.pythonhosted.org/packages/f0/d1/92c7313286c1d56470e2f856f65058e6dfc05db53d53cdf47ebde51ae9cf/humilis-0.8.7.tar.gz"
}
],
"0.8.8": [
{
"comment_text": "",
"digests": {
"md5": "b39d2110ae270d2445c6d40b3612b8d4",
"sha256": "655f916fd62f51adebf19aec09d315fb9783f29ade34dd19389ad09b738e8cad"
},
"downloads": -1,
"filename": "humilis-0.8.8.tar.gz",
"has_sig": false,
"md5_digest": "b39d2110ae270d2445c6d40b3612b8d4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26202,
"upload_time": "2016-10-19T17:16:47",
"url": "https://files.pythonhosted.org/packages/50/43/cc98ea3ed42f3df15b52cb3c449610d141a0924da31318c73a4d99bc5db1/humilis-0.8.8.tar.gz"
}
],
"0.8.9": [
{
"comment_text": "",
"digests": {
"md5": "bcb5ea2aab6e02d551ed56cc14fd4de3",
"sha256": "8712d4fee625286ca74ea905a32e13272b2f15a05a428624ece3e321102fa655"
},
"downloads": -1,
"filename": "humilis-0.8.9.tar.gz",
"has_sig": false,
"md5_digest": "bcb5ea2aab6e02d551ed56cc14fd4de3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26216,
"upload_time": "2016-10-19T18:06:27",
"url": "https://files.pythonhosted.org/packages/ca/c1/c2c5dada397ed7ef16f03601a4620823d8df0794c655fc195e14ae7dbc23/humilis-0.8.9.tar.gz"
}
],
"0.9.0": [
{
"comment_text": "",
"digests": {
"md5": "280ae42f8b11a9bce909b7dda684f640",
"sha256": "167a5d58e43584cbb073130a54b4b107d6643789f2f7b89baf80b0b5a1bc1156"
},
"downloads": -1,
"filename": "humilis-0.9.0.tar.gz",
"has_sig": false,
"md5_digest": "280ae42f8b11a9bce909b7dda684f640",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26254,
"upload_time": "2016-10-19T18:21:09",
"url": "https://files.pythonhosted.org/packages/cd/be/3d5f3ee70f2c833f611e3511b93e0bd1f2923207ebda479d73c2621871e1/humilis-0.9.0.tar.gz"
}
],
"0.9.1": [
{
"comment_text": "",
"digests": {
"md5": "e451e841c900f44c26f6570fa6af5417",
"sha256": "d2113e06681bc6a025fc72595d1b6c9614a4f99043e8520ac91134590f6d5e18"
},
"downloads": -1,
"filename": "humilis-0.9.1.tar.gz",
"has_sig": false,
"md5_digest": "e451e841c900f44c26f6570fa6af5417",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26258,
"upload_time": "2016-10-19T18:29:56",
"url": "https://files.pythonhosted.org/packages/b9/1f/6ee7863ceccdae838b626ede0003e480cfb63f45713fac9da73ae4911fb6/humilis-0.9.1.tar.gz"
}
],
"0.9.2": [
{
"comment_text": "",
"digests": {
"md5": "a6878b45530868d258418bd224634f1c",
"sha256": "6167d1209b377bad4a5ff65be6bd09743dd32c93324e9e1665751d34ede0d893"
},
"downloads": -1,
"filename": "humilis-0.9.2.tar.gz",
"has_sig": false,
"md5_digest": "a6878b45530868d258418bd224634f1c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26260,
"upload_time": "2016-11-06T13:20:59",
"url": "https://files.pythonhosted.org/packages/fa/fa/95c3bc921c25fb33a4011ba145a292e6f6b6b21e3151ed16907b9022af61/humilis-0.9.2.tar.gz"
}
],
"0.9.3": [
{
"comment_text": "",
"digests": {
"md5": "8fcaaf480e17d15e9d711410de3f5dc3",
"sha256": "e37053bdfc5973edbbc79b85e19e8aa68155a703c41384d0a8ef9ca7b2bb2700"
},
"downloads": -1,
"filename": "humilis-0.9.3.tar.gz",
"has_sig": false,
"md5_digest": "8fcaaf480e17d15e9d711410de3f5dc3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26310,
"upload_time": "2016-11-06T13:24:46",
"url": "https://files.pythonhosted.org/packages/3b/7d/6da532d303618d80c816acdc922a312b32c9186b0f2f2ac360822de87b11/humilis-0.9.3.tar.gz"
}
],
"0.9.4": [
{
"comment_text": "",
"digests": {
"md5": "b4cdc1251b0297b381d62d30515d87bf",
"sha256": "7fb7fa9655d8376bf35b34bccf8d3681c767592dbb78f5dceb184658bfd0e915"
},
"downloads": -1,
"filename": "humilis-0.9.4.tar.gz",
"has_sig": false,
"md5_digest": "b4cdc1251b0297b381d62d30515d87bf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26332,
"upload_time": "2016-11-12T22:50:29",
"url": "https://files.pythonhosted.org/packages/17/48/56c82ed5e2a39bc9c5189087a79c81f1ed731a355e66162829cf929771dd/humilis-0.9.4.tar.gz"
}
],
"0.9.5": [
{
"comment_text": "",
"digests": {
"md5": "21d77546b03914b9c15b76f14df112d0",
"sha256": "b3b1713e77adf6b063ebe57ac13162fb7813a3eee82af95702b0c15787e09f50"
},
"downloads": -1,
"filename": "humilis-0.9.5.tar.gz",
"has_sig": false,
"md5_digest": "21d77546b03914b9c15b76f14df112d0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26342,
"upload_time": "2016-11-12T23:50:29",
"url": "https://files.pythonhosted.org/packages/78/5a/2ba177f7bff88ab01d8e3b345ec0b588ca67302bd5a0b9e212808ebf175a/humilis-0.9.5.tar.gz"
}
],
"0.9.6": [
{
"comment_text": "",
"digests": {
"md5": "5e8aa2e2500388fdb5d3ab4172f4705b",
"sha256": "759a0c34e4065434d38379b4f02874dea29630e0c4a77cf18f75e7e232f3a6f4"
},
"downloads": -1,
"filename": "humilis-0.9.6.tar.gz",
"has_sig": false,
"md5_digest": "5e8aa2e2500388fdb5d3ab4172f4705b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26294,
"upload_time": "2016-11-18T20:03:04",
"url": "https://files.pythonhosted.org/packages/a7/00/62e561a442179edc78a153af0dc6f8917fea1eaa6422941182a789d89cfa/humilis-0.9.6.tar.gz"
}
],
"0.9.7": [
{
"comment_text": "",
"digests": {
"md5": "9c7247fd20a6bd35d47ce9e3a8a4d74b",
"sha256": "1f33cde00d5954cf4f5c3377d954fd98c5c8a9d01cd0815cf0f6f26ac6d80601"
},
"downloads": -1,
"filename": "humilis-0.9.7.tar.gz",
"has_sig": false,
"md5_digest": "9c7247fd20a6bd35d47ce9e3a8a4d74b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26308,
"upload_time": "2016-12-18T01:23:23",
"url": "https://files.pythonhosted.org/packages/d0/c1/f9f0379f8eedcd09e42f7974df77890f241c2fb757d1efdfd91ef4e10615/humilis-0.9.7.tar.gz"
}
],
"0.9.8": [
{
"comment_text": "",
"digests": {
"md5": "37ad6bd28a928bdd6ba233e3ff91d412",
"sha256": "f9c4e0c520b711ccc3cf560f085d53f34001fac3b282812f2c37bcc682c049bb"
},
"downloads": -1,
"filename": "humilis-0.9.8.tar.gz",
"has_sig": false,
"md5_digest": "37ad6bd28a928bdd6ba233e3ff91d412",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26320,
"upload_time": "2016-12-25T21:55:35",
"url": "https://files.pythonhosted.org/packages/9a/d3/ebcc9fd8bf7bebe9e27be1321d6379b33a8bd23f9bf7c225e0e9b5ee515a/humilis-0.9.8.tar.gz"
}
],
"0.9.9": [
{
"comment_text": "",
"digests": {
"md5": "70c372cad8ed8bbe3e84a1b3a2da4e8e",
"sha256": "0232ef2a9daab03a7a1a6b30ea1dd6f5259aeb4a4ba4d5b19d3a18e9fe42ce95"
},
"downloads": -1,
"filename": "humilis-0.9.9.tar.gz",
"has_sig": false,
"md5_digest": "70c372cad8ed8bbe3e84a1b3a2da4e8e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27304,
"upload_time": "2017-02-19T12:20:11",
"url": "https://files.pythonhosted.org/packages/1d/8f/d507baefe0fba4919ba57ac0841ca7cb30665823e457c5d30aca717f83ac/humilis-0.9.9.tar.gz"
}
],
"1.0.0": [
{
"comment_text": "",
"digests": {
"md5": "296bca9e2a1216f6e4982bc564c1f82d",
"sha256": "da3fa170af0bf351c0c711a902fb0e6c86605dddf1fda04d4684727da45face1"
},
"downloads": -1,
"filename": "humilis-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "296bca9e2a1216f6e4982bc564c1f82d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27286,
"upload_time": "2017-02-19T12:25:55",
"url": "https://files.pythonhosted.org/packages/48/17/ec041d2a193bea7e32aec7a8bc049e74a9af706230f378da7aaafcb19910/humilis-1.0.0.tar.gz"
}
],
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "5050ceeec250f7a63c4896b60f1e2d50",
"sha256": "ebbcb7cc367b31906d495631249caac90d4b2eb9d3f5cf3e5426648669153b9c"
},
"downloads": -1,
"filename": "humilis-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "5050ceeec250f7a63c4896b60f1e2d50",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27311,
"upload_time": "2017-02-19T17:55:18",
"url": "https://files.pythonhosted.org/packages/3e/ca/c1a53ca9edddfa5c81b726b99a95bac4981d2fd21ab87ec13ea30fa55b70/humilis-1.0.1.tar.gz"
}
],
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "60ef5e4f113f95a582e23a28ca2e5c91",
"sha256": "a0b64679e4555acf2ef04e8d3526b4965fac706d0a2aa5051867706f74187989"
},
"downloads": -1,
"filename": "humilis-1.0.2.tar.gz",
"has_sig": false,
"md5_digest": "60ef5e4f113f95a582e23a28ca2e5c91",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27314,
"upload_time": "2017-02-19T19:53:40",
"url": "https://files.pythonhosted.org/packages/e2/ae/4635bcf50f6891264e8657b3c9ef934f11f1f303ad3cf0c11c4a333a2f63/humilis-1.0.2.tar.gz"
}
],
"1.0.3": [
{
"comment_text": "",
"digests": {
"md5": "92c621df0fa3b8781e469eccc29af8a2",
"sha256": "df972889c4ba9b3e2015466414113ba05820b2c190a9c27b6fff1cd35260252e"
},
"downloads": -1,
"filename": "humilis-1.0.3.tar.gz",
"has_sig": false,
"md5_digest": "92c621df0fa3b8781e469eccc29af8a2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27373,
"upload_time": "2017-02-27T15:00:11",
"url": "https://files.pythonhosted.org/packages/d6/2b/fd5c9e72ba5f4d67daa54f0213ca5537aa23ca080ea175d65ca9dda5a0a4/humilis-1.0.3.tar.gz"
}
],
"1.0.4": [
{
"comment_text": "",
"digests": {
"md5": "e27ed19da6bf6017b8e6e28a4fe33d8d",
"sha256": "23d546a2d173a713827c29b81c5363ca1413b7f7c376670b1160237efffedab0"
},
"downloads": -1,
"filename": "humilis-1.0.4.tar.gz",
"has_sig": false,
"md5_digest": "e27ed19da6bf6017b8e6e28a4fe33d8d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27389,
"upload_time": "2017-02-27T19:37:51",
"url": "https://files.pythonhosted.org/packages/0f/76/7d9d6c5873e956477c0bae9d6e31c6a203a535fd2361b9ff91427afa8399/humilis-1.0.4.tar.gz"
}
],
"1.0.5": [
{
"comment_text": "",
"digests": {
"md5": "e592948c4e0dedbccc88ead6007466f6",
"sha256": "9f3df3fef10b888da05fb7efb03c9862cabcf97dc236e659bec55fd72dee0a22"
},
"downloads": -1,
"filename": "humilis-1.0.5.tar.gz",
"has_sig": false,
"md5_digest": "e592948c4e0dedbccc88ead6007466f6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27434,
"upload_time": "2017-02-27T22:00:35",
"url": "https://files.pythonhosted.org/packages/76/95/513f7803d7f181295bf4fe8f364ecc0a85aa7c372ce242f696463869cc18/humilis-1.0.5.tar.gz"
}
],
"1.0.6": [
{
"comment_text": "",
"digests": {
"md5": "4a7e87aff243921a5413b679686bd049",
"sha256": "ff6657ea4850d8964373a3a6838eec3bc8b5005a6e587ee44bc451367bd7d912"
},
"downloads": -1,
"filename": "humilis-1.0.6.tar.gz",
"has_sig": false,
"md5_digest": "4a7e87aff243921a5413b679686bd049",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27464,
"upload_time": "2017-02-28T15:01:20",
"url": "https://files.pythonhosted.org/packages/b9/f1/1b3f9f432389bd6c7be987e308f71088b2346e46f76b28f930226d02aa1e/humilis-1.0.6.tar.gz"
}
],
"1.0.7": [
{
"comment_text": "",
"digests": {
"md5": "7a87d691ef08c9d926b9a886392ceb2c",
"sha256": "d32eade8d439bdaad4e3f2ff340b5bb69c6b1f7679fc2aa899560da0e7ec2e54"
},
"downloads": -1,
"filename": "humilis-1.0.7.tar.gz",
"has_sig": false,
"md5_digest": "7a87d691ef08c9d926b9a886392ceb2c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27463,
"upload_time": "2017-03-06T23:05:10",
"url": "https://files.pythonhosted.org/packages/e2/12/e405dce7c8f1891a988404fe0b20c6369c256a698c33663797c0e5bf02a5/humilis-1.0.7.tar.gz"
}
],
"1.0.8": [
{
"comment_text": "",
"digests": {
"md5": "efdea7310c004ce3e1db80764dc1fd42",
"sha256": "2a9b95f8b8bddc2ddcefe8b8139290d2f8f18589361e0bb353d29a29b8ae4fe6"
},
"downloads": -1,
"filename": "humilis-1.0.8.tar.gz",
"has_sig": false,
"md5_digest": "efdea7310c004ce3e1db80764dc1fd42",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27492,
"upload_time": "2017-03-07T08:58:05",
"url": "https://files.pythonhosted.org/packages/a7/86/db4520ee6761a82da3e4867f62c74cadc0f880bcb924235e0a5561e52755/humilis-1.0.8.tar.gz"
}
],
"1.0.9": [
{
"comment_text": "",
"digests": {
"md5": "5d3dd67278b2e425d923e2ad430f1c83",
"sha256": "2b923a7219f783e1bf3badde4d2df0b4f3854c2dd24e45aa1a0c4ad242b40a54"
},
"downloads": -1,
"filename": "humilis-1.0.9.tar.gz",
"has_sig": false,
"md5_digest": "5d3dd67278b2e425d923e2ad430f1c83",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27491,
"upload_time": "2017-03-07T13:38:29",
"url": "https://files.pythonhosted.org/packages/18/2c/7a5187dab15d6c1b3969d3446c5b6761a40670aa165a9beebaf9ccb7c9f6/humilis-1.0.9.tar.gz"
}
],
"1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "ba84eae0287d6a646ddbcc0ca0067588",
"sha256": "0e591eae174c085e35d84d9e68429a68908426beb4c26b9265dea56b4a0c10cb"
},
"downloads": -1,
"filename": "humilis-1.1.0.tar.gz",
"has_sig": false,
"md5_digest": "ba84eae0287d6a646ddbcc0ca0067588",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27686,
"upload_time": "2017-03-09T10:53:35",
"url": "https://files.pythonhosted.org/packages/07/00/cdd96c2920b0aa881a83df3ba9be678f12acefcaf934889f6def6650aed1/humilis-1.1.0.tar.gz"
}
],
"1.1.1": [
{
"comment_text": "",
"digests": {
"md5": "42bf5dd8e415c12c3dfe7ef6d3859354",
"sha256": "d37a13673751b9f40e46b735764b9f5efa749de322663462995728fabee34a0d"
},
"downloads": -1,
"filename": "humilis-1.1.1.tar.gz",
"has_sig": false,
"md5_digest": "42bf5dd8e415c12c3dfe7ef6d3859354",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27724,
"upload_time": "2017-03-09T11:39:13",
"url": "https://files.pythonhosted.org/packages/58/f5/64abb25a48088cac1701f87c28d2b73256e7b8dcb3c8dbcb892f1ded33f4/humilis-1.1.1.tar.gz"
}
],
"1.1.2": [
{
"comment_text": "",
"digests": {
"md5": "72485f43eeb29c845823c7f699d8356d",
"sha256": "55471b873f9c3668a264c67db3d97ff26883c572b5683560338413e341c207a5"
},
"downloads": -1,
"filename": "humilis-1.1.2.tar.gz",
"has_sig": false,
"md5_digest": "72485f43eeb29c845823c7f699d8356d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27722,
"upload_time": "2017-03-09T12:50:27",
"url": "https://files.pythonhosted.org/packages/b9/16/7cc1c4a1c6bb08991e9fa4a52047ce827b6df2c3575051ee1c22c9fb3fb0/humilis-1.1.2.tar.gz"
}
],
"1.1.3": [
{
"comment_text": "",
"digests": {
"md5": "400e5a2131266100a70ecd353eb3fdbe",
"sha256": "8d38e387df2d907f9a5cefee41c2852fd397b0e46706f7e164f328fa8aa75674"
},
"downloads": -1,
"filename": "humilis-1.1.3.tar.gz",
"has_sig": false,
"md5_digest": "400e5a2131266100a70ecd353eb3fdbe",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27740,
"upload_time": "2017-03-14T08:52:34",
"url": "https://files.pythonhosted.org/packages/21/f7/5aa178a7148f19f2934342aa0d93648ffb88d71114718113a4da881461f2/humilis-1.1.3.tar.gz"
}
],
"1.1.4": [
{
"comment_text": "",
"digests": {
"md5": "5b9c961fb75d020f3d4285e05c124ec6",
"sha256": "9912c98be0746b8c12d24d15a08ae67d27e90319899c66d7d41b88331de7abf5"
},
"downloads": -1,
"filename": "humilis-1.1.4.tar.gz",
"has_sig": false,
"md5_digest": "5b9c961fb75d020f3d4285e05c124ec6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27824,
"upload_time": "2017-03-22T19:27:00",
"url": "https://files.pythonhosted.org/packages/a6/68/7103df98ad68d1754a60609a742f99c1905d882238f9e974d30a1f4789ab/humilis-1.1.4.tar.gz"
}
],
"1.1.5": [
{
"comment_text": "",
"digests": {
"md5": "b91a265b531f3a4b941ac05450314c8c",
"sha256": "9f59c35cf7c7269cea6faa1b8c4163876e698764b1e1ed79deadf248a4d1610a"
},
"downloads": -1,
"filename": "humilis-1.1.5.tar.gz",
"has_sig": false,
"md5_digest": "b91a265b531f3a4b941ac05450314c8c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27861,
"upload_time": "2017-03-23T21:05:19",
"url": "https://files.pythonhosted.org/packages/fd/1a/e0205fb4fc12dffd59f283f55f6221d983e768d6469f6b375915796c2795/humilis-1.1.5.tar.gz"
}
],
"1.1.6": [
{
"comment_text": "",
"digests": {
"md5": "8548d7ba193a92184a8c24952751bfff",
"sha256": "6e1d3e33476217c57f063ea66554ff9d9899e253b6a230c443ee600ec489e135"
},
"downloads": -1,
"filename": "humilis-1.1.6.tar.gz",
"has_sig": false,
"md5_digest": "8548d7ba193a92184a8c24952751bfff",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27884,
"upload_time": "2017-04-02T19:33:14",
"url": "https://files.pythonhosted.org/packages/55/9f/e950988ecf05b221ae8a68c5cfe1f1e8819aabeb5e6035922255fc26e14b/humilis-1.1.6.tar.gz"
}
],
"1.1.7": [
{
"comment_text": "",
"digests": {
"md5": "2e7182d55609102b48eaaf1aa5f10524",
"sha256": "2fa17e2b0a4b299a0000248e1241b8ff2bf20129e5daf18ef246d1be0f28b708"
},
"downloads": -1,
"filename": "humilis-1.1.7.tar.gz",
"has_sig": false,
"md5_digest": "2e7182d55609102b48eaaf1aa5f10524",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27904,
"upload_time": "2017-04-02T19:41:39",
"url": "https://files.pythonhosted.org/packages/66/10/e9ab741f4852f651b769ba0c65d24f403411b4ab71bf84561fbe3b6b89ca/humilis-1.1.7.tar.gz"
}
],
"1.1.8": [
{
"comment_text": "",
"digests": {
"md5": "a831e1b099455eef6b75a535f963ae3c",
"sha256": "db5f4fcd4d21f60f043d22f2231e0625559fb8984c8ac08ef9c1b2fe565b2384"
},
"downloads": -1,
"filename": "humilis-1.1.8.tar.gz",
"has_sig": false,
"md5_digest": "a831e1b099455eef6b75a535f963ae3c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27956,
"upload_time": "2017-04-03T17:00:24",
"url": "https://files.pythonhosted.org/packages/4c/a0/4b06f258ccd7466b614a2c1fc3e8eb86477555c5ead39b0962bfd6ff70f3/humilis-1.1.8.tar.gz"
}
],
"1.1.9": [
{
"comment_text": "",
"digests": {
"md5": "074f345f03160e1b7db2b041899d3a3e",
"sha256": "87a7e1b2f04c34bc403a39e15b687e5894299ad91772ebdc85b184b006b302d6"
},
"downloads": -1,
"filename": "humilis-1.1.9.tar.gz",
"has_sig": false,
"md5_digest": "074f345f03160e1b7db2b041899d3a3e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28073,
"upload_time": "2017-04-04T11:48:48",
"url": "https://files.pythonhosted.org/packages/4a/41/47e5017a565e63becc19d3805901dc3c90a692f4db23ed6a516cfff59292/humilis-1.1.9.tar.gz"
}
],
"1.2.0": [
{
"comment_text": "",
"digests": {
"md5": "b0c97c4f5d89b773b54c73de1cf72c00",
"sha256": "be4be59257ce4bd8f054868c518264fdb5d729e9080014a6d7e64a501ed8e1c0"
},
"downloads": -1,
"filename": "humilis-1.2.0.tar.gz",
"has_sig": false,
"md5_digest": "b0c97c4f5d89b773b54c73de1cf72c00",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28078,
"upload_time": "2017-04-04T13:18:21",
"url": "https://files.pythonhosted.org/packages/cb/a5/ee336bf9b96db60aa288db10f3b419d83efa501172a92ed8367fe1cecf90/humilis-1.2.0.tar.gz"
}
],
"1.2.1": [
{
"comment_text": "",
"digests": {
"md5": "84139e79340009a588431fdf5018d678",
"sha256": "869338d73d3a3357ad4d1d3c783852613570f1f05401cabc49bc893e8e1f519c"
},
"downloads": -1,
"filename": "humilis-1.2.1.tar.gz",
"has_sig": false,
"md5_digest": "84139e79340009a588431fdf5018d678",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28063,
"upload_time": "2017-04-05T18:59:49",
"url": "https://files.pythonhosted.org/packages/1d/fe/42a9fb353cf54c6490d7c985c4217f8712868d89278217ba473b5000f3b8/humilis-1.2.1.tar.gz"
}
],
"1.2.2": [
{
"comment_text": "",
"digests": {
"md5": "9687a3efa14d8f96301cbcfaaad3e409",
"sha256": "79c46d31df03ae36f44da91e9791eb9ffe099bc6f6abb1db097fe5dee8108a3c"
},
"downloads": -1,
"filename": "humilis-1.2.2.tar.gz",
"has_sig": false,
"md5_digest": "9687a3efa14d8f96301cbcfaaad3e409",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28125,
"upload_time": "2017-04-06T13:39:25",
"url": "https://files.pythonhosted.org/packages/b0/a6/b9e2caf7d227b6f76a60f443e41595fd411474add123d36ad239490bf391/humilis-1.2.2.tar.gz"
}
],
"1.2.3": [
{
"comment_text": "",
"digests": {
"md5": "72ba46adf870d5f95b36e1763d9351a5",
"sha256": "108797ae8bd14d74dd1407ffc08b142c8094e9de1a1fe1a732c88ed6c1e0cbca"
},
"downloads": -1,
"filename": "humilis-1.2.3.tar.gz",
"has_sig": false,
"md5_digest": "72ba46adf870d5f95b36e1763d9351a5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27777,
"upload_time": "2017-04-17T12:53:06",
"url": "https://files.pythonhosted.org/packages/ad/22/9faa7c90ce472358b523f848f8de9b605237db4118c3e3d22535bec7456f/humilis-1.2.3.tar.gz"
}
],
"1.2.4": [
{
"comment_text": "",
"digests": {
"md5": "89b7a4f4a6797c5465cceb7e7ab3a4e7",
"sha256": "9b9f363fe982feb39899ad2027fe1966b9d3602c85709649e21b0ba5ce1a2f82"
},
"downloads": -1,
"filename": "humilis-1.2.4.tar.gz",
"has_sig": false,
"md5_digest": "89b7a4f4a6797c5465cceb7e7ab3a4e7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23474,
"upload_time": "2017-04-19T19:08:26",
"url": "https://files.pythonhosted.org/packages/56/8b/8109a28143a19472df61677bfc962812290a9710e6bf49ef735fa2877680/humilis-1.2.4.tar.gz"
}
],
"1.2.5": [
{
"comment_text": "",
"digests": {
"md5": "ef1612926d05898737eee45054e7a39d",
"sha256": "edc0ea197aee02ca00d1cd14e53dc381d63c5d01e2848928d9cb86823923a5fa"
},
"downloads": -1,
"filename": "humilis-1.2.5.tar.gz",
"has_sig": false,
"md5_digest": "ef1612926d05898737eee45054e7a39d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23489,
"upload_time": "2017-04-25T19:20:40",
"url": "https://files.pythonhosted.org/packages/b2/83/bebee67fc9f42c870e65070736cfb45135ce34f6e3f9504d9a54a1f446bd/humilis-1.2.5.tar.gz"
}
],
"1.2.6": [
{
"comment_text": "",
"digests": {
"md5": "12108383cd4beb9645bb0042661f2be6",
"sha256": "74d2353cee1dadca738e1bb1a37f56b2641207031f4dedfadbcdb699d4e53dc2"
},
"downloads": -1,
"filename": "humilis-1.2.6.tar.gz",
"has_sig": false,
"md5_digest": "12108383cd4beb9645bb0042661f2be6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23438,
"upload_time": "2017-04-30T21:01:08",
"url": "https://files.pythonhosted.org/packages/58/5d/e73e6b6339734546668080b86be3c6d8120643df445707ca121930df9766/humilis-1.2.6.tar.gz"
}
],
"1.2.7": [
{
"comment_text": "",
"digests": {
"md5": "2143c8c9c0ced9bc61963983e291a9b4",
"sha256": "e5b60bf3a14f71c22a5528e4363fe55540a845fb9202782e5e8c0773b4633dac"
},
"downloads": -1,
"filename": "humilis-1.2.7.tar.gz",
"has_sig": false,
"md5_digest": "2143c8c9c0ced9bc61963983e291a9b4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23418,
"upload_time": "2017-04-30T21:09:27",
"url": "https://files.pythonhosted.org/packages/11/22/d8535ed8e073e676d4d65c6308ddbe83d2b1b510733039af189d83776ce1/humilis-1.2.7.tar.gz"
}
],
"1.2.8": [
{
"comment_text": "",
"digests": {
"md5": "0536d92a47b026f7b89500bd13e6d92c",
"sha256": "450fc6b46fd15765735a17394b8406b499b772499b396b0f1a609df9bdf2f18f"
},
"downloads": -1,
"filename": "humilis-1.2.8.tar.gz",
"has_sig": false,
"md5_digest": "0536d92a47b026f7b89500bd13e6d92c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23426,
"upload_time": "2017-04-30T21:13:25",
"url": "https://files.pythonhosted.org/packages/77/06/70fd75a9ef979805fa1f34b723046779ac2fffbabce266ae51e1c1de8c6f/humilis-1.2.8.tar.gz"
}
],
"1.2.9": [
{
"comment_text": "",
"digests": {
"md5": "a6ea02561e78a148e8d9ba6e1cbdbd56",
"sha256": "5e61f0d8ebb0084ae98c23bfd04a56cf55d10ba3fa32becd83cda7d545aa9e5c"
},
"downloads": -1,
"filename": "humilis-1.2.9.tar.gz",
"has_sig": false,
"md5_digest": "a6ea02561e78a148e8d9ba6e1cbdbd56",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23422,
"upload_time": "2017-04-30T21:17:23",
"url": "https://files.pythonhosted.org/packages/9f/68/8cd19c908ef8be94a8f4f27bad66d06e7ceda81f5ceee6d52fd18836c4a1/humilis-1.2.9.tar.gz"
}
],
"1.3.0": [
{
"comment_text": "",
"digests": {
"md5": "16a525c255133f721bc8ff561d1cc544",
"sha256": "eb9f95f162b636197a12f1ba6fc133ff91b5d4bb3c186270b8005fef438de3e6"
},
"downloads": -1,
"filename": "humilis-1.3.0.tar.gz",
"has_sig": false,
"md5_digest": "16a525c255133f721bc8ff561d1cc544",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23433,
"upload_time": "2017-05-01T15:27:31",
"url": "https://files.pythonhosted.org/packages/70/b5/4458ebc1ca814084fdd90ecb53e6cff223a6a953e8e2e1dba9110d3e21a4/humilis-1.3.0.tar.gz"
}
],
"1.3.1": [
{
"comment_text": "",
"digests": {
"md5": "3fd51269631f496c6c3829784729b029",
"sha256": "0af5da0f4ac06b4f3905ab475633a67d93ec66d5d3963f73a379f6550962769e"
},
"downloads": -1,
"filename": "humilis-1.3.1.tar.gz",
"has_sig": false,
"md5_digest": "3fd51269631f496c6c3829784729b029",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23462,
"upload_time": "2017-05-09T23:25:16",
"url": "https://files.pythonhosted.org/packages/00/b1/f1b2cc4c01237b39da7b05c445c1228e9b2ebc85e0515c0a355a0d7c53ae/humilis-1.3.1.tar.gz"
}
],
"1.3.2": [
{
"comment_text": "",
"digests": {
"md5": "5166e649946cfe877e432cbff3a5ede6",
"sha256": "8b89d4e848bd0e9dc83801066d2ab801ec09221f8c4947cab0377dc9bf9dd96d"
},
"downloads": -1,
"filename": "humilis-1.3.2.tar.gz",
"has_sig": false,
"md5_digest": "5166e649946cfe877e432cbff3a5ede6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23485,
"upload_time": "2017-05-16T12:54:03",
"url": "https://files.pythonhosted.org/packages/1a/57/974a0db1b3adf00b69f47c8751bdd253ad7dbeaf54b1538598e39209661a/humilis-1.3.2.tar.gz"
}
],
"1.3.3": [
{
"comment_text": "",
"digests": {
"md5": "c48d01e5ecac397252e1b50d5039f4df",
"sha256": "7514fff00fdb1bd621805a6a26bcb4260d9ea4cc92defc15cf7700cee753ac39"
},
"downloads": -1,
"filename": "humilis-1.3.3.tar.gz",
"has_sig": false,
"md5_digest": "c48d01e5ecac397252e1b50d5039f4df",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23467,
"upload_time": "2017-05-17T20:29:38",
"url": "https://files.pythonhosted.org/packages/51/79/81a44a8e1eef4184dd62149f019541e3b4c5f5a861b491240e07678c81e4/humilis-1.3.3.tar.gz"
}
],
"1.3.6": [
{
"comment_text": "",
"digests": {
"md5": "7896eb41b169bd0f91417ab8ba73edd5",
"sha256": "037bcfc838484f0b2876fd23959880490a2631f3737bd840b3acc1a040eab00d"
},
"downloads": -1,
"filename": "humilis-1.3.6.tar.gz",
"has_sig": false,
"md5_digest": "7896eb41b169bd0f91417ab8ba73edd5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23559,
"upload_time": "2017-05-18T17:00:14",
"url": "https://files.pythonhosted.org/packages/a6/be/759fc786aa296f757506da7b37a33a1650e8d7b150e34008a149e80b2e6b/humilis-1.3.6.tar.gz"
}
],
"1.3.9": [
{
"comment_text": "",
"digests": {
"md5": "94285f109e77e655cdf28fb1c562cd9e",
"sha256": "31c7a875b14443c0990106211ad87a1837542c1bcc2dc6c170a07b5d3bcf57c8"
},
"downloads": -1,
"filename": "humilis-1.3.9.tar.gz",
"has_sig": false,
"md5_digest": "94285f109e77e655cdf28fb1c562cd9e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23427,
"upload_time": "2017-05-23T14:35:31",
"url": "https://files.pythonhosted.org/packages/f4/5c/76b639e4cd40b4dc5fe86cea1a0cd1cf12119e84ce5f9e0f160cbe3b7958/humilis-1.3.9.tar.gz"
}
],
"1.4.0": [
{
"comment_text": "",
"digests": {
"md5": "e9b412997e849dc0cb0dfe7342c29408",
"sha256": "c94ab0f6f12594431540c3770d2d1029b674ccede7cb7817d7cc31e1f5a00b9a"
},
"downloads": -1,
"filename": "humilis-1.4.0.tar.gz",
"has_sig": false,
"md5_digest": "e9b412997e849dc0cb0dfe7342c29408",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23411,
"upload_time": "2017-05-23T20:00:03",
"url": "https://files.pythonhosted.org/packages/be/f1/c267fa5007fd0b5a8d686dddee832b2bfb44b3fb47c9773e2c929cc2b71d/humilis-1.4.0.tar.gz"
}
],
"1.4.1": [
{
"comment_text": "",
"digests": {
"md5": "becc757652fa81ba4dc3cfbad4d449eb",
"sha256": "bed705311f00815e1c49086de9bb4dab340fce9ffa9cfdfac4daf9f65afce429"
},
"downloads": -1,
"filename": "humilis-1.4.1.tar.gz",
"has_sig": false,
"md5_digest": "becc757652fa81ba4dc3cfbad4d449eb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23404,
"upload_time": "2017-05-24T09:55:11",
"url": "https://files.pythonhosted.org/packages/9f/d8/7f8548be22ec7deed45eeb3d4a3c1fa55146112785bf329fd8c255402d85/humilis-1.4.1.tar.gz"
}
],
"1.4.10": [
{
"comment_text": "",
"digests": {
"md5": "50a26232b90263bced7a040003df269c",
"sha256": "3877291fa6a7af0d840d8283cc0b3f4fa26ae2000d134bc790e39a7dee833532"
},
"downloads": -1,
"filename": "humilis-1.4.10.tar.gz",
"has_sig": false,
"md5_digest": "50a26232b90263bced7a040003df269c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25994,
"upload_time": "2017-10-11T21:51:58",
"url": "https://files.pythonhosted.org/packages/f8/60/c56dc729d4de411acbed5b3bb37e542190001887f5f30d8374c5fc75eeb0/humilis-1.4.10.tar.gz"
}
],
"1.4.11": [
{
"comment_text": "",
"digests": {
"md5": "65b0987464acb3fd4cb4cacaf1d603ce",
"sha256": "cc8fe54b71e554d5267ba84d13ac072d782dc107efcbe16a0c5c76980569f935"
},
"downloads": -1,
"filename": "humilis-1.4.11.tar.gz",
"has_sig": false,
"md5_digest": "65b0987464acb3fd4cb4cacaf1d603ce",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25046,
"upload_time": "2018-02-25T08:49:21",
"url": "https://files.pythonhosted.org/packages/88/60/37e75da612a47d670f6929fdd42ba97d670af73ed4161f500c2e87708860/humilis-1.4.11.tar.gz"
}
],
"1.4.12": [
{
"comment_text": "",
"digests": {
"md5": "309823f382227bd2b8a5692b58db0dd8",
"sha256": "bf410510134b1b99ad33c396d2efb816ecd32123a5addb756d727a05ddb5722d"
},
"downloads": -1,
"filename": "humilis-1.4.12.tar.gz",
"has_sig": false,
"md5_digest": "309823f382227bd2b8a5692b58db0dd8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24878,
"upload_time": "2018-02-25T10:17:24",
"url": "https://files.pythonhosted.org/packages/2f/78/0a571f3d7a36fb8e3e0ccc72b549b94b3c75583abbc1e26492a44d595129/humilis-1.4.12.tar.gz"
}
],
"1.4.13": [
{
"comment_text": "",
"digests": {
"md5": "fc06bd34fe7564e65125539691a68139",
"sha256": "a1648848ceaab78f1585b5e5be4a5cfa6fa6cf591c54d65f6035a21b449a9110"
},
"downloads": -1,
"filename": "humilis-1.4.13.tar.gz",
"has_sig": false,
"md5_digest": "fc06bd34fe7564e65125539691a68139",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24916,
"upload_time": "2018-02-25T10:24:46",
"url": "https://files.pythonhosted.org/packages/2c/bb/eb06e0b81670fb169e058089049fea9640a81b9efbfb5b5e1af4e3b09b7a/humilis-1.4.13.tar.gz"
}
],
"1.4.14": [
{
"comment_text": "",
"digests": {
"md5": "40da2c31698763a44dc451b4096a33a9",
"sha256": "afad95d9137dfdebe42b0ce6dc6adad61f5a04a5b35d48071e91138a6d2544d1"
},
"downloads": -1,
"filename": "humilis-1.4.14.tar.gz",
"has_sig": false,
"md5_digest": "40da2c31698763a44dc451b4096a33a9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24901,
"upload_time": "2018-02-25T10:27:44",
"url": "https://files.pythonhosted.org/packages/3f/04/51295e34c253f4918212fa08d50e1c494926a5a07793b2cfa5eb265c6c64/humilis-1.4.14.tar.gz"
}
],
"1.4.2": [
{
"comment_text": "",
"digests": {
"md5": "d0978b789cd44203f7d973eb4da69037",
"sha256": "507bb9292f91de58a3653f666df76a6f928d155fc374093755e0ddeaf47ace49"
},
"downloads": -1,
"filename": "humilis-1.4.2.tar.gz",
"has_sig": false,
"md5_digest": "d0978b789cd44203f7d973eb4da69037",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23411,
"upload_time": "2017-05-26T08:58:55",
"url": "https://files.pythonhosted.org/packages/f1/bf/71a18ae647c8f5de8ed2ef58db7dd7156c0df1510d89bc860250137f50fc/humilis-1.4.2.tar.gz"
}
],
"1.4.3": [
{
"comment_text": "",
"digests": {
"md5": "1baa05447562b47b48c1007541ab26a4",
"sha256": "101c0ef29f8421b6e0ee034327eac7000914b20124e1386ff0f7861262e4a28d"
},
"downloads": -1,
"filename": "humilis-1.4.3.tar.gz",
"has_sig": false,
"md5_digest": "1baa05447562b47b48c1007541ab26a4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23369,
"upload_time": "2017-06-09T13:47:01",
"url": "https://files.pythonhosted.org/packages/b2/64/824efdff62e708c3f5cff8bb3612288df9b0950f81d8872c2a626d6d9644/humilis-1.4.3.tar.gz"
}
],
"1.4.4": [
{
"comment_text": "",
"digests": {
"md5": "da73456cd2c34e2491bf60a869afc3d6",
"sha256": "28ec324118b7156cce6a2d4af784e8c49f2bbfc6bcfa263edd48698df7858835"
},
"downloads": -1,
"filename": "humilis-1.4.4.tar.gz",
"has_sig": false,
"md5_digest": "da73456cd2c34e2491bf60a869afc3d6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23573,
"upload_time": "2017-07-15T11:22:06",
"url": "https://files.pythonhosted.org/packages/1b/53/5ffc768d7e6b03c7d3266dcacab4ffcb092bc3822e8f998af27f9ca59f59/humilis-1.4.4.tar.gz"
}
],
"1.4.5": [
{
"comment_text": "",
"digests": {
"md5": "79395ecc0f92da8d9f2a8179969dc79b",
"sha256": "351883bc5c088a633eff76b9ea6b58dc45168aa2d9caf770b9f231a27b84c9b8"
},
"downloads": -1,
"filename": "humilis-1.4.5.tar.gz",
"has_sig": false,
"md5_digest": "79395ecc0f92da8d9f2a8179969dc79b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23575,
"upload_time": "2017-07-15T11:55:05",
"url": "https://files.pythonhosted.org/packages/8b/00/90b120def87fd0e76652aa9e19762539828c7c509a2c8c0687528187436e/humilis-1.4.5.tar.gz"
}
],
"1.4.6": [
{
"comment_text": "",
"digests": {
"md5": "17fff687cbbffe4525dc11049e3ad78f",
"sha256": "52d78412d936009f99031654ddf687d9675ba8a617c39dcc3c302d0e943ecf34"
},
"downloads": -1,
"filename": "humilis-1.4.6.tar.gz",
"has_sig": false,
"md5_digest": "17fff687cbbffe4525dc11049e3ad78f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23630,
"upload_time": "2017-07-15T12:19:40",
"url": "https://files.pythonhosted.org/packages/43/ad/9aeb63bbec4451f529f78bd6878121ae26f91320f45d1021150ec48dde69/humilis-1.4.6.tar.gz"
}
],
"1.4.7": [
{
"comment_text": "",
"digests": {
"md5": "c807cc831f6009cd74f0d4404b6d0a26",
"sha256": "38912c1e22d4cb282361a917d7738dc3f9cca3c560dbff1f3bb0656d10797efc"
},
"downloads": -1,
"filename": "humilis-1.4.7.tar.gz",
"has_sig": false,
"md5_digest": "c807cc831f6009cd74f0d4404b6d0a26",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23633,
"upload_time": "2017-07-15T12:21:38",
"url": "https://files.pythonhosted.org/packages/f9/77/05e47823c61d94c882bb8bf0abf7e8feceba321a61ac4d8f4e0228b4fc06/humilis-1.4.7.tar.gz"
}
],
"1.4.8": [
{
"comment_text": "",
"digests": {
"md5": "809a0a64d72b74bf789dcb697dbc8d39",
"sha256": "180a9c74083fcb8cb2d0c2c079af9b5b55402b27fb0dac0cb9800b8c23e68ae8"
},
"downloads": -1,
"filename": "humilis-1.4.8.tar.gz",
"has_sig": false,
"md5_digest": "809a0a64d72b74bf789dcb697dbc8d39",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23630,
"upload_time": "2017-07-15T12:34:32",
"url": "https://files.pythonhosted.org/packages/a7/cb/4477818123390722735074ad634b45bf774a616e87ff787820e555471c61/humilis-1.4.8.tar.gz"
}
],
"1.4.9": [
{
"comment_text": "",
"digests": {
"md5": "462661b8f08334c7675c0952a3c1e687",
"sha256": "0376b57709a233ed04140b2469396a294e472e836295369365bf9f46ac6e75a6"
},
"downloads": -1,
"filename": "humilis-1.4.9.tar.gz",
"has_sig": false,
"md5_digest": "462661b8f08334c7675c0952a3c1e687",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23624,
"upload_time": "2017-07-17T15:33:03",
"url": "https://files.pythonhosted.org/packages/f5/7a/9c9ba1bb80fbe876d16ab8472b0c8458237d8249ec74900c0f403e332364/humilis-1.4.9.tar.gz"
}
],
"1.5.0": [
{
"comment_text": "",
"digests": {
"md5": "61c6936699569d8e7e17c54598e1c4b8",
"sha256": "4ff9be5d04d445cf9aef69718cf49bf0c75850cdc359178810e983e11d3ecfd6"
},
"downloads": -1,
"filename": "humilis-1.5.0.tar.gz",
"has_sig": false,
"md5_digest": "61c6936699569d8e7e17c54598e1c4b8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24950,
"upload_time": "2018-03-14T14:15:38",
"url": "https://files.pythonhosted.org/packages/b5/e6/fb5c20546601c6945c32329ab28cadbaa93c519c583b50bf2da011ba3aec/humilis-1.5.0.tar.gz"
}
],
"1.5.1": [
{
"comment_text": "",
"digests": {
"md5": "a75096aa9caa1f3eeeb97f009d81f607",
"sha256": "f0eb2e9632ab7f9bb3a3430dd9feec74a19675541573b5f47a4da8691eb167b3"
},
"downloads": -1,
"filename": "humilis-1.5.1.tar.gz",
"has_sig": false,
"md5_digest": "a75096aa9caa1f3eeeb97f009d81f607",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24951,
"upload_time": "2018-03-14T14:30:47",
"url": "https://files.pythonhosted.org/packages/8c/c7/bdd52cd88c101c0a859aaf50e38ccd0eefb9780d04ea3f7291018f59cef3/humilis-1.5.1.tar.gz"
}
],
"1.5.2": [
{
"comment_text": "",
"digests": {
"md5": "54f45a67ae392c0903eccad2fbc28aca",
"sha256": "09f5aeab0077dec0c6aae462baa687d716fc3365c55a8ca93d98596bb4899503"
},
"downloads": -1,
"filename": "humilis-1.5.2.tar.gz",
"has_sig": false,
"md5_digest": "54f45a67ae392c0903eccad2fbc28aca",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24960,
"upload_time": "2018-03-14T14:38:03",
"url": "https://files.pythonhosted.org/packages/86/c8/d4b638fce9bb948312c8f64b6434ac0f976785f312824958c5ccca611e3b/humilis-1.5.2.tar.gz"
}
],
"1.5.3": [
{
"comment_text": "",
"digests": {
"md5": "f067b75d221ce633642826e168c89ada",
"sha256": "4310fbd5a940081eb5aaedb76fb4aa88046c0f802bdb133514efcab890a83591"
},
"downloads": -1,
"filename": "humilis-1.5.3.tar.gz",
"has_sig": false,
"md5_digest": "f067b75d221ce633642826e168c89ada",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24947,
"upload_time": "2018-03-14T23:56:44",
"url": "https://files.pythonhosted.org/packages/25/62/591f6dcfa737c46fb5c0cffbccb1ab8a889e68458a24c04db58780ebca40/humilis-1.5.3.tar.gz"
}
],
"1.5.4": [
{
"comment_text": "",
"digests": {
"md5": "bafe0400de69afdf0c1de9d10475c8a7",
"sha256": "eee20e0520c43be3a365d1d9be009cb2a16cff0fea4aee731e5220a464457a02"
},
"downloads": -1,
"filename": "humilis-1.5.4.tar.gz",
"has_sig": false,
"md5_digest": "bafe0400de69afdf0c1de9d10475c8a7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 32179,
"upload_time": "2018-04-30T14:55:59",
"url": "https://files.pythonhosted.org/packages/85/0b/31884bc1b3fcafbba937d1af893c8de384b29c72ea30f9d001d52cb2f635/humilis-1.5.4.tar.gz"
}
],
"1.5.5": [
{
"comment_text": "",
"digests": {
"md5": "a70f286cc8852699a7e58d26191e19cb",
"sha256": "3e0692fc87512fe5b5b2a8247972bce07589f8f82de49657f6ee3c072b6c6086"
},
"downloads": -1,
"filename": "humilis-1.5.5.tar.gz",
"has_sig": false,
"md5_digest": "a70f286cc8852699a7e58d26191e19cb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 32332,
"upload_time": "2018-05-27T17:24:34",
"url": "https://files.pythonhosted.org/packages/dd/5e/75c13a185fa4d881e18f219b9211cc9c4c127496a8c337209bcbbc57bdfe/humilis-1.5.5.tar.gz"
}
],
"1.5.6": [
{
"comment_text": "",
"digests": {
"md5": "34a201e550685b82e6f7051724fbee67",
"sha256": "fa9b0c50277091378fcc9f025113c454030e6a38fbaa24a730033809601683d8"
},
"downloads": -1,
"filename": "humilis-1.5.6.tar.gz",
"has_sig": false,
"md5_digest": "34a201e550685b82e6f7051724fbee67",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31119,
"upload_time": "2019-09-09T18:19:33",
"url": "https://files.pythonhosted.org/packages/5d/c5/efc2ecc4acd992066f149d600327ea71b687a2024d612b51e7a9b036663d/humilis-1.5.6.tar.gz"
}
],
"1.5.7": [
{
"comment_text": "",
"digests": {
"md5": "5ba0bb18a977d441e38ed40be279375c",
"sha256": "a24459f7a8d2f7e0c45ad0b8c0984841dd4274c23eb1dc988d76fcb3a286c98f"
},
"downloads": -1,
"filename": "humilis-1.5.7.tar.gz",
"has_sig": false,
"md5_digest": "5ba0bb18a977d441e38ed40be279375c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31134,
"upload_time": "2019-09-09T18:36:39",
"url": "https://files.pythonhosted.org/packages/0a/18/6b0f990798f8be1451bc06bba53cba9f3f2d7ef11a18bc409aa2fec3e261/humilis-1.5.7.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "5ba0bb18a977d441e38ed40be279375c",
"sha256": "a24459f7a8d2f7e0c45ad0b8c0984841dd4274c23eb1dc988d76fcb3a286c98f"
},
"downloads": -1,
"filename": "humilis-1.5.7.tar.gz",
"has_sig": false,
"md5_digest": "5ba0bb18a977d441e38ed40be279375c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31134,
"upload_time": "2019-09-09T18:36:39",
"url": "https://files.pythonhosted.org/packages/0a/18/6b0f990798f8be1451bc06bba53cba9f3f2d7ef11a18bc409aa2fec3e261/humilis-1.5.7.tar.gz"
}
]
}