Giter Club home page Giter Club logo

Comments (6)

pleb21 avatar pleb21 commented on June 20, 2024

did you make any progress on this. I'm having a hard time working with this -- which is because of my limited understanding & knowledge. But I just don't 'get' what is subscription ID - do I create it? If yes, how. All I've been able to do so far is connect to relays and post a note. I have read and re-read the readme but I still don't get it. Any help would be appreciated.

from python-nostr.

decentropy avatar decentropy commented on June 20, 2024

I wasn't able to figure it out, so I switched to https://github.com/holgern/pynostr

for subscription ID, it can be anything unique
You could import uuid and then subid = uuid.uuid1().hex

from python-nostr.

pleb21 avatar pleb21 commented on June 20, 2024

ok, thanks -- bookmarking it.

from python-nostr.

earonesty avatar earonesty commented on June 20, 2024

seems to work fine from the examples.

from python-nostr.

pleb21 avatar pleb21 commented on June 20, 2024

tbh, I haven't tried it again after the suggestion from @decentropy - will comment here again if I run into issues. Thanks

from python-nostr.

franzos avatar franzos commented on June 20, 2024

Can I call add_subscription after open_connections, or do I need to do it before like the README example?

Just tested this, and seems to work either before or after:

relay_manager.open_connections()
relay_manager.add_subscription(subscription_id, filters)

for subscription ID, it can be anything unique

Yes, that works fine. Here's a complete example:

# Setup filters
filters = Filters([Filter(limit=10)])

# Generate subscription
subscription_id = uuid.uuid1().hex
request = [ClientMessageType.REQUEST, subscription_id]
request.extend(filters.to_json_array())

relay_manager = RelayManager()
relay_manager.add_relay("wss://nostr-pub.wellorder.net")
relay_manager.add_relay("wss://relay.damus.io")
relay_manager.add_relay("wss://nostr.wine")
relay_manager.add_relay("wss://nostr.rocks")
relay_manager.add_subscription(subscription_id, filters)
relay_manager.open_connections()

Should I expect to get all old note/events using RelayManager.message_pool.has_event?

I believe it's whatever the relay returns, based on your filters. So in theory yes - all old events.

from python-nostr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.