Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix goofs #2

Merged
merged 1 commit into from
Dec 29, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ An unofficial, fully typed python interface for building .d2 graph files in pyth
## Installation

```bash
pip install d2-py
pip install py-d2
```

## Usage

```python
from d2_py import D2Graph, D2Node, D2Link, D2Style
from py_d2 import D2Graph, D2Node, D2Link, D2Style

nodes = [
D2Node(name="node_name1", style=D2Style(fill="red")),
Expand Down