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

      Download | Export

      download()

      Method and class:

      def download(self, 
      			 request: ULTIPA_REQUEST.Download,
                   requestConfig: ULTIPA_REQUEST.RequestConfig = ULTIPA_REQUEST.RequestConfig()
      ) -> List[ULTIPA_RESPONSE.Response]
              
      class Download:
      	def __init__(self, fileName: str, taskId: str, savePath: str = None)
      

      Example: Download file 'degree_test' of algorithm task 134 to './test.csv'

      from ultipa import Connection, UltipaConfig
      
      # omit code of establishing server connection 'conn' 
      
      req = conn.download(ULTIPA_REQUEST.Download("degree_test", "134", "./test.csv"))
      req[0].Print()
      

      export()

      Method and class:

      def export(self, 
      		   request: ULTIPA_REQUEST.Export,
                 requestConfig: ULTIPA_REQUEST.RequestConfig = ULTIPA_REQUEST.RequestConfig()
      ) -> ULTIPA_RESPONSE.ResponseExport
      
      class Export:
      	def __init__(self, type: ULTIPA.DBType, limit: int, schema: str, properties: List[str] = None)
      

      Example: Export 100 nodes from schema 'default' of graphset 'test', carring properties @default.name and @default.age

      from ultipa import Connection, UltipaConfig
      
      # omit code of establishing server connection 'conn' using graphset 'default'
      
      req = conn.export(
        ULTIPA_REQUEST.Export(ULTIPA.DBType.DBNODE, 100, "default", ["name","age"]), 
        RequestConfig("test")
      )
      print(req.data[0])
      
      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写