Merge branch 'main' into nostrignition

This commit is contained in:
Believethehype 2024-02-06 20:31:20 +01:00
commit 6f1534ff84
3 changed files with 8 additions and 4 deletions

View File

@ -110,7 +110,9 @@ class AdvancedSearch(DVMTaskInterface):
search_until = Timestamp.from_secs(int(options["until"]))
userkeys = []
for user in options["users"]:
user = user[1]
tag = Tag.parse(user)
user = tag.as_vec()[1]
#user = user[1]
user = str(user).lstrip("@")
if str(user).startswith('npub'):
userkey = PublicKey.from_bech32(user)

View File

@ -91,7 +91,8 @@ class AdvancedSearchWine(DVMTaskInterface):
options = DVMTaskInterface.set_options(request_form)
userkeys = []
for user in options["users"]:
user = user[1]
tag = Tag.parse(user)
user = tag.as_vec()[1]
user = str(user).lstrip("@")
if str(user).startswith('npub'):
userkey = PublicKey.from_bech32(user)
@ -110,7 +111,7 @@ class AdvancedSearchWine(DVMTaskInterface):
headers = {'Content-type': 'application/x-www-form-urlencoded'}
response = requests.get(url, headers=headers)
print(response.text)
#print(response.text)
ob = json.loads(response.text)
data = ob['data']
result_list = []

View File

@ -66,8 +66,9 @@ class DiscoverNonFollowers(DVMTaskInterface):
keys = Keys.from_sk_str(sk.to_hex())
signer = ClientSigner.keys(keys)
cli = Client.with_opts(signer, opts)
#cli.add_relay("wss://relay.nostr.band")
for relay in self.dvm_config.RELAY_LIST:
cli.add_relay(relay)
cli.add_relay(relay)
cli.connect()
options = DVMTaskInterface.set_options(request_form)