opendp


Nameopendp JSON
Version 0.9.2 PyPI version JSON
download
home_pagehttps://opendp.org
SummaryPython bindings for the OpenDP Library
upload_time2024-02-08 16:43:11
maintainer
docs_urlNone
authorThe OpenDP Project
requires_python>=3.8
license
keywords differential privacy
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # OpenDP
[![Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Python](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue)](https://www.python.org/)
[![ci tests](https://github.com/opendp/opendp/actions/workflows/smoke-test.yml/badge.svg)](https://github.com/opendp/opendp/actions/workflows/smoke-test.yml?query=branch%3Amain)

The OpenDP Library is a modular collection of statistical algorithms that adhere to the definition of
[differential privacy](https://en.wikipedia.org/wiki/Differential_privacy).
It can be used to build applications of privacy-preserving computations, using a number of different models of privacy.
OpenDP is implemented in Rust, with bindings for easy use from Python and R.

The architecture of the OpenDP Library is based on a conceptual framework for expressing privacy-aware computations.
This framework is described in the paper [A Programming Framework for OpenDP](https://projects.iq.harvard.edu/files/opendp/files/opendp_programming_framework_11may2020_1_01.pdf).

The OpenDP Library is part of the larger [OpenDP Project](https://opendp.org), a community effort to build trustworthy,
open source software tools for analysis of private data.
(For simplicity in these docs, when we refer to “OpenDP,” we mean just the library, not the entire project.)

## Status

OpenDP is under development, and we expect to [release new versions](https://github.com/opendp/opendp/releases) frequently,
incorporating feedback and code contributions from the OpenDP Community.
It's a work in progress, but it can already be used to build some applications and to prototype contributions that will expand its functionality.
We welcome you to try it and look forward to feedback on the library! However, please be aware of the following limitations:

> OpenDP, like all real-world software, has both known and unknown issues.
> If you intend to use OpenDP for a privacy-critical application, you should evaluate the impact of these issues on your use case.
> 
> More details can be found in the [Limitations section of the User Guide](https://docs.opendp.org/en/stable/user/limitations.html).


## Installation

Install OpenDP for Python with `pip` (the [package installer for Python](https://pypi.org/project/pip/)):

    $ pip install opendp

Install OpenDP for R from an R session:

    install.packages("opendp", repos = "https://opendp.r-universe.dev")

More information can be found in the [Getting Started section of the User Guide](https://docs.opendp.org/en/stable/user/getting-started.html).

## Documentation

The full documentation for OpenDP is located at https://docs.opendp.org. Here are some helpful entry points:

* [User Guide](https://docs.opendp.org/en/stable/user/index.html)
* [Python API Docs](https://docs.opendp.org/en/stable/api/python/index.html)
* [Contributor Guide](https://docs.opendp.org/en/stable/contributor/index.html)

## Getting Help

If you're having problems using OpenDP, or want to submit feedback, please reach out! Here are some ways to contact us:

* Ask questions on our [discussions forum](https://github.com/opendp/opendp/discussions)
* Open issues on our [issue tracker](https://github.com/opendp/opendp/issues)
* Join our [Slack](https://join.slack.com/t/opendp/shared_invite/zt-zw7o1k2s-dHg8NQE8WTfAGFnN_cwomA)
* Send general queries to [info@opendp.org](mailto:info@opendp.org)
* Reach us on Twitter at [@opendp_org](https://twitter.com/opendp_org)

## Contributing

OpenDP is a community effort, and we welcome your contributions to its development! 
If you'd like to participate, please contact us! We also have a [contribution process section in the Contributor Guide](https://docs.opendp.org/en/stable/contributor/contribution-process.html).



            

Raw data

            {
    "_id": null,
    "home_page": "https://opendp.org",
    "name": "opendp",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "differential privacy",
    "author": "The OpenDP Project",
    "author_email": "info@opendp.org",
    "download_url": "",
    "platform": null,
    "description": "# OpenDP\n[![Project Status: WIP \u2013 Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Python](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue)](https://www.python.org/)\n[![ci tests](https://github.com/opendp/opendp/actions/workflows/smoke-test.yml/badge.svg)](https://github.com/opendp/opendp/actions/workflows/smoke-test.yml?query=branch%3Amain)\n\nThe OpenDP Library is a modular collection of statistical algorithms that adhere to the definition of\n[differential privacy](https://en.wikipedia.org/wiki/Differential_privacy).\nIt can be used to build applications of privacy-preserving computations, using a number of different models of privacy.\nOpenDP is implemented in Rust, with bindings for easy use from Python and R.\n\nThe architecture of the OpenDP Library is based on a conceptual framework for expressing privacy-aware computations.\nThis framework is described in the paper [A Programming Framework for OpenDP](https://projects.iq.harvard.edu/files/opendp/files/opendp_programming_framework_11may2020_1_01.pdf).\n\nThe OpenDP Library is part of the larger [OpenDP Project](https://opendp.org), a community effort to build trustworthy,\nopen source software tools for analysis of private data.\n(For simplicity in these docs, when we refer to \u201cOpenDP,\u201d we mean just the library, not the entire project.)\n\n## Status\n\nOpenDP is under development, and we expect to [release new versions](https://github.com/opendp/opendp/releases) frequently,\nincorporating feedback and code contributions from the OpenDP Community.\nIt's a work in progress, but it can already be used to build some applications and to prototype contributions that will expand its functionality.\nWe welcome you to try it and look forward to feedback on the library! However, please be aware of the following limitations:\n\n> OpenDP, like all real-world software, has both known and unknown issues.\n> If you intend to use OpenDP for a privacy-critical application, you should evaluate the impact of these issues on your use case.\n> \n> More details can be found in the [Limitations section of the User Guide](https://docs.opendp.org/en/stable/user/limitations.html).\n\n\n## Installation\n\nInstall OpenDP for Python with `pip` (the [package installer for Python](https://pypi.org/project/pip/)):\n\n    $ pip install opendp\n\nInstall OpenDP for R from an R session:\n\n    install.packages(\"opendp\", repos = \"https://opendp.r-universe.dev\")\n\nMore information can be found in the [Getting Started section of the User Guide](https://docs.opendp.org/en/stable/user/getting-started.html).\n\n## Documentation\n\nThe full documentation for OpenDP is located at https://docs.opendp.org. Here are some helpful entry points:\n\n* [User Guide](https://docs.opendp.org/en/stable/user/index.html)\n* [Python API Docs](https://docs.opendp.org/en/stable/api/python/index.html)\n* [Contributor Guide](https://docs.opendp.org/en/stable/contributor/index.html)\n\n## Getting Help\n\nIf you're having problems using OpenDP, or want to submit feedback, please reach out! Here are some ways to contact us:\n\n* Ask questions on our [discussions forum](https://github.com/opendp/opendp/discussions)\n* Open issues on our [issue tracker](https://github.com/opendp/opendp/issues)\n* Join our [Slack](https://join.slack.com/t/opendp/shared_invite/zt-zw7o1k2s-dHg8NQE8WTfAGFnN_cwomA)\n* Send general queries to [info@opendp.org](mailto:info@opendp.org)\n* Reach us on Twitter at [@opendp_org](https://twitter.com/opendp_org)\n\n## Contributing\n\nOpenDP is a community effort, and we welcome your contributions to its development! \nIf you'd like to participate, please contact us! We also have a [contribution process section in the Contributor Guide](https://docs.opendp.org/en/stable/contributor/contribution-process.html).\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Python bindings for the OpenDP Library",
    "version": "0.9.2",
    "project_urls": {
        "Documentation": "https://docs.opendp.org/",
        "Homepage": "https://opendp.org",
        "Issues": "https://github.com/opendp/opendp/issues",
        "Source": "https://github.com/opendp/opendp"
    },
    "split_keywords": [
        "differential",
        "privacy"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea8a01e4dc3ffb0850bd7b7dc6033f484dd293660c7f53fd09d245a890ce228a",
                "md5": "2eeca3c6fb024c7864f14a94d8e37322",
                "sha256": "85bc914dc790e5ea3b0583c2473b594378cd2fc28e2392174ee7d57bbc9afd72"
            },
            "downloads": -1,
            "filename": "opendp-0.9.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2eeca3c6fb024c7864f14a94d8e37322",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 35889462,
            "upload_time": "2024-02-08T16:43:11",
            "upload_time_iso_8601": "2024-02-08T16:43:11.157872Z",
            "url": "https://files.pythonhosted.org/packages/ea/8a/01e4dc3ffb0850bd7b7dc6033f484dd293660c7f53fd09d245a890ce228a/opendp-0.9.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-08 16:43:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "opendp",
    "github_project": "opendp",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "opendp"
}
        
Elapsed time: 0.26073s