mirror of
https://github.com/believethehype/nostrdvm.git
synced 2025-03-17 13:21:48 +01:00
Merge branch 'main' into nostrignition
This commit is contained in:
commit
6f1534ff84
@ -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)
|
||||
|
@ -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 = []
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user