quantecon


Namequantecon JSON
Version 0.7.1 PyPI version JSON
download
home_pageNone
SummaryImport the main names to top level.
upload_time2023-05-30 07:01:49
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseNone
keywords quantitative economics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # QuantEcon.py

A high performance, open source Python code library for economics

```python
  from quantecon.markov import DiscreteDP
  aiyagari_ddp = DiscreteDP(R, Q, beta)
  results = aiyagari_ddp.solve(method='policy_iteration')
```

[![Build Status](https://github.com/QuantEcon/QuantEcon.py/actions/workflows/ci.yml/badge.svg)](https://github.com/QuantEcon/QuantEcon.py/actions?query=workflow%3Abuild)
[![Coverage Status](https://coveralls.io/repos/QuantEcon/QuantEcon.py/badge.svg)](https://coveralls.io/r/QuantEcon/QuantEcon.py)
[![Documentation Status](https://readthedocs.org/projects/quanteconpy/badge/?version=latest)](https://quanteconpy.readthedocs.io/en/latest/?badge=latest)

## Installation

Before installing `quantecon` we recommend you install the [Anaconda](https://www.anaconda.com/download/) Python distribution, which includes a full suite of scientific python tools. **Note:** `quantecon` is now only supporting Python version 3.5+. This is mainly to allow code to be written taking full advantage of new features such as using the `@` symbol for matrix multiplication. Therefore please install the latest Python 3 Anaconda distribution.

Next you can install quantecon by opening a terminal prompt and typing

    pip install quantecon

## Usage

Once `quantecon` has been installed you should be able to import it as follows:

```python
import quantecon as qe
```

You can check the version by running

```python
print(qe.__version__)
```

If your version is below what’s available on [PyPI](https://pypi.python.org/pypi/quantecon/) then it is time to upgrade. This can be done by running

    pip install --upgrade quantecon

## Examples and Sample Code

Many examples of QuantEcon.py in action can be found at [Quantitative Economics](https://lectures.quantecon.org/). See also the

*   [Documentation](https://quanteconpy.readthedocs.org/en/latest/)
*   [Notebook gallery](https://notes.quantecon.org)

QuantEcon.py is supported financially by the [Alfred P. Sloan Foundation](http://www.sloan.org/) and is part of the [QuantEcon organization](https://quantecon.org).

## Downloading the `quantecon` Repository

An alternative is to download the sourcecode of the `quantecon` package and install it manually from [the github repository](https://github.com/QuantEcon/QuantEcon.py/). For example, if you have git installed type

    git clone https://github.com/QuantEcon/QuantEcon.py

Once you have downloaded the source files then the package can be installed by running

    pip install flit
    flit install

(To learn the basics about setting up Git see [this link](https://help.github.com/articles/set-up-git/).)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "quantecon",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "quantitative,economics",
    "author": null,
    "author_email": "QuantEcon Project <admin@quantecon.org>",
    "download_url": "https://files.pythonhosted.org/packages/34/6d/f31b282b3d48e4518ccbf9f15e8e1b7c04c055c29e604fde6ffae7fe6fb8/quantecon-0.7.1.tar.gz",
    "platform": null,
    "description": "# QuantEcon.py\n\nA high performance, open source Python code library for economics\n\n```python\n  from quantecon.markov import DiscreteDP\n  aiyagari_ddp = DiscreteDP(R, Q, beta)\n  results = aiyagari_ddp.solve(method='policy_iteration')\n```\n\n[![Build Status](https://github.com/QuantEcon/QuantEcon.py/actions/workflows/ci.yml/badge.svg)](https://github.com/QuantEcon/QuantEcon.py/actions?query=workflow%3Abuild)\n[![Coverage Status](https://coveralls.io/repos/QuantEcon/QuantEcon.py/badge.svg)](https://coveralls.io/r/QuantEcon/QuantEcon.py)\n[![Documentation Status](https://readthedocs.org/projects/quanteconpy/badge/?version=latest)](https://quanteconpy.readthedocs.io/en/latest/?badge=latest)\n\n## Installation\n\nBefore installing `quantecon` we recommend you install the\u00a0[Anaconda](https://www.anaconda.com/download/)\u00a0Python distribution, which includes a full suite of scientific python tools.\u00a0**Note:**\u00a0`quantecon` is now only supporting Python version 3.5+. This is mainly to allow code to be written taking full advantage of new features such as using the `@` symbol for matrix multiplication. Therefore please install the latest Python 3 Anaconda distribution.\n\nNext you can install quantecon by opening a terminal prompt and typing\n\n    pip install quantecon\n\n## Usage\n\nOnce\u00a0`quantecon`\u00a0has been installed you should be able to import it as follows:\n\n```python\nimport quantecon as qe\n```\n\nYou can check the version by running\n\n```python\nprint(qe.__version__)\n```\n\nIf your version is below what\u2019s available on\u00a0[PyPI](https://pypi.python.org/pypi/quantecon/)\u00a0then it is time to upgrade. This can be done by running\n\n    pip install --upgrade quantecon\n\n## Examples and Sample Code\n\nMany examples of QuantEcon.py in action can be found at\u00a0[Quantitative Economics](https://lectures.quantecon.org/). See also the\n\n*   [Documentation](https://quanteconpy.readthedocs.org/en/latest/)\n*   [Notebook gallery](https://notes.quantecon.org)\n\nQuantEcon.py is supported financially by the\u00a0[Alfred P. Sloan Foundation](http://www.sloan.org/)\u00a0and is part of the\u00a0[QuantEcon organization](https://quantecon.org).\n\n## Downloading the\u00a0`quantecon`\u00a0Repository\n\nAn alternative is to download the sourcecode of the\u00a0`quantecon`\u00a0package and install it manually from\u00a0[the github repository](https://github.com/QuantEcon/QuantEcon.py/). For example, if you have git installed type\n\n    git clone https://github.com/QuantEcon/QuantEcon.py\n\nOnce you have downloaded the source files then the package can be installed by running\n\n    pip install flit\n    flit install\n\n(To learn the basics about setting up Git see\u00a0[this link](https://help.github.com/articles/set-up-git/).)\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Import the main names to top level.",
    "version": "0.7.1",
    "project_urls": {
        "Documentation": "http://quanteconpy.readthedocs.org/en/latest/",
        "Funding": "https://quantecon.org",
        "Homepage": "https://quantecon.org/quantecon-py/",
        "Source": "https://github.com/quantecon/QuantEcon.py",
        "Tracker": "https://github.com/quantecon/QuantEcon.py/issues"
    },
    "split_keywords": [
        "quantitative",
        "economics"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33eae64e1be90daf370f5b190ceb298b9ac92105b3672775dce77acde8ccf603",
                "md5": "2fa4e60aa3ab7208e2dfd2793136ce49",
                "sha256": "9447c9909b8ac5993a6325cda142d89906e1435b4785273d68edc62ea6856072"
            },
            "downloads": -1,
            "filename": "quantecon-0.7.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2fa4e60aa3ab7208e2dfd2793136ce49",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 214795,
            "upload_time": "2023-05-30T07:01:47",
            "upload_time_iso_8601": "2023-05-30T07:01:47.394491Z",
            "url": "https://files.pythonhosted.org/packages/33/ea/e64e1be90daf370f5b190ceb298b9ac92105b3672775dce77acde8ccf603/quantecon-0.7.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "346df31b282b3d48e4518ccbf9f15e8e1b7c04c055c29e604fde6ffae7fe6fb8",
                "md5": "bdf1e8c2fc656f1236c350349cd4a7ba",
                "sha256": "801a7d5ff0e944856d04bce8d285b32cf5e7151e4775d2a3ea8c963322559861"
            },
            "downloads": -1,
            "filename": "quantecon-0.7.1.tar.gz",
            "has_sig": false,
            "md5_digest": "bdf1e8c2fc656f1236c350349cd4a7ba",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 171376,
            "upload_time": "2023-05-30T07:01:49",
            "upload_time_iso_8601": "2023-05-30T07:01:49.438490Z",
            "url": "https://files.pythonhosted.org/packages/34/6d/f31b282b3d48e4518ccbf9f15e8e1b7c04c055c29e604fde6ffae7fe6fb8/quantecon-0.7.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-30 07:01:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "quantecon",
    "github_project": "QuantEcon.py",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "quantecon"
}
        
Elapsed time: 0.07123s