{ "info": { "author": "Carroll, Christopher D; Palmer, Nathan; White, Matthew N.; Kazil, Jacqueline; Low, David C", "author_email": "econ-ark@jhuecon.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Financial and Insurance Industry", "Intended Audience :: Science/Research", "License :: OSI Approved", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Topic :: Other/Nonlisted Topic", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Mathematics" ], "description": "
\n \n \n \n
\n
\n\n[![Anaconda Cloud](https://anaconda.org/conda-forge/econ-ark/badges/version.svg?style=flat)](https://anaconda.org/conda-forge/econ-ark)\n[![PyPi](https://img.shields.io/pypi/v/econ-ark.png?style=flat)](https://pypi.org/project/econ-ark/)\n[![Documentation Status](https://readthedocs.org/projects/hark/badge/?style=flat&version=latest)](https://hark.readthedocs.io/en/latest/?badge=latest)\n[![GitHub Good First Issues](https://img.shields.io/github/issues/econ-ark/HARK/good%20first%20issue.svg)](https://github.com/econ-ark/HARK/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)\n[![Binder](https://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/econ-ark/DemARK/master)\n[![DOI](https://zenodo.org/badge/50448254.svg)](https://zenodo.org/badge/latestdoi/50448254)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![Powered by NumFOCUS](https://img.shields.io/badge/powered%20by-NumFOCUS-orange.svg?style=flat&colorA=E1523D&colorB=007D8A)](https://numfocus.org/)\n[![Donate](https://img.shields.io/badge/donate-$2-brightgreen.svg)](https://numfocus.salsalabs.org/donate-to-econ-ark/index.html)\n\n\n\n
\n\n# Heterogeneous Agents Resources and toolKit (HARK)\n\nHARK is a toolkit for the structural modeling of economic choices of optimizing and non-optimizing heterogeneous agents. For more information on using HARK, see the [Econ-ARK Website](https://econ-ark.org).\n\nThe Econ-ARK project uses an [open governance model](./GOVERNANCE.md) and is fiscally sponsored by [NumFOCUS](https://numfocus.org/). Consider making a [tax-deductible donation](https://numfocus.salsalabs.org/donate-to-econ-ark/index.html) to help the project pay for developer time, professional services, travel, workshops, and a variety of other needs.\n\n
\n \n \n \n
\n
\n\n**This project is bound by a [Code of Conduct](/.github/CODE_OF_CONDUCT.md).**\n\n# Table of Contents\n\n* [Install](#install)\n* [Usage](#usage)\n* [Citation](#citation)\n* [Support](#support)\n* [Release Types](#release-types)\n* [API Documentation](#api-documentation)\n* [Introduction](#introduction)\n * [For Students: A Gentle Introduction to Hark](#for-students-a-gentle-introduction-to-hark)\n * [For Economists: Structural Modeling with Hark](#for-economists-structural-modeling-with-hark)\n * [For Computational Economics Developers](#for-computational-economics-developers)\n* [Contributing to HARK](#contributing-to-hark)\n* [Current Project Team Members](#current-project-team-members)\n * [Founders](#founders)\n * [TSC (Technical Steering Commitee)](#tsc-technical-steering-committee)\n * [Collaborators](#collaborators)\n * [Release Team](#release-team)\n* [Contributors](#contributors)\n* [Disclaimer](#disclaimer)\n\n## Install\n\nInstall from [Anaconda Cloud](https://docs.anaconda.com/anaconda/install/) by running:\n\n`conda install econ-ark`\n\nInstall from [PyPi](https://pypi.org/) by running:\n\n`pip install econ-ark`\n\n## Usage\n\nWe start with almost the simplest possible consumption model: A consumer with CRRA utility \n\n
\n \n
\n\nhas perfect foresight about everything except the (stochastic) date of death.\n\nThe agent's problem can be written in [Bellman form](https://en.wikipedia.org/wiki/Bellman%E2%80%93Ford_algorithm) as:\n\n
\n \n
\n\n
\n\nTo model the above problem, start by importing the `PerfForesightConsumerType` model from the appropriate `HARK` module then create an agent instance using the appropriate paramaters:\n\n```python\nimport HARK \n\nfrom HARK.ConsumptionSaving.ConsIndShockModel import PerfForesightConsumerType\n\nPF_params = {\n 'CRRA' : 2.5, # Relative risk aversion\n 'DiscFac' : 0.96, # Discount factor\n 'Rfree' : 1.03, # Risk free interest factor\n 'LivPrb' : [0.98], # Survival probability\n 'PermGroFac' : [1.01], # Income growth factor\n 'T_cycle' : 1,\n 'cycles' : 0,\n 'AgentCount' : 10000\n}\n\n# Create an instance of a Perfect Foresight agent with the above paramaters\nPFexample = PerfForesightConsumerType(**PF_params) \n\n```\nOnce the model is created, ask the the agent to solve the problem with `.solve()`:\n\n```python\n# Tell the agent to solve the problem\nPFexample.solve()\n```\n\nSolving the problem populates the agent's `.solution` list attribute with solutions to each period of the problem. In the case of an infinite horizon model, there is just one element in the list, at **index-zero**. \n\nYou can retrieve the solution's consumption function from the `.cFunc` attribute:\n\n```python\n# Retrieve the consumption function of the solution\nPFexample.solution[0].cFunc\n```\n\nOr you can retrieve the solved value for human wealth normalized by permanent income from the solution's `.hNrm` attribute:\n\n```python\n# Retrieve the solved value for human wealth normalized by permanent income \nPFexample.solution[0].hNrm\n```\nFor a detailed explanation of the above example please see the demo notebook [*A Gentle Introduction to HARK*](https://mybinder.org/v2/gh/econ-ark/DemARK/master?filepath=notebooks/Gentle-Intro-To-HARK.ipynb).\n\nFor more examples please visit the [econ-ark/DemARK](https://github.com/econ-ark/DemARK) repository.\n\n## Citation\n\nIf using Econ-ARK in your work or research please [cite our Digital Object Identifier](http://doi.org/10.5281/zenodo.1001068) or copy the BibTex below.\n\n[![DOI](https://zenodo.org/badge/50448254.svg)](https://zenodo.org/badge/latestdoi/50448254)\n\n[1] Carroll, Christopher D, Palmer, Nathan, White, Matthew N., Kazil, Jacqueline, Low, David C, & Kaufman, Alexander. (2017, October 3). *econ-ark/HARK*\n\n**BibText**\n\n```\n@InProceedings{carroll_et_al-proc-scipy-2018,\n author = { {C}hristopher {D}. {C}arroll and {A}lexander {M}. {K}aufman and {J}acqueline {L}. {K}azil and {N}athan {M}. {P}almer and {M}atthew {N}. {W}hite },\n title = { {T}he {E}con-{A}{R}{K} and {H}{A}{R}{K}: {O}pen {S}ource {T}ools for {C}omputational {E}conomics },\n booktitle = { {P}roceedings of the 17th {P}ython in {S}cience {C}onference },\n pages = { 25 - 30 },\n year = { 2018 },\n editor = { {F}atih {A}kici and {D}avid {L}ippa and {D}illon {N}iederhut and {M} {P}acer },\n doi = { 10.25080/Majora-4af1f417-004 }\n}\n```\n\nFor more on acknowledging Econ-ARK [visit our website](https://econ-ark.org/acknowledging/).\n\n## Support\n\nLooking for help? Please open a [GitHub issue](https://github.com/econ-ark/HARK/issues/new) or reach out to the [TSC](#tsc-technical-steering-committee).\n\nFor more support options see [SUPPORT.md](./.github/SUPPORT.md).\n\n## Release Types\n\n* **Current**: Under active development. Code for the Current release is in the branch for its major version number (for example, v1.x).\n* **Development**: Under active development. Code for the Current release is in the development.\n* **Nightly**: Code from the master branch built every night when there are changes. Use with caution.\n\nCurrent releases follow [Semantic Versioning](https://semver.org/). For more information please see the [Release documentation](doc/release/README.md).\n\n## API Documentation\n\nDocumentation for the latest release is at [hark.readthedocs.io](https://hark.readthedocs.io/en/latest/). Version-specific documentation is available from the same source.\n\n## Introduction\n\n### For Students: A Gentle Introduction to HARK\n\nMost of what economists have done so far with 'big data' has been like what Kepler did with astronomical data: Organizing the data, and finding patterns and regularities and interconnections. \n\nAn alternative approach called 'structural modeling' aims to do, for economic data, what Newton did for astronomical data: Provide a deep and rigorous mathematical (or computational) framework that distills the essence of the underlying behavior that produces the 'big data.'\n\nThe notebook [*A Gentle Introduction to HARK*](https://mybinder.org/v2/gh/econ-ark/DemARK/master?filepath=notebooks/Gentle-Intro-To-HARK.ipynb) details how you can easily utilize our toolkit for structural modeling. Starting with a simple [Perfect Foresight Model](https://en.wikipedia.org/wiki/Rational_expectations) we solve an agent problem, then experiment with adding [income shocks](https://en.wikipedia.org/wiki/Shock_(economics)) and changing constructed attributes.\n\n### For Economists: Structural Modeling with HARK\n\nDissatisfaction with the ability of Representative Agent models to answer important questions raised by the Great Recession has led to a strong movement in the macroeconomics literature toward 'Heterogeneous Agent' models, in which microeconomic agents (consumers; firms) solve a structural problem calibrated to match microeconomic data; aggregate outcomes are derived by explicitly simulating the equilibrium behavior of populations solving such models.\n\nThe same kinds of modeling techniques are also gaining popularity among microeconomists, in areas ranging from labor economics to industrial organization. In both macroeconomics and structural micro, the chief barrier to the wide adoption of these techniques has been that programming a structural model has, until now, required a great deal of specialized knowledge and custom software development.\n\nHARK provides a robust, well-designed, open-source toolkit for building such models much more efficiently than has been possible in the past.\n\nOur [*DCEGM Upper Envelope*](https://mybinder.org/v2/gh/econ-ark/DemARK/master?filepath=notebooks%2FDCEGM-Upper-Envelope.ipynb) notebook illustrates using HARK to replicate the [Iskhakov, J\u00f8rgensen, Rust, and Schjerning paper](https://onlinelibrary.wiley.com/doi/abs/10.3982/QE643) for solving the discrete-continuous retirement saving problem. \n\nThe notebook [*Making Structural Estimates From Empirical Results*](https://mybinder.org/v2/gh/econ-ark/DemARK/master?filepath=notebooks%2FStructural-Estimates-From-Empirical-MPCs-Fagereng-et-al.ipynb) is another demonstration of using HARK to conduct a quick structural estimation based on Table 9 of [*MPC Heterogeneity and Household Balance Sheets* by Fagereng, Holm, and Natvik](https://www.ssb.no/en/forskning/discussion-papers/_attachment/286054?_ts=158af859c98).\n\n### For Computational Economics Developers\n\nHARK provides a modular and extensible open-source toolkit for solving heterogeneous-agent partial-and general-equilibrium structural models. The code for such models has always been handcrafted, idiosyncratic, poorly documented, and sometimes not generously shared from leading researchers to outsiders. The result being that it can take years for a new researcher to become proficient. By building an integrated system from the bottom up using object-oriented programming techniques and other tools, we aim to provide a platform that will become a focal point for people using such models. \n\nHARK is written in Python, making significant use of libraries such as numpy and scipy which offer a wide array of mathematical and statistical functions and tools. Our modules are generally categorized into Tools (mathematical functions and techniques), Models (particular economic models and solvers) and Applications (use of tools to simulate an economic phenomenon). \n\nFor more information on how you can create your own Models or use Tools and Model to create Applications please see the [Architecture documentation](./doc/architecture/README.md).\n\n### Contributing to HARK\n\n**We want contributing to Econ-ARK to be fun, enjoyable, and educational for anyone, and everyone.**\n\nContributions go far beyond pull requests and commits. Although we love giving you the opportunity to put your stamp on HARK, we are also thrilled to receive a variety of other contributions including:\n* Documentation updates, enhancements, designs, or bugfixes\n* Spelling or grammar fixes\n* REAME.md corrections or redesigns\n* Adding unit, or functional tests\n* [Triaging GitHub issues](https://github.com/econ-ark/HARK/issues?utf8=%E2%9C%93&q=label%3A%E2%80%9DTag%3A+Triage+Needed%E2%80%9D+) -- e.g. pointing out the relevant files, checking for reproducibility\n* [Searching for #econ-ark on twitter](https://twitter.com/search?q=webpack) and helping someone else who needs help\n* Answering questions from StackOverflow tagged with [econ-ark](https://stackoverflow.com/questions/tagged/econ-ark)\n* Teaching others how to contribute to HARK\n* Blogging, speaking about, or creating tutorials about HARK\n* Helping others in our mailing list\n\nIf you are worried or don\u2019t know how to start, you can always reach out to the [TSC](#tsc-technical-steering-committee) or simply submit [an issue](https://github.com/econ-ark/HARK/issues/new) and a member can help give you guidance!\n\n**After your first contribution please let us know and we will add you to the Contributors list below!**\n\nTo install for development see the [Quickstart Guide](./Documentation/readme.md#ii-quick-start-guide).\n\nFor more information on contributing to HARK please see [CONTRIBUTING.md](./CONTRIBUTING.md).\n\n## Current Project Team Members\n\nFor information about the governance of the Econ-ARK project, see\n[GOVERNANCE.md](./GOVERNANCE.md).\n\nCollaborators follow the [COLLABORATOR_GUIDE.md](./COLLABORATOR_GUIDE.md) in maintaining the Econ-ARK project.\n\n### Founders\nEcon-ARK was created by [**Christopher D. Carroll**](http://www.econ2.jhu.edu/people/ccarroll/), Professor of Economics at the Johns Hopkins University. \n\nFounders of the current repository also include:\n* [shaunagm](https://github.com/shaunagm) - **Shauna Gordon-McKeon** <shaunagm@gmail.com> (she/her)\n* [sbrice](https://github.com/sbrice) - [**Samuel Brice**](https://medium.com/@sbrice) <brices@gmail.com> (he/him)\n\n### TSC (Technical Steering Committee)\n* [llorracc](https://github.com/llorracc) - [**Christopher \u201cChris\u201d D. Carroll**]((http://www.econ2.jhu.edu/people/ccarroll/)) <ccarroll@llorracc.org> (he/him)\n* [sbrice](https://github.com/sbrice) - [**Samuel Brice**](https://medium.com/@sbrice) <brices@gmail.com> (he/him)\n* [shaunagm](https://github.com/shaunagm) - **Shauna Gordon-McKeon** <shaunagm@gmail.com> (she/her)\n\n### Collaborators\n* [albop](https://github.com/albop) - **Pablo Winant** <pablo.winant@gmail.com> (he/him)\n* [DrDrij](https://github.com/DrDrij) - **Andrij Stachurski** <dr.drij@gmail.com> (he/him)\n\n### Release Team\n* [shaunagm](https://github.com/shaunagm) - **Shauna Gordon-McKeon** <shaunagm@gmail.com> (she/her)\n\n## Contributors\n* [ericholscher](https://github.com/ericholscher) - **Eric Holscher** (he/him)\n\n## Disclaimer\n\nThis is a beta version of HARK. The code has not been extensively tested as it should be. We hope it is useful, but there are absolutely no guarantees (expressed or implied) that it works or will do what you want. Use at your own risk. And please, let us know if you find bugs by posting an issue to [the GitHub page](https://github.com/econ-ark/HARK)!", "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/econ-ark/HARK", "keywords": "economics modelling modeling heterogeneity", "license": "Apache", "maintainer": "", "maintainer_email": "", "name": "econ-ark", "package_url": "https://pypi.org/project/econ-ark/", "platform": "", "project_url": "https://pypi.org/project/econ-ark/", "project_urls": { "Bug Reports": "https://github.com/econ-ark/HARK/issues", "Documentation": "https://econ-ark.github.io/HARK", "Homepage": "https://github.com/econ-ark/HARK" }, "release_url": "https://pypi.org/project/econ-ark/0.10.2/", "requires_dist": null, "requires_python": ">=2.7", "summary": "Heterogenous Agents Resources & toolKit", "version": "0.10.2" }, "last_serial": 5925680, "releases": { "0.10.0.dev1": [ { "comment_text": "", "digests": { "md5": "1e17b6e400f9b6e8a6fdbfbad9db477e", "sha256": "d6748a9dbafcf79622467319cb49e57e784ed4edabc8a2b53b56a4521144253b" }, "downloads": -1, "filename": "econ-ark-0.10.0.dev1.tar.gz", "has_sig": false, "md5_digest": "1e17b6e400f9b6e8a6fdbfbad9db477e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 219377, "upload_time": "2019-04-12T18:10:13", "url": "https://files.pythonhosted.org/packages/50/19/5b0b90a95e7b4e2b98e72cf7ca9b585c4e78e1996e9a8b1406659655edb2/econ-ark-0.10.0.dev1.tar.gz" } ], "0.10.0.dev2": [ { "comment_text": "", "digests": { "md5": "443b2034f08670eb51330815f260f93e", "sha256": "d14170e9a70d95c9380bc1bc16b73876d88a0c86d37e293ae84c6d052148d8f2" }, "downloads": -1, "filename": "econ-ark-0.10.0.dev2.tar.gz", "has_sig": false, "md5_digest": "443b2034f08670eb51330815f260f93e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 219436, "upload_time": "2019-04-18T17:32:46", "url": "https://files.pythonhosted.org/packages/e8/25/9a8dc8111afccbd75d0f85b33233a3825c437a55f0b79ac3f44eff33146e/econ-ark-0.10.0.dev2.tar.gz" } ], "0.10.0.dev3": [ { "comment_text": "", "digests": { "md5": "a99c56137efaa5c4729dc0fcf144ba19", "sha256": "2e8b049a2d6b2c10df17e026f83dfac04430b1423e504590c1daecef41bd6642" }, "downloads": -1, "filename": "econ-ark-0.10.0.dev3.tar.gz", "has_sig": false, "md5_digest": "a99c56137efaa5c4729dc0fcf144ba19", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 234876, "upload_time": "2019-05-18T23:42:32", "url": "https://files.pythonhosted.org/packages/56/dd/54d08d625fbfdbcd93118a9718e1f9ef71935b4e7df6091245c328647735/econ-ark-0.10.0.dev3.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "916bcdd20062c434f61852ef21492ff1", "sha256": "3cad9a2dd17f56e05ffed95668a02c1b8dd3d1c3583872424098ad643c1484bf" }, "downloads": -1, "filename": "econ-ark-0.10.1.tar.gz", "has_sig": false, "md5_digest": "916bcdd20062c434f61852ef21492ff1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 237045, "upload_time": "2019-05-30T15:52:14", "url": "https://files.pythonhosted.org/packages/57/1b/b87229c727fb1731dc2a1a3ac45299668dfe7e0349c2c053091451a7e38a/econ-ark-0.10.1.tar.gz" } ], "0.10.1.dev1": [ { "comment_text": "", "digests": { "md5": "a667e6b654453f5316190a0f5af3f8c9", "sha256": "4bea4e31765b5d9e44348da2a2a757b97ee1dee073d56d667ae65a782b5e57f3" }, "downloads": -1, "filename": "econ-ark-0.10.1.dev1.tar.gz", "has_sig": false, "md5_digest": "a667e6b654453f5316190a0f5af3f8c9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 428724, "upload_time": "2019-07-20T15:40:32", "url": "https://files.pythonhosted.org/packages/40/da/bdd4568add35a20b3c70b18d00d430df4f0dc8d3a577b15131b561f6f4a2/econ-ark-0.10.1.dev1.tar.gz" } ], "0.10.1.dev2": [ { "comment_text": "", "digests": { "md5": "84bff82c5a654ec72d47c698fa54d1e3", "sha256": "66cb1d26803c3eccd6d11e71fda909ce6b5b01b671314289a15a0009997c5b89" }, "downloads": -1, "filename": "econ-ark-0.10.1.dev2.tar.gz", "has_sig": false, "md5_digest": "84bff82c5a654ec72d47c698fa54d1e3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 429022, "upload_time": "2019-07-22T23:11:56", "url": "https://files.pythonhosted.org/packages/33/f3/9d5c45134cdc9ab3df50dc73713f0e75692bd4a57bcfd25f09dae8b4eb26/econ-ark-0.10.1.dev2.tar.gz" } ], "0.10.1.dev3": [ { "comment_text": "", "digests": { "md5": "9c1158a61eddc6f088a7dd9fb94c8093", "sha256": "b09754e2b427e22f90b9c4c8efd6d17f5e21b13ced080bd687f20773125d461f" }, "downloads": -1, "filename": "econ-ark-0.10.1.dev3.tar.gz", "has_sig": false, "md5_digest": "9c1158a61eddc6f088a7dd9fb94c8093", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 429051, "upload_time": "2019-07-23T18:25:43", "url": "https://files.pythonhosted.org/packages/b6/6a/bf17dbab86e377ca4e51027909007bd318cb6c103438162280d1d91005c1/econ-ark-0.10.1.dev3.tar.gz" } ], "0.10.1.dev4": [ { "comment_text": "", "digests": { "md5": "c16f267fdb9ed3f1e25e04cdf173d43d", "sha256": "5da833c66a42f6fcbed3528e5c172ceec3f931dfbba592b19ec23cc6317ab971" }, "downloads": -1, "filename": "econ-ark-0.10.1.dev4.tar.gz", "has_sig": false, "md5_digest": "c16f267fdb9ed3f1e25e04cdf173d43d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 415969, "upload_time": "2019-09-19T20:04:38", "url": "https://files.pythonhosted.org/packages/69/4f/f138ce63f8a6d0c705125043a6c40ee78b5a39e34785f78927c49b81ee06/econ-ark-0.10.1.dev4.tar.gz" } ], "0.10.1.dev5": [ { "comment_text": "", "digests": { "md5": "28d6992a44aff9b57b428173e5884150", "sha256": "27aaac4c2d829f59ff75e5ee07a4e27715ae6437fab101689c2c3e9d3794c6fd" }, "downloads": -1, "filename": "econ-ark-0.10.1.dev5.tar.gz", "has_sig": false, "md5_digest": "28d6992a44aff9b57b428173e5884150", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 426647, "upload_time": "2019-09-25T15:43:58", "url": "https://files.pythonhosted.org/packages/c6/5e/c6d57197a8856ed034c42f1ed4601e2f309ec58fd457bd3f975e25398b90/econ-ark-0.10.1.dev5.tar.gz" } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "ad4b874333b470bc51deb1373a41ac54", "sha256": "0e6596ac3b5f6777fc84fd2a3e6fdfa99972427b2e207be7ebe32c8139867a6c" }, "downloads": -1, "filename": "econ-ark-0.10.2.tar.gz", "has_sig": false, "md5_digest": "ad4b874333b470bc51deb1373a41ac54", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 427072, "upload_time": "2019-10-03T22:25:43", "url": "https://files.pythonhosted.org/packages/17/70/84b6f0e5a9b388aa9852e9c9af49fa477342dbde007d00c2f72da04cd460/econ-ark-0.10.2.tar.gz" } ], "0.8.0.dev1": [ { "comment_text": "", "digests": { "md5": "e0d66febf838bb9595043d5645728089", "sha256": "2e57af2d57697db5edfab0a9312e311a9cb09d4c3c625ab9fe83e1cab3225d38" }, "downloads": -1, "filename": "econ-ark-0.8.0.dev1.tar.gz", "has_sig": false, "md5_digest": "e0d66febf838bb9595043d5645728089", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.*", "size": 10778686, "upload_time": "2018-05-19T20:55:17", "url": "https://files.pythonhosted.org/packages/39/c7/a4936f853edf1da06c1c1c1872cf87b8e97e9e497a17f5879ef95b1db8cf/econ-ark-0.8.0.dev1.tar.gz" } ], "0.8.0.dev2": [ { "comment_text": "", "digests": { "md5": "fd10203672c8dcf524edac9c2bb2fcb8", "sha256": "e8dfb0dcc4d660c1138c8fc4f8493cebd04f10040534a3f4ca6716010255eb95" }, "downloads": -1, "filename": "econ-ark-0.8.0.dev2.tar.gz", "has_sig": false, "md5_digest": "fd10203672c8dcf524edac9c2bb2fcb8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.*", "size": 10779305, "upload_time": "2018-05-20T01:35:47", "url": "https://files.pythonhosted.org/packages/2e/24/a055ecb2790dae8914341e01a6045af7138c3ee628bd44e82e1c388d39de/econ-ark-0.8.0.dev2.tar.gz" } ], "0.8.0.dev3": [ { "comment_text": "", "digests": { "md5": "f948389e6cc8eb47601d8f6f26c7195b", "sha256": "567ab71fa18ba52373cce10c868d015c652a89a598ad30f5f947d8b5aa4e46a7" }, "downloads": -1, "filename": "econ-ark-0.8.0.dev3.tar.gz", "has_sig": false, "md5_digest": "f948389e6cc8eb47601d8f6f26c7195b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.*", "size": 10778318, "upload_time": "2018-05-20T23:49:55", "url": "https://files.pythonhosted.org/packages/40/e2/fd0ba9890096ee839583e378fdff408363a040c117bac89b8867e46ea9aa/econ-ark-0.8.0.dev3.tar.gz" } ], "0.8.0.dev4": [ { "comment_text": "", "digests": { "md5": "ef44e77fe3ca0d6a6be4781b39bb7c82", "sha256": "9ea673cf914e599ab73fac29ef6c85c877ee7fa34635dd6cfb83b78abc917238" }, "downloads": -1, "filename": "econ-ark-0.8.0.dev4.tar.gz", "has_sig": false, "md5_digest": "ef44e77fe3ca0d6a6be4781b39bb7c82", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.*", "size": 10778872, "upload_time": "2018-05-21T21:29:26", "url": "https://files.pythonhosted.org/packages/b8/da/ff564e221278f5dedd0ae50497a63688fa527067647de2023d11f060e8be/econ-ark-0.8.0.dev4.tar.gz" } ], "0.8.0.dev5": [ { "comment_text": "", "digests": { "md5": "ccd6e722ad72649c15c0557fde84e6d5", "sha256": "6f8e49401da39ade96e9f6770b7130a87a047d8b2f4372c91006361c6ed639f9" }, "downloads": -1, "filename": "econ-ark-0.8.0.dev5.tar.gz", "has_sig": false, "md5_digest": "ccd6e722ad72649c15c0557fde84e6d5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.*", "size": 10778143, "upload_time": "2018-05-21T21:45:55", "url": "https://files.pythonhosted.org/packages/80/6d/1b50092ce09d1a82bbd6e05b237471e5e12102aa0c682fb78e7a568cad7d/econ-ark-0.8.0.dev5.tar.gz" } ], "0.8.0.dev6": [ { "comment_text": "", "digests": { "md5": "3001db12768e7f328645aca141124db2", "sha256": "4eecc20d726db3af2eb68457ef0009d3dcd4047bad015e0657e6304cd37b4600" }, "downloads": -1, "filename": "econ-ark-0.8.0.dev6.tar.gz", "has_sig": false, "md5_digest": "3001db12768e7f328645aca141124db2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.*", "size": 10778213, "upload_time": "2018-06-04T21:47:59", "url": "https://files.pythonhosted.org/packages/71/ad/4deb8fe6c444802b8c07f2a6d7e187436c0cda9550e36677f40ffdead82f/econ-ark-0.8.0.dev6.tar.gz" } ], "0.8.0.dev7": [ { "comment_text": "", "digests": { "md5": "d51ee07102f3ac77c74e6dd5e26a8ec1", "sha256": "658138ea8e7e511cd51d97d3062837345e7d06330cc155dbfdbddd132f71e367" }, "downloads": -1, "filename": "econ-ark-0.8.0.dev7.tar.gz", "has_sig": false, "md5_digest": "d51ee07102f3ac77c74e6dd5e26a8ec1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.*", "size": 10778231, "upload_time": "2018-06-04T21:54:17", "url": "https://files.pythonhosted.org/packages/0a/18/7a126fc8d6a35c51e227202866e2dbeed65220872676f0ab1b6c640388f4/econ-ark-0.8.0.dev7.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "958127ce3717068b7e13d9fa3d44407a", "sha256": "c2f1c1f48ba6340f6cdcda87677ad979b7cbdfecbfb97a3b2b6c13a689c67aeb" }, "downloads": -1, "filename": "econ_ark-0.9.0-py2-none-any.whl", "has_sig": false, "md5_digest": "958127ce3717068b7e13d9fa3d44407a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.7, !=3.*", "size": 374494, "upload_time": "2018-06-28T23:14:01", "url": "https://files.pythonhosted.org/packages/1c/c7/33b85d1bcd5287ae88876f681ee61920fb47c39a3912c38d8cd99ac1474f/econ_ark-0.9.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b17dc0074db8c41d239ed8f748e3924a", "sha256": "e1a19c5e2a296da9a10b2058164d850220e7c6cf7aef83adedc513046f1f4255" }, "downloads": -1, "filename": "econ-ark-0.9.0.tar.gz", "has_sig": false, "md5_digest": "b17dc0074db8c41d239ed8f748e3924a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.*", "size": 236368, "upload_time": "2018-06-28T23:14:04", "url": "https://files.pythonhosted.org/packages/bf/5b/f7cfe820edffb20b97c957eeb35ed1623724c258b47cbf5864b3fcb58d14/econ-ark-0.9.0.tar.gz" } ], "0.9.0.dev1": [ { "comment_text": "", "digests": { "md5": "f3fe49ed2e7315409a9fc2b7741df8b7", "sha256": "6125d0e9122babade4fa8245b62f8da0b56aa2937d02595b8b59be271d95ccde" }, "downloads": -1, "filename": "econ_ark-0.9.0.dev1-py3-none-any.whl", "has_sig": false, "md5_digest": "f3fe49ed2e7315409a9fc2b7741df8b7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.*", "size": 383104, "upload_time": "2018-06-26T23:41:55", "url": "https://files.pythonhosted.org/packages/88/e4/db559ece97271dd38f67c756e8c2b42cbccf627ed527725a84ef7cbeb7eb/econ_ark-0.9.0.dev1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5b6971bf25ae7354882a77842c673f33", "sha256": "7bb23640cc47f4929643dedb0d5067d9269ceac3b08b075fb701356519e9a9ca" }, "downloads": -1, "filename": "econ-ark-0.9.0.dev1.tar.gz", "has_sig": false, "md5_digest": "5b6971bf25ae7354882a77842c673f33", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.*", "size": 236480, "upload_time": "2018-06-26T23:41:57", "url": "https://files.pythonhosted.org/packages/0f/50/8df2458d499d6a6423d2c23e379db825ae1b78fae55c94c5b70bc51b2a4a/econ-ark-0.9.0.dev1.tar.gz" } ], "0.9.0.dev2": [ { "comment_text": "", "digests": { "md5": "306c77bddc3ebfa9c6330e6cd23ec58c", "sha256": "c5b3a0f362ba264f7487f947e4e7382f1e85bbff14ed45adb3fa82e123eddc40" }, "downloads": -1, "filename": "econ_ark-0.9.0.dev2-py2-none-any.whl", "has_sig": false, "md5_digest": "306c77bddc3ebfa9c6330e6cd23ec58c", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.7, !=3.*", "size": 383102, "upload_time": "2018-06-27T00:05:20", "url": "https://files.pythonhosted.org/packages/80/3d/dccf320405dcdb6bd922ad815f9368896befaa260895f1cfe15d59583cba/econ_ark-0.9.0.dev2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7ef1d40a1317013aa7e5734c9b41abb3", "sha256": "b5b7ebe96e81aec6f7d7ede6bcd9faf26788b10e053d08921ec12020aaddc088" }, "downloads": -1, "filename": "econ-ark-0.9.0.dev2.tar.gz", "has_sig": false, "md5_digest": "7ef1d40a1317013aa7e5734c9b41abb3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.*", "size": 236487, "upload_time": "2018-06-27T00:05:22", "url": "https://files.pythonhosted.org/packages/ad/bb/742b8db2a6e966f97245b909321cfeee83e98b2acb644fa0f363e58e005d/econ-ark-0.9.0.dev2.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "afd409e0ca4fb2dc39867f6511fc6a91", "sha256": "8ed8bc77de111397c6967a439bfa0572e06da2b00f3cb3aa444d1b12bfa742c4" }, "downloads": -1, "filename": "econ_ark-0.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "afd409e0ca4fb2dc39867f6511fc6a91", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 384698, "upload_time": "2018-07-19T13:59:18", "url": "https://files.pythonhosted.org/packages/b6/b4/c27c693407338b49301d2e7e89e0d74dd2211414e1234eef73e498ac4c49/econ_ark-0.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bb8b24c83639150561b6b0e4c040f0f2", "sha256": "9b322208a94e6a1fc1d8781f84651195ae7a87d74c9dad6dd267fce4a914ab67" }, "downloads": -1, "filename": "econ-ark-0.9.1.tar.gz", "has_sig": false, "md5_digest": "bb8b24c83639150561b6b0e4c040f0f2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 235446, "upload_time": "2018-07-19T13:59:22", "url": "https://files.pythonhosted.org/packages/83/14/ffab413b3ab44192c730ad739e8093b7c567944339ac0ba3f04a32b82cba/econ-ark-0.9.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ad4b874333b470bc51deb1373a41ac54", "sha256": "0e6596ac3b5f6777fc84fd2a3e6fdfa99972427b2e207be7ebe32c8139867a6c" }, "downloads": -1, "filename": "econ-ark-0.10.2.tar.gz", "has_sig": false, "md5_digest": "ad4b874333b470bc51deb1373a41ac54", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 427072, "upload_time": "2019-10-03T22:25:43", "url": "https://files.pythonhosted.org/packages/17/70/84b6f0e5a9b388aa9852e9c9af49fa477342dbde007d00c2f72da04cd460/econ-ark-0.10.2.tar.gz" } ] }