Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aljazceru/selfie-records-python
https://github.com/aljazceru/selfie-records-python
Last synced: about 4 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/aljazceru/selfie-records-python
- Owner: aljazceru
- License: mit
- Created: 2024-09-12T10:05:10.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-12T10:14:25.000Z (2 months ago)
- Last Synced: 2024-09-12T21:26:33.644Z (2 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Selfie Records python sdk
This is a python sdk for [selfie records](https://selfie-records.com/) that was just released as a npm package.## Usage example
```
# test.py
from selfie_records import SelfieRecordsSDK
sdk = SelfieRecordsSDK()
records = sdk.get_records("[email protected]", filters=["bitcoin-payment", "nostr"])
print(records)#output
{'bitcoin-payment': {'value': "b'bitcoin:?lno=lno1zrxq8pjw7qjlm68mtp7e3yvxee4y5xrgjhhyf2fxhlphpckrvevh50u0qfss4ttljzgkn3qwh8gj2wqduaphmkykxaxyh6ttpdplzqmkz5eguqszt7xngyyxhcnwahdqc5ss9x2rha0qex2x0djeag4nq8yfs2fuv4uqqv6jm6fxnk7n7g580kuust8n3hukv4dw3zs8r2dzkeqkf5j4vfhx8kxxl95sv2nsuf5jxnk90q' b'ew7w0f8g7qq29guwmd03v92yfjjan698z9q75gu3a8wzq8sprk4mf9qzykc9ljkqqse86pfp24kq4fmsaj5hlzh55ghs'", 'error': None}, 'nostr': {'value': "b'npub1j35k2lyes6x45sj2nyvsmefye6k4esurwp6wn3u3mtpt6ys5u8yqzjxygp'", 'error': None}}
```