3.2. i2G dataset data

3.2.1. Get dataset object by name

import wilibs.wilib
client = wilib.login('username', 'password')
dataset = client.getDatasetByName('Example Dataset', 'Example Well', 'Example Project')

3.2.2. Working with dataset object

3.2.2.1. Rename dataset

import wilibs.wilib
client = wilib.login('username', 'password')
dataset = client.getDatasetByName('Example Dataset', 'Example Well', 'Example Project')
dataset.rename('Dataset Name')

3.2.2.2. Delete dataset

import wilibs.wilib
client = wilib.login('username', 'password')
dataset = client.getDatasetByName('Example Dataset', 'Example Well', 'Example Project')
dataset.delete()

3.2.2.3. Create new numeric/text curve

Last updated

Was this helpful?