Git Product home page Git Product logo

Comments (3)

grctest avatar grctest commented on August 27, 2024

I threw together a chunk of Python code that checks the status of full node API servers prior to attempting any python-bitshares Bitshares() fullnode connections using Lomond:

import wsaccel
from lomond.websocket import WebSocket

if __name__ == "__main__":

    full_node_list = ["wss://node.bitdashares.eu/ws",
                      "wss://dexnfffode.net/ws",
                      "wss://bitshares.openledger.info/ws",
                      "wss://bitshares.crypto.fans/ws",
                      "wss://openledger.hk/ws"]

    online_server = ""
    
    for server in full_node_list:
      if (online_server == ""):
          try:
            ws = WebSocket(server)
            for event in ws.connect():
                print(event.name)
                if event.name == "connect_fail":
                    print(server + " is offline!")
                    break
                if event.name == "connecting":
                    continue
                if event.name == "connected":
                    continue
                if event.name == "ready":
                    online_server = server
                    print(server + " is online!")
                    ws.close()
                    break
          except:
            print(server + " is offline!")

    print("The online server is: {}".format(online_server))

Some error handling or max limit on wsconnect() attempts would still be a great redundancy step, perhaps a node could go down during script execution after having successfully checked it using the above script?

from python-bitshares.

grctest avatar grctest commented on August 27, 2024

Ran into the wsconnect retry loop after pre-checking the API node was up, need an additional/alternative solution..

from python-bitshares.

xeroc avatar xeroc commented on August 27, 2024

BitShares() consumes a list of nodes too and cycles thru them

    full_node_list = ["wss://node.bitdashares.eu/ws",
                      "wss://dexnfffode.net/ws",
                      "wss://bitshares.openledger.info/ws",
                      "wss://bitshares.crypto.fans/ws",
                      "wss://openledger.hk/ws"]

    bts = BitShares(full_node_list)

from python-bitshares.

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.