Install dxflow SDK and create a session
This guide provides instructions on installing the dxflow SDK and getting started with it by creating a session.
To install the dxflow_sdk, follow the steps below:
conda create -n diphyx python=3.9
pip install dxflow
The first step to use dxflow SDK is to create a session, which requires DiPhyx dashboard username (email) and password.
import dxflow dxs = dxflow.Session(email="YOUR@EMAIL", password="YOUR_DIPHYX_PASSWORD")
namespace
is diphyx
by default, however, if you are using Professional
or Enterprise
account use your own namespace:
dxs = dxflow.Session(email="YOUR@EMAIL", password="YOUR_DIPHYX_PASSWORD", namespace="YOUR_NAMESAPCE")