DEV Community

Cover image for XUMM PYTHON SDK: 2. Prepare your project and start coding ๐Ÿ”จ
Denis Angell
Denis Angell

Posted on • Updated on

XUMM PYTHON SDK: 2. Prepare your project and start coding ๐Ÿ”จ

Previous: 1. Get your XUMM API credentials ๐Ÿ”‘

For this example we will use a Python (pip) environment.

  1. Open Visual Studio Code, or your prefrred code editor, and create a new file - File ยป New file
  2. Save your new file - File ยป Save in a new folder for your project e.g., xumm-sdk-tutorial and in this folder were using playground.py
  3. Make a new virtual environment to manage your project. mkvirtualenv xumm-sdk-tutorial. If you don't have virtualenv installed please visit the Get Started Tutorial
  4. Install the XUMM SDK (PY) in your project using the 'pip package manager'. Open the terminal - Terminal ยป New terminal and at the prompt enter pip install -i https://test.pypi.org/simple/ xumm-sdk-py-dangell7
  5. Copy then paste the following boilerplate code into your playground.py file:
import xumm

sdk = xumm.XummSdk('Your-API-Id', 'Your-API-Secret')

def main():
  print("Hi! This is where we'll be writing some code")

main()
Enter fullscreen mode Exit fullscreen mode

Please replace Your-API-Id and Your-API-Secret in the code with the credentials obtained from the XUMM Developer Console when you registered your app.

What does this code actually do?

  • First, we 'import' the XUMM SDK that we installed using pip into our code - step 3 above. We are using the xumm package, and we are calling it XummSdk in our code.
  • We then initialize a new instance of the SDK, which we call sdk. We will use this one later in the project as we don't interact with the XUMM SDK just yet. While not needed yet in the project the dummy API Key and API Secret need to be inserted here.
  • In the function we have just created, we then tell the code to output a message to the terminal, using the print method.
  • Lastly, we call our main function so the code will actually run.

Now let's run this code. In the terminal panel, type:

python3 playground.py
Enter fullscreen mode Exit fullscreen mode

This will tell python to run all code in your playground.py file. You should receive the message Hi! This is where we'll be writing some code in your terminal and be back at the prompt awaiting further instruction.

Blog.2.1

If you have your API Key and API Secret in place (see placeholder values in code above) you can check if everything is working by asking the XUMM Platform to return your registered XUMM app name.

Replace the line of code containing print(...) with a ping request to the XUMM platform:

app_info = sdk.ping()
Enter fullscreen mode Exit fullscreen mode

This line of code calls the ping method of the XUMM SDK. We await the results, as it may take a brief moment to connect to the XUMM platform and get a response. When we get a response, we are making the results accessible under the name app_info.

Now let us return the application name we retrieved from the XUMM platform to the console by using print once again. When you start typing, Visual Studio Code will suggest available properties:

Code autocomplete

Our main code should now look like this:

def main():
  app_info = sdk.ping()
  print(app_info.application.name)
Enter fullscreen mode Exit fullscreen mode

Let's test the code:

Blog.2.2

It looks like we are able to reach the XUMM platform ๐ŸŽ‰ ๐Ÿ˜Ž

Next:

3. Your first payload ๐Ÿ””
4. Verify the results โ›‘ and push ๐Ÿš€
5. Security & finishing touch ๐ŸŽ‰

Resources ๐Ÿ“š

If you want to learn more about the XUMM SDK PY, platform, documentation, etc., make sure to check out:

The XUMM SDK (PY) readme
The XUMM SDK (PY) source code
The XUMM API documentation & API reference
XUMM (end user) support docs
In case of questions: support@xumm.app

Top comments (0)