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

doc: Fix SSH key example in README; swap _ with - in pip install command #40

Merged
merged 1 commit into from
Apr 9, 2024
Merged
Show file tree
Hide file tree
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 @@ -17,7 +17,7 @@ This package allows Python projects to easily interact with the [Linode Metadata
### Installation

```bash
pip install linode_metadata
pip install linode-metadata
```

### Building from Source
Expand Down Expand Up @@ -46,7 +46,7 @@ user_data = client.get_user_data()

print("Instance ID:", instance_info.id)
print("Public IPv4:", network_info.ipv4.public[0])
print("SSH Keys:", "; ".join(ssh_info.users.root))
print("SSH Keys:", "; ".join(ssh_info.users))
print("User Data:", user_data)
```

Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ This library can be used to interact with the Metadata Service API.
Installation
------------

To install through pypi::
To install through PyPI::

pip install linode_metadata
pip install linode-metadata

To install from source::

Expand Down