Metadata-Version: 2.4
Name: electrum-aionostr
Version: 0.1.0
Summary: asyncio nostr client
Author: The Electrum developers
License-Expression: BSD-3-Clause
Project-URL: Homepage, https://github.com/spesmilo/electrum-aionostr
Project-URL: Repository, https://github.com/spesmilo/electrum-aionostr
Keywords: nostr,asyncio
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: electrum_ecc
Requires-Dist: aiohttp<4.0.0,>=3.11.0
Requires-Dist: aiohttp_socks>=0.9.2
Requires-Dist: aiorpcx<0.26,>=0.22.0
Provides-Extra: crypto
Requires-Dist: cryptography>=2.8; extra == "crypto"
Provides-Extra: tests
Requires-Dist: pytest-cov; extra == "tests"
Requires-Dist: Click>=8.2; extra == "tests"
Provides-Extra: cli
Requires-Dist: Click; extra == "cli"
Dynamic: license-file

# electrum-aionostr

asyncio nostr client

```
Free software: BSD license
Original Author: Dave St.Germain
Fork Author/Maintainer: The Electrum Developers
Language: Python (>= 3.10)
```


[![Latest PyPI package](https://badge.fury.io/py/electrum-aionostr.svg)](https://pypi.org/project/electrum-aionostr/)
[![Build Status](https://api.cirrus-ci.com/github/spesmilo/electrum-aionostr.svg)](https://cirrus-ci.com/github/spesmilo/electrum-aionostr)


This is a fork of [aionostr](https://github.com/davestgermain/aionostr) that does not require Coincurve.


## Getting started

```
$ python3 -m pip install --user ".[crypto]"
```


## Features

* Retrieve anything from the nostr network, using one command:

```
$ aionostr get nprofile1qqsv0knzz56gtm8mrdjhjtreecl7dl8xa47caafkevfp67svwvhf9hcpz3mhxue69uhkgetnvd5x7mmvd9hxwtn4wvspak3h
$ aionostr get -v nevent1qqsxpnzhw2ddf2uplsxgc5ctr9h6t65qaalzvzf0hvljwrz8q64637spp3mhxue69uhkyunz9e5k75j6gxm
$ aionostr query -s -q '{"kinds": [1], "limit":10}'
$ aionostr send --kind 1 --content test --private-key <privatekey>
$ aionostr mirror -r wss://source.relay -t wss://target.relay --verbose '{"kinds": [4]}'
```


Set environment variables:

```
NOSTR_RELAYS=wss://brb.io,wss://nostr.mom
NOSTR_KEY=`aionostr gen | head -1`
```


### Maintainer notes

Release checklist:
- bump `__version__` in `__init__.py`
- write changelog in [`docs/history.md`](docs/history.md)
- `$ git tag -s $VERSION -m "$VERSION"`
- `$ git push "$REMOTE_ORIGIN" tag "$VERSION"`
- build sdist (see [`contrib/sdist/`](contrib/sdist)):
  - `$ ELECBUILD_COMMIT=HEAD ELECBUILD_NOCACHE=1 ./contrib/sdist/build.sh`
- `$ python3 -m twine upload dist/$DISTNAME`
