{ "info": { "author": "Oasis LMF", "author_email": "support@oasislmf.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.6" ], "description": "\"Oasis\n\n[![ktools version](https://img.shields.io/github/tag/Oasislmf/ktools?label=ktools)](https://github.com/OasisLMF/ktools/releases) [![PyPI version](https://badge.fury.io/py/oasislmf.svg)](https://badge.fury.io/py/oasislmf) [![Build Status](https://ci.oasislmfdev.org/buildStatus/icon?job=oasis_oasislmf/master)](https://ci.oasislmfdev.org/job/oasis_oasislmf/job/master/)\n\n# OasisLMF\n\nThe `oasislmf` Python package, loosely called the *model development kit (MDK)* or the *MDK package*, provides a command line toolkit for developing, testing and running Oasis models end-to-end locally, or remotely via the Oasis API. It can generate ground-up losses (GUL), direct/insured losses (IL) and reinsurance losses (RIL). It can also generate deterministic losses at all these levels.\n\n## Features\n\nFor running models locally the CLI provides a `model` subcommand with the following options:\n\n* `model generate-keys`: generates Oasis keys files from model lookups; these are essentially line items of (location ID, peril ID, coverage type ID, area peril ID, vulnerability ID) where peril ID and coverage type ID span the full set of perils and coverage types that the model supports; if the lookup is for a complex/custom model the keys file will have the same format except that area peril ID and vulnerability ID are replaced by a model data JSON string\n* `model generate-oasis-files`: generates the Oasis input CSV files for losses (GUL, GUL + IL, or GUL + IL + RIL); it requires the provision of source exposure and optionally source accounts and reinsurance info. and scope files (in OED format), as well as assets for instantiating model lookups and generating keys files\n* `model generate-losses`: generates losses (GUL, or GUL + IL, or GUL + IL + RIL) from a set of pre-existing Oasis files\n* `model run`: runs the model from start to finish by generating losses (GUL, or GUL + IL, or GUL + IL + RIL) from the source exposure, and optionally source accounts and reinsurance info. and scope files (in OED or RMS format), as well as assets related to lookup instantiation and keys file generation\n\nThe optional `--summarise-exposure` flag can be issued with `model generate-oasis-files` and `model run` to generate a summary of Total Insured Values (TIVs) grouped by coverage type and peril. This produces the `exposure_summary_report.json` file.\n\nFor remote model execution the `api` subcommand provides the following main subcommand:\n\n* `api run`: runs the model remotely (same as `model run`) but via the Oasis API\n\nFor generating deterministic losses an `exposure run` subcommand is available:\n\n* `exposure run`: generates deterministic losses (GUL, or GUL + IL, or GUL + IL + RIL)\n\nThe reusable libraries are organised into several sub-packages, the most relevant of which from a model developer or user's perspective are:\n\n* `api_client`\n* `model_preparation`\n* `model_execution`\n* `utils`\n\n## Minimum Python Requirements\n\nStarting from 1st January 2019, Pandas will no longer be supporting Python 2. As Pandas is a key dependency of the MDK we are **dropping Python 2 (2.7) support** as of this release (1.3.4). The last version which still supports Python 2.7 is version `1.3.3` (published 12/03/2019).\n\nAlso for this release (and all future releases) a **minimum of Python 3.6 is required**.\n\n\n## Installation\n\nThe latest released version of the package, or a specific package version, can be installed using `pip`:\n\n pip install oasislmf[==]\n\nAlternatively you can install the latest development version using:\n\n pip install git+{https,ssh}://git@github.com/OasisLMF/OasisLMF\n\nYou can also install from a specific branch `` using:\n\n pip install [-v] git+{https,ssh}://git@github.com/OasisLMF/OasisLMF.git@#egg=oasislmf\n\n## Enable Bash completion\n\nBash completion is a functionality which bash helps users type their commands by presenting possible options when users press the tab key while typing a command.\n\nOnce oasislmf is installed you'll need to be activate the feature by sourcing a bash file. (only needs to be run once)\n\n### Local \n\n oasislmf admin enable-bash-complete\n\n### Global \n\n echo 'complete -C completer_oasislmf oasislmf' | sudo tee /usr/share/bash-completion/completions/oasislmf\n\n\n## Dependencies\n\n### System\n\nThe package provides a built-in lookup framework (`oasislmf.model_preparation.lookup.OasisLookup`) which uses the Rtree Python package, which in turn requires the `libspatialindex` spatial indexing C library.\n\nhttps://libspatialindex.github.io/index.html\n\nLinux users can install the development version of `libspatialindex` from the command line using `apt`.\n\n [sudo] apt install -y libspatialindex-dev\n\nand OS X users can do the same via `brew`.\n\n brew install spatialindex\n\nThe PiWind demonstration model uses the built-in lookup framework, therefore running PiWind or any model which uses the built-in lookup, requires that you install `libspatialindex`.\n\n#### GNU/Linux\n\nFor GNU/Linux the following is a specific list of required system libraries\n\n * **Debian**: g++ compiler build-essential, libtool, zlib1g-dev autoconf on debian distros\n\n sudo apt install g++ build-essential libtool zlib1g-dev autoconf\n\n\n * **Red Hat**: 'Development Tools' and zlib-devel\n\n### Python\n\nPackage Python dependencies are controlled by `pip-tools`. To install the development dependencies first, install `pip-tools` using:\n\n pip install pip-tools\n\nand run:\n\n pip-sync\n\nTo add new dependencies to the development requirements add the package name to `requirements.in` or\nto add a new dependency to the installed package add the package name to `requirements-package.in`.\nVersion specifiers can be supplied to the packages but these should be kept as loose as possible so that\nall packages can be easily updated and there will be fewer conflict when installing.\n\nAfter adding packages to either `*.in` file:\n\n pip-compile && pip-sync\n\nshould be ran ensuring the development dependencies are kept up to date.\n\n## Testing\n\nTo test the code style run:\n\n flake8\n\nTo test against all supported python versions run:\n\n tox\n\nTo test against your currently installed version of python run:\n\n py.test\n\nTo run the full test suite run:\n\n ./runtests.sh\n\n## Publishing\n\nBefore publishing the latest version of the package make you sure increment the `__version__` value in `oasislmf/__init__.py`, and commit the change. You'll also need to install the `twine` Python package which `setuptools` uses for publishing packages on PyPI. If publishing wheels then you'll also need to install the `wheel` Python package.\n\n### Using the `publish` subcommand in `setup.py`\n\nThe distribution format can be either a source distribution or a platform-specific wheel. To publish the source distribution package run:\n\n python setup.py publish --sdist\n\nor to publish the platform specific wheel run:\n\n python setup.py publish --wheel\n\n### Creating a bdist for another platform \n\nTo create a distribution for a non-host platform use the `--plat-name` flag:\n\n python setup.py bdist_wheel --plat-name Linux_x86_64\n\n or\n\n python setup.py bdist_wheel --plat-name Darwin_x86_64\n\n\n### Manually publishing, with a GPG signature\n\nThe first step is to create the distribution package with the desired format: for the source distribution run:\n\n python setup.py sdist\n\nwhich will create a `.tar.gz` file in the `dist` subfolder, or for the platform specific wheel run:\n\n python setup.py bdist_wheel\n\nwhich will create `.whl` file in the `dist` subfolder. To attach a GPG signature using your default private key you can then run:\n\n gpg --detach-sign -a dist/.{tar.gz,whl}\n\nThis will create `.asc` signature file named `.{tar.gz,whl}.asc` in `dist`. You can just publish the package with the signature using:\n\n twine upload dist/.{tar.gz,whl} dist/.{tar.gz,whl}.asc\n \n## Documentation\n* Issues\n* Releases\n* General Oasis documentation\n* Model Development Kit (MDK)\n* Modules\n\n## License\nThe code in this project is licensed under BSD 3-clause license.", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/OasisLMF/oasislmf", "keywords": "oasis lmf loss modeling framework", "license": "BSD 3-Clause", "maintainer": "", "maintainer_email": "", "name": "oasislmf", "package_url": "https://pypi.org/project/oasislmf/", "platform": "", "project_url": "https://pypi.org/project/oasislmf/", "project_urls": { "Homepage": "https://github.com/OasisLMF/oasislmf" }, "release_url": "https://pypi.org/project/oasislmf/1.4.2/", "requires_dist": null, "requires_python": ">=3.6", "summary": "Core loss modelling framework.", "version": "1.4.2" }, "last_serial": 5928866, "releases": { "0.0.0": [ { "comment_text": "", "digests": { "md5": "e66f139771d14b38e7559d929c8b0053", "sha256": "0c5e6f2578f9b6f37de4cd8a749dbfbd0b042340c83440e2675ba0713e54f61c" }, "downloads": -1, "filename": "oasislmf-0.0.0.tar.gz", "has_sig": false, "md5_digest": "e66f139771d14b38e7559d929c8b0053", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56779, "upload_time": "2018-02-19T15:18:38", "url": "https://files.pythonhosted.org/packages/4d/25/e8171c7b94c0f7e31e3c45f51d78d3114979679afcc9b334493a3613c5a9/oasislmf-0.0.0.tar.gz" } ], "0.0.1": [ { "comment_text": "", "digests": { "md5": "e2167da408cfcf27f2d044f2ee60af95", "sha256": "b17a2de00ef9492f5ac3290267243352f3d25e0a80d22a552ed909eb9ac4d574" }, "downloads": -1, "filename": "oasislmf-0.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e2167da408cfcf27f2d044f2ee60af95", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 79720, "upload_time": "2018-02-28T17:08:19", "url": "https://files.pythonhosted.org/packages/0d/07/53e56785067aa444b8a126f7fbefc8b903c2274af395164d9fbef91e4fd9/oasislmf-0.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "918ba5728df6bfcdc40e82b314f3c5e4", "sha256": "9147b16225d271bd7d9b37ad3b5fd2e502dcfb7f77d110d0af4f91b829f66aea" }, "downloads": -1, "filename": "oasislmf-0.0.1.tar.gz", "has_sig": false, "md5_digest": "918ba5728df6bfcdc40e82b314f3c5e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59670, "upload_time": "2018-02-28T17:08:21", "url": "https://files.pythonhosted.org/packages/a6/ac/fc1a9bd0b8e2a1aa8f76c0be6a6d5ee382e39768e84122c846a1b1190521/oasislmf-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "2d174e7de3ad1408d076662057c46346", "sha256": "61c16da5a310bf7f3453e311e34f50ebfd23faa0021e1d29eb09e31db3e58a1d" }, "downloads": -1, "filename": "oasislmf-0.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2d174e7de3ad1408d076662057c46346", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49974, "upload_time": "2018-03-07T11:09:39", "url": "https://files.pythonhosted.org/packages/6c/f0/72ea545a538ebf7886968febe2c8360340ff42c84254e7812b28d2ad077e/oasislmf-0.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "744d387c1073db5f8a6ac0ebbb1584c0", "sha256": "8c838b5974fd46fa00893fcfd56b10ea07ebcbcfcfdac64d726b2204eeacba12" }, "downloads": -1, "filename": "oasislmf-0.0.2.tar.gz", "has_sig": false, "md5_digest": "744d387c1073db5f8a6ac0ebbb1584c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61543, "upload_time": "2018-03-06T18:03:42", "url": "https://files.pythonhosted.org/packages/5b/14/f527f0721b7f66764bc3ab653bce577b9e594068a0e71f548926b3e81c2b/oasislmf-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "c113e375a23875f825fabcfb191412ec", "sha256": "34e706f7a16383c5e31adf1fdb0d0edabf44b5f65e7e59f6a0de72eb8b6331d6" }, "downloads": -1, "filename": "oasislmf-0.0.3.tar.gz", "has_sig": false, "md5_digest": "c113e375a23875f825fabcfb191412ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39116, "upload_time": "2018-03-07T11:32:59", "url": "https://files.pythonhosted.org/packages/e3/ba/a67843e572e535e7b99333c8b21a824882baf212931a074ff0b5a2f545cb/oasislmf-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "a848faae3e0483044a5653908bfa2676", "sha256": "eb79a7e27e209371d9279864149ab6181ba13518ed9176a534bb5254c352cb12" }, "downloads": -1, "filename": "oasislmf-0.0.4.tar.gz", "has_sig": false, "md5_digest": "a848faae3e0483044a5653908bfa2676", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39251, "upload_time": "2018-03-08T12:11:45", "url": "https://files.pythonhosted.org/packages/42/64/6664659f03a2425481075bd5b9986243b8aa1685acb58d41912433ea8fa0/oasislmf-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "5069e13583e82f3f6bee8da378d7cc4c", "sha256": "0fe350b4eb31eb7db69c1c659c24f32574a965d425d6cfb6a8a05f5a405bfcd4" }, "downloads": -1, "filename": "oasislmf-0.0.5.tar.gz", "has_sig": false, "md5_digest": "5069e13583e82f3f6bee8da378d7cc4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39046, "upload_time": "2018-03-08T14:25:12", "url": "https://files.pythonhosted.org/packages/31/72/bb062d5d535723357827c39613842f5029f80d98e947a9003f613c24f9df/oasislmf-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "f96f71b6f6318ad2e0a8360208a3e9ae", "sha256": "9ffa5e0395dd2513b1859d262b8ff57efa1fb4ea951b092dfa50f149c5f1f044" }, "downloads": -1, "filename": "oasislmf-0.0.6.tar.gz", "has_sig": false, "md5_digest": "f96f71b6f6318ad2e0a8360208a3e9ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39060, "upload_time": "2018-03-08T17:06:12", "url": "https://files.pythonhosted.org/packages/3b/90/a483e3dee9b15d9b67215ac595319d95956b182ff59b80c7f33d1254bd6d/oasislmf-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "2866b351e51c061750b3aae18d2f3802", "sha256": "c4ef57bd0cc3f8bf8e2af6606d4ca1475623ecedab1e7c5870930b69809c63af" }, "downloads": -1, "filename": "oasislmf-0.0.7.tar.gz", "has_sig": false, "md5_digest": "2866b351e51c061750b3aae18d2f3802", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39093, "upload_time": "2018-03-08T17:08:27", "url": "https://files.pythonhosted.org/packages/14/3b/45f0efab8acc57df3a37a8f1c90ff9a03702a21fc93ff7826d037315bbae/oasislmf-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "9aba5d45dc1fa20efcd9214cdba01338", "sha256": "5da9d9af339d8f10eda785b6ee76307bc39bb65b10be75e18f392d826d4631bd" }, "downloads": -1, "filename": "oasislmf-0.0.8.tar.gz", "has_sig": false, "md5_digest": "9aba5d45dc1fa20efcd9214cdba01338", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62304, "upload_time": "2018-03-12T13:23:15", "url": "https://files.pythonhosted.org/packages/54/2a/fca9df8b8f03a453e28a2af521bcfe2103532b6f2ee56d88f8f0c90d0299/oasislmf-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "f57eab93805bc1ab12fd8c798895e0f1", "sha256": "d0d1cb30fd31b6c6f188281f6fa75aba45515b550720e9c7b7972f5d6b33fb7f" }, "downloads": -1, "filename": "oasislmf-0.0.9.tar.gz", "has_sig": true, "md5_digest": "f57eab93805bc1ab12fd8c798895e0f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62311, "upload_time": "2018-03-12T15:26:46", "url": "https://files.pythonhosted.org/packages/c8/28/3ad3f6bf94214664216a9278ff3adb82899c19e1a78d58523a8e699df050/oasislmf-0.0.9.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "aa269619f954017eb0afd16bac6d6b44", "sha256": "d06a2cefbff4d41e8777bdc69617614fde2072062be53ff9c5f077eb7bbe2c2a" }, "downloads": -1, "filename": "oasislmf-1.0.0.tar.gz", "has_sig": true, "md5_digest": "aa269619f954017eb0afd16bac6d6b44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62352, "upload_time": "2018-03-14T12:51:29", "url": "https://files.pythonhosted.org/packages/2a/61/23ad87e730702b5227b926fd65cc0748e0644ddf5fb1e62a2b6f0f9e956d/oasislmf-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "e0dd6f94ae87ba7aa9fa95ebab2bab98", "sha256": "4e1aa05b25d535a11afa43c2b9464640678700a98c10fb86ffd20597b7fec675" }, "downloads": -1, "filename": "oasislmf-1.0.1.tar.gz", "has_sig": true, "md5_digest": "e0dd6f94ae87ba7aa9fa95ebab2bab98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63620, "upload_time": "2018-03-19T13:07:51", "url": "https://files.pythonhosted.org/packages/c4/55/7a08a636eeed9a61a8121798e89dd86bb3605baafaddb9f693b12934e111/oasislmf-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "04a19c5f4c4a01d57ee055f159ca82d1", "sha256": "c7ba6e557060d67c451f69847e8aa09b8c5223bfbf73dd9be8863fa4a7cded9a" }, "downloads": -1, "filename": "oasislmf-1.0.2.tar.gz", "has_sig": true, "md5_digest": "04a19c5f4c4a01d57ee055f159ca82d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41075, "upload_time": "2018-03-23T09:43:01", "url": "https://files.pythonhosted.org/packages/16/27/086182117cb6684bfd212a4bd166596c6ebad2351735a90c6402a9ce8937/oasislmf-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "3fffb04fdb882ebef2be924bed42533b", "sha256": "f1d5611ae4c4bbbd6f29fc7f680b14620c667f3a4bc5cdb69c0005ab493ea1f3" }, "downloads": -1, "filename": "oasislmf-1.0.3.tar.gz", "has_sig": true, "md5_digest": "3fffb04fdb882ebef2be924bed42533b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41084, "upload_time": "2018-03-23T11:45:43", "url": "https://files.pythonhosted.org/packages/ba/56/843bc84bb37772544b570e29a1a2a51e1f19cfab844b8f961dbaaf4f838f/oasislmf-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "4b9ebd40d8d5c140b9be5c455b0d2c47", "sha256": "1d205f76d6b2f3e24f8407c017ff8ab92a53c9444ac5e18abb91a33c1b999e00" }, "downloads": -1, "filename": "oasislmf-1.0.4.tar.gz", "has_sig": true, "md5_digest": "4b9ebd40d8d5c140b9be5c455b0d2c47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40947, "upload_time": "2018-03-23T13:55:13", "url": "https://files.pythonhosted.org/packages/5e/2f/e64861400e4cdb58c29db0cca1732f5fe9483828f2ceebae47a34302bc59/oasislmf-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "54ddb48c94f64ff97f2503adbaf76c8f", "sha256": "86883aafa89712d07b785037ff18cf257397516438b50fd422dc4a16735cc8e7" }, "downloads": -1, "filename": "oasislmf-1.0.5.tar.gz", "has_sig": true, "md5_digest": "54ddb48c94f64ff97f2503adbaf76c8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67175, "upload_time": "2018-03-26T18:02:29", "url": "https://files.pythonhosted.org/packages/72/bd/99f22bb182583224d5dd36462f032f178be2401f8e565902220fd0769fa4/oasislmf-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "5b51abf8faa208fc6cd928d7ed79363b", "sha256": "af2c0d7cdaf4f4d2a060b7737f54d2d0b6adca9cb8bd297dae33f343e3c90af6" }, "downloads": -1, "filename": "oasislmf-1.0.6.tar.gz", "has_sig": true, "md5_digest": "5b51abf8faa208fc6cd928d7ed79363b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63738, "upload_time": "2018-04-05T13:22:40", "url": "https://files.pythonhosted.org/packages/0f/10/1ad81ed21629b3a3eb697cef96a79d8c203af6db0f274ff8ab57cc6f8d07/oasislmf-1.0.6.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "eb77d4974a00dd7b3c04098e4b7b9e7b", "sha256": "e954d8bdb156ec72a3a451aed25a9cb33405f2a78132b49fa9ee5a6876f29904" }, "downloads": -1, "filename": "oasislmf-1.0.7.tar.gz", "has_sig": true, "md5_digest": "eb77d4974a00dd7b3c04098e4b7b9e7b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42131, "upload_time": "2018-04-05T16:27:22", "url": "https://files.pythonhosted.org/packages/bf/b6/35be395a24a31c088ddbac564ecd1b48bbe42ff61d1c2766d47a6f2feadd/oasislmf-1.0.7.tar.gz" } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "d9f3fe999f29b4a4a7a85c7c7030d061", "sha256": "59a367046d7a1365edf88469f5183ab1148b2b30cf4948b3057965924c0f816a" }, "downloads": -1, "filename": "oasislmf-1.0.8.tar.gz", "has_sig": true, "md5_digest": "d9f3fe999f29b4a4a7a85c7c7030d061", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42243, "upload_time": "2018-04-11T18:16:59", "url": "https://files.pythonhosted.org/packages/ff/a7/73768639050599999763e492b824e97428b485bed373af8ede0061e6431e/oasislmf-1.0.8.tar.gz" } ], "1.0.9": [ { "comment_text": "", "digests": { "md5": "d7f65853686c9afe6a962ea245c43e4d", "sha256": "d9eb9ae7bc83a05f06a80b516c65c9865adc5e5a5c50fc02a602dbf6217b499a" }, "downloads": -1, "filename": "oasislmf-1.0.9.tar.gz", "has_sig": true, "md5_digest": "d7f65853686c9afe6a962ea245c43e4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64001, "upload_time": "2018-04-14T18:09:15", "url": "https://files.pythonhosted.org/packages/74/1b/941bf555cce838cc822e514381f51786ba330d5f5d28920be34ca3566619/oasislmf-1.0.9.tar.gz" } ], "1.1.10": [ { "comment_text": "", "digests": { "md5": "6788b145be8623ce6817e980e2edd725", "sha256": "99d7f175a528c562fe565dff3b0cf56946a0a65e6ab9309d1e9f64c0b075f6e1" }, "downloads": -1, "filename": "oasislmf-1.1.10.tar.gz", "has_sig": true, "md5_digest": "6788b145be8623ce6817e980e2edd725", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64045, "upload_time": "2018-04-16T15:57:16", "url": "https://files.pythonhosted.org/packages/61/70/4146aa9efef9ba7af82f71e9a704859984962be1c6e478ab98bff25750cb/oasislmf-1.1.10.tar.gz" } ], "1.1.11": [ { "comment_text": "", "digests": { "md5": "d6350faf92dd5621da61ff77216e23b6", "sha256": "2009e085a924dbacf7808021be4cf11eebef12118248b09f662f4c107e097cb0" }, "downloads": -1, "filename": "oasislmf-1.1.11.tar.gz", "has_sig": true, "md5_digest": "d6350faf92dd5621da61ff77216e23b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42492, "upload_time": "2018-05-09T10:31:26", "url": "https://files.pythonhosted.org/packages/65/c0/f6e0903a7d897c28a7f5692a2a972ede0a8dc4c6ada32906707f03274d4a/oasislmf-1.1.11.tar.gz" } ], "1.1.12": [ { "comment_text": "", "digests": { "md5": "e085d86353bea2cb141cdf0476c7cb8d", "sha256": "4a798e9ac0a8108bff732bcc6f35fc34a09180abf846221dfd23a9a9763294a6" }, "downloads": -1, "filename": "oasislmf-1.1.12.tar.gz", "has_sig": true, "md5_digest": "e085d86353bea2cb141cdf0476c7cb8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65343, "upload_time": "2018-05-21T11:57:10", "url": "https://files.pythonhosted.org/packages/6f/b9/72a274c4a59a151a8be8434891a4a2836ac02aeafb58020c5279decb4e9a/oasislmf-1.1.12.tar.gz" } ], "1.1.13": [ { "comment_text": "", "digests": { "md5": "f25db55b3c23d2345dd0ff000383c547", "sha256": "572556b936830add62093dafe7fa9c1ca63288881ec3f52d17c5c027eb01d7d5" }, "downloads": -1, "filename": "oasislmf-1.1.13.tar.gz", "has_sig": true, "md5_digest": "f25db55b3c23d2345dd0ff000383c547", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43212, "upload_time": "2018-05-30T10:26:11", "url": "https://files.pythonhosted.org/packages/3b/a7/915d1565471d7a86535e99fff656bc87d4531b91a71d255a655f98008843/oasislmf-1.1.13.tar.gz" } ], "1.1.14": [ { "comment_text": "", "digests": { "md5": "eb53b99d554495596a2f929a3c5079a0", "sha256": "c2fa20265500ab7127390766e583721c5de5b11db5e07cd78dfcacb709eea1ef" }, "downloads": -1, "filename": "oasislmf-1.1.14.tar.gz", "has_sig": true, "md5_digest": "eb53b99d554495596a2f929a3c5079a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65845, "upload_time": "2018-05-31T17:37:14", "url": "https://files.pythonhosted.org/packages/a9/19/bb99b63e7c131367b3dd8a3f18f0bd3da9fd733a0e05ba04b9a5524db917/oasislmf-1.1.14.tar.gz" } ], "1.1.15": [ { "comment_text": "", "digests": { "md5": "bb0356cfa6e3dfa5e0055a52f2d40951", "sha256": "92a292b39e8cfe9b24f7c25ee4381a3e98bec2e77f08bbcbdc2826fb95ccb14d" }, "downloads": -1, "filename": "oasislmf-1.1.15.tar.gz", "has_sig": true, "md5_digest": "bb0356cfa6e3dfa5e0055a52f2d40951", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73460, "upload_time": "2018-06-15T11:47:30", "url": "https://files.pythonhosted.org/packages/c5/f6/bafcf885045b47c7f651dc071fe5dc243be552c122ce30f4fda8733927d0/oasislmf-1.1.15.tar.gz" } ], "1.1.16": [ { "comment_text": "", "digests": { "md5": "6df12f23deb44fbf49c9426027f35740", "sha256": "ec199c1818607b54a2c017a6d7d526e3ca29a6d05c6bb7a8c626ee4cee4737df" }, "downloads": -1, "filename": "oasislmf-1.1.16.tar.gz", "has_sig": false, "md5_digest": "6df12f23deb44fbf49c9426027f35740", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51062, "upload_time": "2018-06-15T12:35:01", "url": "https://files.pythonhosted.org/packages/f0/88/2f36beff5b740fbb63102149765fc951e1913558d5939eb45a07c3bccc0a/oasislmf-1.1.16.tar.gz" } ], "1.1.17": [ { "comment_text": "", "digests": { "md5": "6f87ff1376fc983f79845f07a9a8cd6c", "sha256": "0b17fbab3db41be826ed1dd93ff85deea321fa47601b8aeb6b1bd9ea97a33eed" }, "downloads": -1, "filename": "oasislmf-1.1.17.tar.gz", "has_sig": true, "md5_digest": "6f87ff1376fc983f79845f07a9a8cd6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73571, "upload_time": "2018-06-20T15:05:10", "url": "https://files.pythonhosted.org/packages/7e/a4/6f2310cf73e1d86bf142ab0145c57f0e72b4adcab1bbe717950239adf40d/oasislmf-1.1.17.tar.gz" } ], "1.1.18": [ { "comment_text": "", "digests": { "md5": "5ecb0aae19c0ceadf631e0751d1cf8c3", "sha256": "555d1b054187d0c78f4de99953c1ac263b75d6a15141645b67123c3afea4a91f" }, "downloads": -1, "filename": "oasislmf-1.1.18.tar.gz", "has_sig": true, "md5_digest": "5ecb0aae19c0ceadf631e0751d1cf8c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75497, "upload_time": "2018-06-21T13:42:03", "url": "https://files.pythonhosted.org/packages/17/0e/5558209360cb1764b22c890ae816ddde75691a61dc911bebc3958a9ed22c/oasislmf-1.1.18.tar.gz" } ], "1.1.19": [ { "comment_text": "", "digests": { "md5": "db3608c61cd3a3ec9040582801c1134e", "sha256": "09fd6b9fdadd4a7d9c2650ca0f5b2136f605cf4075740fefab67acd6681e3e58" }, "downloads": -1, "filename": "oasislmf-1.1.19.tar.gz", "has_sig": true, "md5_digest": "db3608c61cd3a3ec9040582801c1134e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75748, "upload_time": "2018-06-22T16:08:03", "url": "https://files.pythonhosted.org/packages/55/b7/441fb16aca1f449a6a5efdc3271b69bc28bfb0d4b5f1129fa6daf336b8b9/oasislmf-1.1.19.tar.gz" } ], "1.1.20": [ { "comment_text": "", "digests": { "md5": "0220f68a3d016a62419814d206773e63", "sha256": "d09ec562b45da9d112bec92815ed3b34150a5cfe1ab95fb16b3961a422aec29a" }, "downloads": -1, "filename": "oasislmf-1.1.20-1.tar.gz", "has_sig": true, "md5_digest": "0220f68a3d016a62419814d206773e63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55682, "upload_time": "2018-07-06T15:36:26", "url": "https://files.pythonhosted.org/packages/d7/59/ce207aecfc09cc8aa85f24a78aa70e1499a089fe118da251aaf00a7dfee0/oasislmf-1.1.20-1.tar.gz" } ], "1.1.21": [ { "comment_text": "", "digests": { "md5": "799524e8cada701acfbb1af85ff829ef", "sha256": "56b6d1f7d7ef919ccf4ecf81213d976a9b8d17cc36e810e74b17dca9ed1895a4" }, "downloads": -1, "filename": "oasislmf-1.1.21.tar.gz", "has_sig": true, "md5_digest": "799524e8cada701acfbb1af85ff829ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79000, "upload_time": "2018-07-25T12:13:56", "url": "https://files.pythonhosted.org/packages/e8/c3/db77972c6e0128257b4089d41b3efb8e8a224d6f352e2c88d1df48a1cd4f/oasislmf-1.1.21.tar.gz" } ], "1.1.22": [ { "comment_text": "", "digests": { "md5": "6dff63540267eb17227ef7d98450dfb0", "sha256": "528ae711d560847f4b7e40b99e6e7dde7a67fd68188ce1421b032c61aad4d8ab" }, "downloads": -1, "filename": "oasislmf-1.1.22.tar.gz", "has_sig": true, "md5_digest": "6dff63540267eb17227ef7d98450dfb0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79185, "upload_time": "2018-08-03T14:10:36", "url": "https://files.pythonhosted.org/packages/59/40/804e5caa37c7b29bb02c3a7ed224a9ac449031839406cc62b89501d69f02/oasislmf-1.1.22.tar.gz" } ], "1.1.23": [ { "comment_text": "", "digests": { "md5": "a9ba6f96132491e0df9ec37fe1bdbb39", "sha256": "29ebba9f3f01a258469405bfee541e5d9333d54829fdfbef42b415821e04d5ff" }, "downloads": -1, "filename": "oasislmf-1.1.23.tar.gz", "has_sig": true, "md5_digest": "a9ba6f96132491e0df9ec37fe1bdbb39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56678, "upload_time": "2018-08-03T15:30:53", "url": "https://files.pythonhosted.org/packages/d8/02/447f957cc8706f27005de2cc7d7ec4b4d4633f4cd693cb9419c82f4e474a/oasislmf-1.1.23.tar.gz" } ], "1.1.24": [ { "comment_text": "", "digests": { "md5": "ad38d92a1036f29e2e0e59bff5e2ac05", "sha256": "29c06fed44496db92b34a86474cb6e3617ef4ce889452e331824567585c3e829" }, "downloads": -1, "filename": "oasislmf-1.1.24.tar.gz", "has_sig": true, "md5_digest": "ad38d92a1036f29e2e0e59bff5e2ac05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79514, "upload_time": "2018-08-15T18:46:39", "url": "https://files.pythonhosted.org/packages/25/7e/31b469661d4f29c8180c546ccc5ed3cc30fe9ede279f13df9908a15bf3c5/oasislmf-1.1.24.tar.gz" } ], "1.1.25": [ { "comment_text": "", "digests": { "md5": "84bd5fefaec4957ae98bd22ea066033f", "sha256": "f35cefc7f43ddc5bf0826a8209aaf2428cec062545e23c57d804fb00f0ced38b" }, "downloads": -1, "filename": "oasislmf-1.1.25.tar.gz", "has_sig": true, "md5_digest": "84bd5fefaec4957ae98bd22ea066033f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55937, "upload_time": "2018-08-28T17:32:12", "url": "https://files.pythonhosted.org/packages/f8/30/f465bbd1fb4529a864f663543a0eb03f372c5aa2ccd172e8915551d688dc/oasislmf-1.1.25.tar.gz" } ], "1.1.26": [ { "comment_text": "", "digests": { "md5": "4957e67d0fa4a1527a0dee7f091bd9e3", "sha256": "b0f82db7934e2ddc056429f3cc92bf5b33fbe4aff96b663386607b3c3de6f1fb" }, "downloads": -1, "filename": "oasislmf-1.1.26.tar.gz", "has_sig": true, "md5_digest": "4957e67d0fa4a1527a0dee7f091bd9e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66397, "upload_time": "2018-09-21T15:15:51", "url": "https://files.pythonhosted.org/packages/7e/15/7faa4a7853cfa73bf638e0c13b5ecbae99d56a42dc612a680dc76fa13d5b/oasislmf-1.1.26.tar.gz" } ], "1.1.27": [ { "comment_text": "", "digests": { "md5": "18162c40a6987c765af8e7dff0752629", "sha256": "79a7b105415b75abad57d9d5077e0f13424b67db773e54871bff046569296a7b" }, "downloads": -1, "filename": "oasislmf-1.1.27.tar.gz", "has_sig": true, "md5_digest": "18162c40a6987c765af8e7dff0752629", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66540, "upload_time": "2018-10-12T13:04:38", "url": "https://files.pythonhosted.org/packages/ba/d1/7254056ac9a5263a552010e74042fb134773d9a5307a05d393f10922a266/oasislmf-1.1.27.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "6ee69298ad9ce68f27ac8009661e23c9", "sha256": "c2b2d801a3ec34579c50a13b18e6dbf4dc565725969d8778e0a72558e260c356" }, "downloads": -1, "filename": "oasislmf-1.2.0.tar.gz", "has_sig": true, "md5_digest": "6ee69298ad9ce68f27ac8009661e23c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108923, "upload_time": "2018-10-30T20:17:58", "url": "https://files.pythonhosted.org/packages/fb/8d/bb2b8edb4cce4383ef3953eeebdb7698aa613e89c3340ca9148ca23eb2cf/oasislmf-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "70daaa98747b897b32cfd9ac56b5e18f", "sha256": "18b03ff2745ca4d08f4067e7378e1434623fc55c5cba9479ff31e367740434b5" }, "downloads": -1, "filename": "oasislmf-1.2.1.tar.gz", "has_sig": true, "md5_digest": "70daaa98747b897b32cfd9ac56b5e18f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79074, "upload_time": "2018-11-09T15:52:41", "url": "https://files.pythonhosted.org/packages/f8/ad/e33e9dc86843af27fe9a4a8bd03fb03b603b268ca2b0feaec2123334571c/oasislmf-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "e4b86bb01c19995ca87b9487d2e07f4f", "sha256": "7868cde7b2f424076106769e36971d4b7b1d3cb3eb4009976554b8f981929142" }, "downloads": -1, "filename": "oasislmf-1.2.2.tar.gz", "has_sig": true, "md5_digest": "e4b86bb01c19995ca87b9487d2e07f4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86712, "upload_time": "2018-12-11T12:21:25", "url": "https://files.pythonhosted.org/packages/a4/a9/62c4f8b58168134bc16774d520c88e374f0fac39132a9c333fad52e406b1/oasislmf-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "e26c51801aeeeb42b33381b87a33cbe4", "sha256": "6310529ead9a0935fbc8a575162892556a4016356f5deba1cf958cbfce115747" }, "downloads": -1, "filename": "oasislmf-1.2.3.tar.gz", "has_sig": true, "md5_digest": "e26c51801aeeeb42b33381b87a33cbe4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86725, "upload_time": "2018-12-18T13:51:42", "url": "https://files.pythonhosted.org/packages/cb/d8/5f8a1f242110d7cd144c40199cc995cfecde20f752480c61d374dbcf1132/oasislmf-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "cc2689ec4903d54662a7c6782f59dc69", "sha256": "53eb5c61644c16a7f04a860b9240da164d79d216cf555676fde8cf3026535ade" }, "downloads": -1, "filename": "oasislmf-1.2.4.tar.gz", "has_sig": true, "md5_digest": "cc2689ec4903d54662a7c6782f59dc69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93416, "upload_time": "2019-01-28T15:53:03", "url": "https://files.pythonhosted.org/packages/22/3d/f0e0d6914cd9daaec12615e4617a45e1bd939dd1b692607e9d285b2449bf/oasislmf-1.2.4.tar.gz" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "3072f708d6e76c0ac47516f31d1288a5", "sha256": "ebb0f583a8f521b4365ed93b439dff5983196a831e9460a58c23baf98ff84ece" }, "downloads": -1, "filename": "oasislmf-1.2.5.tar.gz", "has_sig": true, "md5_digest": "3072f708d6e76c0ac47516f31d1288a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93698, "upload_time": "2019-01-30T16:57:54", "url": "https://files.pythonhosted.org/packages/9f/16/d0da8ed3319e341d69fd166996710bb79ee6f8d5e2d50e97a81fa309679c/oasislmf-1.2.5.tar.gz" } ], "1.2.6": [ { "comment_text": "", "digests": { "md5": "40a285b05fa232490e24ccf1d92455ce", "sha256": "eaa01aad23ba8f97fb89b289ea717d3e04a9b754ed56108f01ee5e4c87ec061c" }, "downloads": -1, "filename": "oasislmf-1.2.6-1.tar.gz", "has_sig": true, "md5_digest": "40a285b05fa232490e24ccf1d92455ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108370, "upload_time": "2019-02-06T14:26:08", "url": "https://files.pythonhosted.org/packages/8d/7d/393da18536a05a0392b16fcbe4d2ab99c2552ce9490f0441216c1d61dadf/oasislmf-1.2.6-1.tar.gz" } ], "1.2.7": [ { "comment_text": "", "digests": { "md5": "0a5ae798dd141a961e75aa0e9dc99273", "sha256": "c34496e308bba863fbdd54ac96162993cbc361b2e6f08f02ab5b56ca63a69961" }, "downloads": -1, "filename": "oasislmf-1.2.7.tar.gz", "has_sig": true, "md5_digest": "0a5ae798dd141a961e75aa0e9dc99273", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109147, "upload_time": "2019-02-07T18:41:48", "url": "https://files.pythonhosted.org/packages/3d/87/f3a309258d26a320d4f3c2771904554dd8c72177250e6ce89730fa96dc08/oasislmf-1.2.7.tar.gz" } ], "1.2.8": [ { "comment_text": "", "digests": { "md5": "3dddf2e7f8260b4638a72a3e609d831d", "sha256": "bc31251f0da6386b6372ecab07d536d1730c5893e056a5edb6c9e26b967af06e" }, "downloads": -1, "filename": "oasislmf-1.2.8.tar.gz", "has_sig": true, "md5_digest": "3dddf2e7f8260b4638a72a3e609d831d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109763, "upload_time": "2019-02-14T17:23:21", "url": "https://files.pythonhosted.org/packages/b3/bf/9d490c2b9f1ac4129db0d71a6e57444bfda2b195e990aed045954a5b8671/oasislmf-1.2.8.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "db9985f17cc7c04efabe4d267bc29891", "sha256": "04ed00b311d68562c541a4650b80f35e346dbdc69e2524d683fa6e27c660baa6" }, "downloads": -1, "filename": "oasislmf-1.3.0.tar.gz", "has_sig": true, "md5_digest": "db9985f17cc7c04efabe4d267bc29891", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88142, "upload_time": "2019-03-05T15:00:48", "url": "https://files.pythonhosted.org/packages/79/57/2316c96cf005071dff34ad043d5093d0794703d2bfa064967e5c0768ade0/oasislmf-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "a99526b886ff6f722020b4beb83e09b6", "sha256": "5185e462b648b0e43414225d7f7343b7850ca587fea193f405ccce9f86d3f287" }, "downloads": -1, "filename": "oasislmf-1.3.1.tar.gz", "has_sig": true, "md5_digest": "a99526b886ff6f722020b4beb83e09b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88241, "upload_time": "2019-03-07T11:56:32", "url": "https://files.pythonhosted.org/packages/f8/da/6840f860e466d353d2d0563a86f8b7264a19d940852960c520fcd1b44221/oasislmf-1.3.1.tar.gz" } ], "1.3.10": [ { "comment_text": "", "digests": { "md5": "065b9a95ec23b0897e4b98cca9d83ae0", "sha256": "86850459e4a73e83772237d1f845d4a398935b2f1db1586475c7ef7984394958" }, "downloads": -1, "filename": "oasislmf-1.3.10.tar.gz", "has_sig": true, "md5_digest": "065b9a95ec23b0897e4b98cca9d83ae0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 100599, "upload_time": "2019-06-05T10:36:54", "url": "https://files.pythonhosted.org/packages/6a/61/96086902da262da1561f23466e86e96adbd387aa87277aeddf1ba55c5cf1/oasislmf-1.3.10.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "874b3f28a54237dfc117bf6c1a6b324b", "sha256": "08b800326228232872b171f1e8cc110a92bae1203cb5e662d7621a90ff93a634" }, "downloads": -1, "filename": "oasislmf-1.3.2-1.tar.gz", "has_sig": true, "md5_digest": "874b3f28a54237dfc117bf6c1a6b324b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88311, "upload_time": "2019-03-08T16:57:25", "url": "https://files.pythonhosted.org/packages/04/1b/b84bb6fca3786035ac338d86dca3fd51367ce7e8fc4da00d934c0d30dc49/oasislmf-1.3.2-1.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "1cd97f04c69349ffd2d53bd33e3062aa", "sha256": "18b74f76299bbfb06c41147028e95042dbd492f27f047d109325f053fed82c41" }, "downloads": -1, "filename": "oasislmf-1.3.3.tar.gz", "has_sig": true, "md5_digest": "1cd97f04c69349ffd2d53bd33e3062aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88462, "upload_time": "2019-03-12T16:47:11", "url": "https://files.pythonhosted.org/packages/f9/f1/4cc08c6c09c5b5a98539046287554a00239f3a04f89fbd93ede1587aadd4/oasislmf-1.3.3.tar.gz" } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "e61e579c21e215d61eb7b67ee686fafa", "sha256": "13d819eb3e096a1fc1e54e05306ebc98b6129844ff22a005085940e47a168eac" }, "downloads": -1, "filename": "oasislmf-1.3.4.tar.gz", "has_sig": true, "md5_digest": "e61e579c21e215d61eb7b67ee686fafa", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 87722, "upload_time": "2019-04-04T09:06:22", "url": "https://files.pythonhosted.org/packages/9a/f6/cdaa22f2feecc33116b05d0f6bf1eda8ea84ad837fb38da118c8052626a7/oasislmf-1.3.4.tar.gz" } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "6458c9743173e8ec8e03e6260e15c80a", "sha256": "b1095c4ae9181b98ec83acd6c87a91403757dd8ae40f0f11c0ef12be5c210ef4" }, "downloads": -1, "filename": "oasislmf-1.3.5.tar.gz", "has_sig": true, "md5_digest": "6458c9743173e8ec8e03e6260e15c80a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 87763, "upload_time": "2019-04-04T13:33:19", "url": "https://files.pythonhosted.org/packages/b8/77/e2d2971d88e0e09212cacb493b585df92778ce5050d6dd56d8bed3352d71/oasislmf-1.3.5.tar.gz" } ], "1.3.6": [ { "comment_text": "", "digests": { "md5": "c4de28fb6d9ddf257525bb90b0679b11", "sha256": "3f86388c175346eafbe5259d2fd634b4dae18dc15b9dab1edeaa729ae9676bab" }, "downloads": -1, "filename": "oasislmf-1.3.6.tar.gz", "has_sig": true, "md5_digest": "c4de28fb6d9ddf257525bb90b0679b11", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 87853, "upload_time": "2019-04-05T14:46:26", "url": "https://files.pythonhosted.org/packages/48/24/2dbb4039acd69bfb758fa00988f72c9ee7e59f279b7f46e685d2999ed0fd/oasislmf-1.3.6.tar.gz" } ], "1.3.7": [ { "comment_text": "", "digests": { "md5": "6384a0d2002200ce6c2d2928901e9b03", "sha256": "95bae430361338572d77bd852b6819d00cdac252a21d41cd19b4e3bd357ab1b5" }, "downloads": -1, "filename": "oasislmf-1.3.7.tar.gz", "has_sig": true, "md5_digest": "6384a0d2002200ce6c2d2928901e9b03", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 87889, "upload_time": "2019-04-16T10:17:31", "url": "https://files.pythonhosted.org/packages/1e/10/3c288df19d7e4ac41c65c601a13a533e6c305995ea01998fbbf2930d4172/oasislmf-1.3.7.tar.gz" } ], "1.3.8": [ { "comment_text": "", "digests": { "md5": "b7cf4643f9dbc8283e5f61e256d83e2a", "sha256": "0fa2a29cf791a0dda50d299a91f5eec115e3f03eb370997f107f14f1e2e5ce5d" }, "downloads": -1, "filename": "oasislmf-1.3.8.tar.gz", "has_sig": true, "md5_digest": "b7cf4643f9dbc8283e5f61e256d83e2a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 100204, "upload_time": "2019-05-28T15:59:48", "url": "https://files.pythonhosted.org/packages/88/5a/b8197d62a80db20c2d2eb22d8a37e2b41c09ab1243b896cc10b159c682d2/oasislmf-1.3.8.tar.gz" } ], "1.3.9": [ { "comment_text": "", "digests": { "md5": "03fc5fed5acee939788b6b95b352aabc", "sha256": "6588bf4f66b38fed048bcb6f9660739536588f6c919bd274f5e70fa36a00a85b" }, "downloads": -1, "filename": "oasislmf-1.3.9.tar.gz", "has_sig": true, "md5_digest": "03fc5fed5acee939788b6b95b352aabc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 100547, "upload_time": "2019-06-04T13:34:14", "url": "https://files.pythonhosted.org/packages/cb/09/24a1edffc35c81db3008940de1cd4caef4588eab48d8a5151176c3074e81/oasislmf-1.3.9.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "8caa8cdbd177d7fe40422cad00a2c26a", "sha256": "d4582aec1c7fd0aa0442b53f5a51da630734f3a08e10b8929ba00f9e1d72e1dd" }, "downloads": -1, "filename": "oasislmf-1.4.0-py3-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "8caa8cdbd177d7fe40422cad00a2c26a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 699989, "upload_time": "2019-08-07T09:42:21", "url": "https://files.pythonhosted.org/packages/1a/0c/500abbf7616ca8ff07cd5c99f51c4134fee8532fca5d3b555ebe6e8502e7/oasislmf-1.4.0-py3-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "e870b38714daf71ccffab7e786ae631d", "sha256": "2053c70fe76b69dae8ae27d1de3df561e0a9a118f20de24698e5ae9e74404048" }, "downloads": -1, "filename": "oasislmf-1.4.0-py3-none-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "e870b38714daf71ccffab7e786ae631d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 43873362, "upload_time": "2019-07-26T19:02:50", "url": "https://files.pythonhosted.org/packages/e5/d0/5d6809b66662ce0f01aaf3a3bde913bf6dd2db9db5ce268586f836fa3f8f/oasislmf-1.4.0-py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "aa49ec261abfd3c4375803c5b40b971b", "sha256": "4abd5226d47e5ea520412ea6d39a032f2cc546e9147d2a4a578959d1102fac6c" }, "downloads": -1, "filename": "oasislmf-1.4.0.tar.gz", "has_sig": true, "md5_digest": "aa49ec261abfd3c4375803c5b40b971b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 113090, "upload_time": "2019-07-26T19:02:40", "url": "https://files.pythonhosted.org/packages/d8/7e/bc7a59afb8dd836ecc829c5fe561911e31d9953e437ec2013405edd6afb2/oasislmf-1.4.0.tar.gz" } ], "1.4.0a1": [ { "comment_text": "", "digests": { "md5": "f7b97777466cd091a5761e37ec2a80c5", "sha256": "e01e623cfb61545dc07a3302b2ec40225bdde27f8ddcdb77f50f8df2a92b91d6" }, "downloads": -1, "filename": "oasislmf-1.4.0a1-py3-none-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "f7b97777466cd091a5761e37ec2a80c5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 43862489, "upload_time": "2019-07-25T12:45:03", "url": "https://files.pythonhosted.org/packages/31/16/ab2ea854d0181d76032bf8642b30aade721969ecf04bd2917778caa84f22/oasislmf-1.4.0a1-py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2a6d4401aad27e5e927e6c9f0224f01c", "sha256": "df173c156626b9f7d8788d8f9d5b14df8aa295231bcd5979895e6350a28cb940" }, "downloads": -1, "filename": "oasislmf-1.4.0a1.tar.gz", "has_sig": true, "md5_digest": "2a6d4401aad27e5e927e6c9f0224f01c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 113100, "upload_time": "2019-07-25T12:34:15", "url": "https://files.pythonhosted.org/packages/c4/58/fca8ece79e8694411e1f59e465b95f6e189354a0c207e4a515c619f42a5a/oasislmf-1.4.0a1.tar.gz" } ], "1.4.0a2": [ { "comment_text": "", "digests": { "md5": "10ce85f1b0c16865e7d3ab0e8dafdda3", "sha256": "1efd383e76185f613508b3fee30181e9f6df6efbf8dfccfac7c8e66e798ba9bd" }, "downloads": -1, "filename": "oasislmf-1.4.0a2-py3-none-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "10ce85f1b0c16865e7d3ab0e8dafdda3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 43862472, "upload_time": "2019-07-25T14:24:43", "url": "https://files.pythonhosted.org/packages/92/f8/40cd48e7dcb51ea3ca97621f97fc5f7b1782149920df124dd6197418cf80/oasislmf-1.4.0a2-py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e536c7f0dd72d852371ac99445abe543", "sha256": "c56b3f0b80edbb9b034efc93c0772d2fa0ca524038864a9c126237e3fa0c3c34" }, "downloads": -1, "filename": "oasislmf-1.4.0a2.tar.gz", "has_sig": true, "md5_digest": "e536c7f0dd72d852371ac99445abe543", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 113109, "upload_time": "2019-07-25T14:24:34", "url": "https://files.pythonhosted.org/packages/27/18/55b79e5adfd80701f891c991e38d372c659ca31d1c14b694d13b34dbfbc6/oasislmf-1.4.0a2.tar.gz" } ], "1.4.0a3": [ { "comment_text": "", "digests": { "md5": "0834c0ebc5f646b009f802c781892f66", "sha256": "49ff350eb4925e13c18e3b3624d78fac13154fd95ff3b79990393b2b671a53ac" }, "downloads": -1, "filename": "oasislmf-1.4.0a3-py3-none-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "0834c0ebc5f646b009f802c781892f66", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 43862472, "upload_time": "2019-07-25T14:56:06", "url": "https://files.pythonhosted.org/packages/2c/ec/a25d947a25c91ebd96e1acee3fa6f8f6d0b465d249ce100e0f4e5ad0f14c/oasislmf-1.4.0a3-py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e4bb134a7f9b624cb7a7827c3b556c81", "sha256": "0064afa36245a3ed989cede4df450e18a3e7199a7a638c4fe5ff6c318c5f8fdb" }, "downloads": -1, "filename": "oasislmf-1.4.0a3.tar.gz", "has_sig": true, "md5_digest": "e4bb134a7f9b624cb7a7827c3b556c81", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 113128, "upload_time": "2019-07-25T14:55:55", "url": "https://files.pythonhosted.org/packages/e0/5c/d1ee3a5350fd00d58b34ebce4fc4204e6b9a5793fb4bfcb007000ad61fe7/oasislmf-1.4.0a3.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "9fad7681081fd0297cc3017c32367c81", "sha256": "34f1814299dafcd8451fc4919416e13fd1a111dcc94ddf5a605a5b57091b9657" }, "downloads": -1, "filename": "oasislmf-1.4.1-py3-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "9fad7681081fd0297cc3017c32367c81", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 766038, "upload_time": "2019-09-06T09:41:02", "url": "https://files.pythonhosted.org/packages/fd/5a/333dc7558c59fae9288217c281725122d289ff2e230eea2c6f24aa786a75/oasislmf-1.4.1-py3-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "4252557782664ee14130f19cb966442e", "sha256": "6c5be23d32f3ca10d1e2f7b6b9b8690864faf7eb0c19e70b9c1f81d2c67a8533" }, "downloads": -1, "filename": "oasislmf-1.4.1-py3-none-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "4252557782664ee14130f19cb966442e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 43964318, "upload_time": "2019-09-06T09:40:36", "url": "https://files.pythonhosted.org/packages/b4/7e/41496c1dfc2d9eaac332e7fa56511751218f0c1e84d4bcee3023351a4f08/oasislmf-1.4.1-py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ed0db5096bcfecd8516332faaa254258", "sha256": "ccefed01159796c9b0044789d8eee840e02a6b179002d705d1542277cefcce43" }, "downloads": -1, "filename": "oasislmf-1.4.1.tar.gz", "has_sig": true, "md5_digest": "ed0db5096bcfecd8516332faaa254258", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 131030, "upload_time": "2019-09-06T09:16:06", "url": "https://files.pythonhosted.org/packages/67/12/b174ab2a1536985bfd0c0a4e403061f4eeada0f6d1598f770687242813e1/oasislmf-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "d670b318388dd89ff030c21f111659e2", "sha256": "09afbbed221b30801658a4ef7cdb0f375ccc7859b83c313666ac5c5bd3be3072" }, "downloads": -1, "filename": "oasislmf-1.4.2-py3-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "d670b318388dd89ff030c21f111659e2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 788653, "upload_time": "2019-10-04T15:08:50", "url": "https://files.pythonhosted.org/packages/f5/f5/74d2f14b06b4dca161062144668cfe3ab914d7f70236203165813e222b3a/oasislmf-1.4.2-py3-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "08c1ee6e14bc50acfdebd811db8266db", "sha256": "86253ad91ef0ad42206b5ced314ed18922774e03e663c3a0e56393531c5cc2a4" }, "downloads": -1, "filename": "oasislmf-1.4.2-py3-none-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "08c1ee6e14bc50acfdebd811db8266db", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 47834585, "upload_time": "2019-10-04T15:08:44", "url": "https://files.pythonhosted.org/packages/4d/7c/f9fe8646b6f781eabe7fc262764cfcdd6f9f1adad2e507af3c55741765df/oasislmf-1.4.2-py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8d1fb2fc18b9752df469e37f9f746840", "sha256": "d2b3e23542a02ae11a33b3ee63f2d1a22dd66859f67fbc08cc3cc35c590c1ce6" }, "downloads": -1, "filename": "oasislmf-1.4.2.tar.gz", "has_sig": true, "md5_digest": "8d1fb2fc18b9752df469e37f9f746840", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 126576, "upload_time": "2019-10-04T15:08:37", "url": "https://files.pythonhosted.org/packages/37/9f/257e5fff13e0ec9f3758fb91fd1172c2fa89e11bbdd473b67b1e232c3ca6/oasislmf-1.4.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d670b318388dd89ff030c21f111659e2", "sha256": "09afbbed221b30801658a4ef7cdb0f375ccc7859b83c313666ac5c5bd3be3072" }, "downloads": -1, "filename": "oasislmf-1.4.2-py3-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "d670b318388dd89ff030c21f111659e2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 788653, "upload_time": "2019-10-04T15:08:50", "url": "https://files.pythonhosted.org/packages/f5/f5/74d2f14b06b4dca161062144668cfe3ab914d7f70236203165813e222b3a/oasislmf-1.4.2-py3-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "08c1ee6e14bc50acfdebd811db8266db", "sha256": "86253ad91ef0ad42206b5ced314ed18922774e03e663c3a0e56393531c5cc2a4" }, "downloads": -1, "filename": "oasislmf-1.4.2-py3-none-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "08c1ee6e14bc50acfdebd811db8266db", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 47834585, "upload_time": "2019-10-04T15:08:44", "url": "https://files.pythonhosted.org/packages/4d/7c/f9fe8646b6f781eabe7fc262764cfcdd6f9f1adad2e507af3c55741765df/oasislmf-1.4.2-py3-none-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8d1fb2fc18b9752df469e37f9f746840", "sha256": "d2b3e23542a02ae11a33b3ee63f2d1a22dd66859f67fbc08cc3cc35c590c1ce6" }, "downloads": -1, "filename": "oasislmf-1.4.2.tar.gz", "has_sig": true, "md5_digest": "8d1fb2fc18b9752df469e37f9f746840", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 126576, "upload_time": "2019-10-04T15:08:37", "url": "https://files.pythonhosted.org/packages/37/9f/257e5fff13e0ec9f3758fb91fd1172c2fa89e11bbdd473b67b1e232c3ca6/oasislmf-1.4.2.tar.gz" } ] }