From e9d01b753426cc0e77814497f26ab1e89f65586a Mon Sep 17 00:00:00 2001 From: jp <59218902+pj8912@users.noreply.github.com> Date: Tue, 21 Mar 2023 09:59:29 +0530 Subject: [PATCH] Readme update: pushed 'installation' to the top --- README.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d079ed1..bfdd55b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,14 @@ # python-nostr A Python library for making [Nostr](https://github.com/nostr-protocol/nostr) clients + +## Installation +```bash +pip install nostr +``` + +Note: I wrote this with Python 3.9.5. + ## Usage **Generate a key** ```python @@ -159,13 +167,6 @@ The resulting delegation tag can be stored as plaintext and reused as-is by the Hopefully clients will include an optional field to store the delegation tag. That would allow the "delegatee" PK to seamlessly post messages on the "identity" key's behalf, while the "identity" key stays safely offline in cold storage. -## Installation -```bash -pip install nostr -``` - -Note: I wrote this with Python 3.9.5. - ## Test Suite See the [Test Suite README](test/README.md)