fixing test client

This commit is contained in:
Believethehype 2023-12-15 09:43:43 +01:00
parent f120a00ef9
commit d0a98ed7c4
2 changed files with 5 additions and 4 deletions

View File

@ -28,7 +28,8 @@ setup(
"requests==2.31.0", "requests==2.31.0",
"instaloader==4.10.1", "instaloader==4.10.1",
"pytube==15.0.0", "pytube==15.0.0",
"moviepy==2.0.0.dev2" "moviepy==2.0.0.dev2",
"zipp==3.17.0"
], ],
keywords=['nostr', 'nip90', 'dvm', 'data vending machine'], keywords=['nostr', 'nip90', 'dvm', 'data vending machine'],
url="https://github.com/believethehype/nostrdvm", url="https://github.com/believethehype/nostrdvm",

View File

@ -7,9 +7,9 @@ import dotenv
from nostr_sdk import Keys, Client, Tag, EventBuilder, Filter, HandleNotification, Timestamp, nip04_decrypt, \ from nostr_sdk import Keys, Client, Tag, EventBuilder, Filter, HandleNotification, Timestamp, nip04_decrypt, \
nip04_encrypt nip04_encrypt
from utils.dvmconfig import DVMConfig from nostr_dvm.utils.dvmconfig import DVMConfig
from utils.nostr_utils import send_event, check_and_set_private_key from nostr_dvm.utils.nostr_utils import send_event, check_and_set_private_key
from utils.definitions import EventDefinitions from nostr_dvm.utils.definitions import EventDefinitions
# TODO HINT: Best use this path with a previously whitelisted privkey, as zapping events is not implemented in the lib/code # TODO HINT: Best use this path with a previously whitelisted privkey, as zapping events is not implemented in the lib/code