Change Password

Please enter the password.
Please enter the password. Between 8-64 characters. Not identical to your email address. Contain at least 3 of: uppercase, lowercase, numbers, and special characters.
Please enter the password.
Submit

Change Nickname

Current Nickname:
Submit

Apply New License

License Detail

Please complete this required field.

  • Ultipa Graph V4

Standalone

Please complete this required field.

Please complete this required field.

The MAC address of the server you want to deploy.

Please complete this required field.

Please complete this required field.

Cancel
Apply
ID
Product
Status
Cores
Applied Validity Period(days)
Effective Date
Excpired Date
Mac Address
Apply Comment
Review Comment
Close
Profile
  • Full Name:
  • Phone:
  • Company:
  • Company Email:
  • Country:
  • Language:
Change Password
Apply

You have no license application record.

Apply
Certificate Issued at Valid until Serial No. File
Serial No. Valid until File

Not having one? Apply now! >>>

Product Created On ID Amount (USD) Invoice
Product Created On ID Amount (USD) Invoice

No Invoice

Search
    English

      Graph

      showGraph()

      Method and class:

      def showGraph(self, 
      			  requestConfig: ULTIPA_REQUEST.RequestConfig = ULTIPA_REQUEST.RequestConfig()
      ) -> ULTIPA_RESPONSE.ResponseListGraph
      

      Example: Acquire information of all graphsets

      from ultipa import Connection, UltipaConfig
      
      # omit code of establishing server connection 'conn' using graphset 'default'
      
      req = conn.showGraph()
      req.Print()
      

      getGraph()

      Method and class:

      def getGraph(self, 
               	 request: ULTIPA_REQUEST.Graph, 
                   requestConfig: ULTIPA_REQUEST.RequestConfig = ULTIPA_REQUEST.RequestConfig()
      ) -> ULTIPA_RESPONSE.ResponseGraph
      
      class Graph:
      	def __init__(self, graph: str, description: str = None)
      

      Example: Acquire information of graphset 'test'

      from ultipa import Connection, UltipaConfig
      
      # omit code of establishing server connection 'conn' using graphset 'default'
      
      req = conn.getGraph(ULTIPA_REQUEST.Graph("test"))
      req.Print()
      

      createGraph()

      Method and class:

      def createGraph(self, 
      				request: ULTIPA_REQUEST.Graph,
                      requestConfig: ULTIPA_REQUEST.RequestConfig = ULTIPA_REQUEST.RequestConfig()
      ) -> ULTIPA_RESPONSE.UltipaResponse
      
      class Graph:
      	def __init__(self, graph: str, description: str = None)
      

      Example: Create graphset testGraph' with description 'graphset for test'

      from ultipa import Connection, UltipaConfig
      from ultipa import ULTIPA_REQUEST
      
      # omit code of establishing server connection 'conn' using graphset 'default'
      
      req = conn.createGraph(ULTIPA_REQUEST.Graph("testGraph", "graphset for test"))
      req.Print()
      

      alterGraph()

      Method and class:

      def alterGraph(self, 
      		 	  request: ULTIPA_REQUEST.AlterGraph,
                    requestConfig: ULTIPA_REQUEST.RequestConfig = ULTIPA_REQUEST.RequestConfig()
      ) -> ULTIPA_RESPONSE.UltipaResponse
      
      class AlterGraph:
      	def __init__(self, oldGraphName: str, newGraphName: str, newDescription: str = None)
      

      Example: Modify graphset 'testGraph' with new name 'newGraph' and new description 'rename testGraph as newGraph'

      from ultipa import Connection, UltipaConfig
      from ultipa import ULTIPA_REQUEST
      
      # omit code of establishing server connection 'conn' using graphset 'default'
      
      req = conn.alterGraph(ULTIPA_REQUEST.AlterGraph("testGraph","newGraph","rename testGraph as newGraph"))
      req.Print()
      

      dropGraph()

      Method and class:

      def dropGraph(self, 
      			  request: ULTIPA_REQUEST.Graph,
                    requestConfig: ULTIPA_REQUEST.RequestConfig = ULTIPA_REQUEST.RequestConfig()
      ) -> ULTIPA_RESPONSE.UltipaResponse
      
      class Graph:
      	def __init__(self, graph: str, description: str = None)
      

      Example: Delete graphset 'newGraph'

      from ultipa import Connection, UltipaConfig
      from ultipa import ULTIPA_REQUEST
      
      # omit code of establishing server connection 'conn' using graphset 'default'
      
      req = conn.dropGraph(ULTIPA_REQUEST.Graph("newGraph"))
      req.Print()
      
      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写