In the top, you can see custom C++ nodes used to start and stop the Python server.
In the middle section, the login logic is implemented, where a Firebase authentication request is sent using a custom C++ node called Send Login Request.
The bottom section shows how color data is requested and retrieved using another custom node, Request Python Sync. Once the user is logged in, the system requests account-specific data, which is then downloaded and returned as an array of color entries. These entries are later broken down and assigned to individual UI buttons for display.
The data retrieval is currently handled synchronously (blocking), rather than asynchronously.