Skip to content

Commit

Permalink
add badge (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
mccalluc authored Dec 11, 2024
1 parent 56283d4 commit e956756
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
# DP Wizard

**Under Construction**
[![pypi](https://img.shields.io/pypi/v/dp_wizard)](https://pypi.org/project/dp_wizard/)

Building on what we've learned from [DP Creator](https://github.com/opendp/dpcreator), DP Wizard will offer:
Building on what we've learned from [DP Creator](https://github.com/opendp/dpcreator), DP Wizard offers:

- Easy installation with `pip install`
- Easy installation with `pip install dp_wizard`
- Simplified single-user application design
- Streamlined workflow that doesn't assume familiarity with differential privacy
- Interactive visualization of privacy budget choices
- UI development in Python with [Shiny](https://shiny.posit.co/py/)

We plan to implement a [proof of concept](https://docs.google.com/document/d/1dteip598-jYj6KFuoYRyrZDPUuwDl9fHgxARiSieVGw/edit) over a couple months, and then get feedback from users before deciding on next steps.

## Usage

```
Expand Down
2 changes: 1 addition & 1 deletion dp_wizard/utils/code_generators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,6 @@ def _snake_case(name: str):

def _make_imports():
return (
Template("imports").fill_values().finish()
Template("imports").finish()
+ (Path(__file__).parent.parent / "shared.py").read_text()
)

0 comments on commit e956756

Please sign in to comment.