-
Notifications
You must be signed in to change notification settings - Fork 697
Use cloud config in pygwalker to save your spec
Douding edited this page Nov 2, 2023
·
1 revision
In the past, users often used local file systems to store chart specs, example:
walker = pyg.walk(df, spec="./gw.json")
Many users found that files stored locally are easy to lose and difficult to manage.
Now you can use cloud config files to store your spec.
Refer: How to set your kanaries token in pygwalker?
walker = pyg.walk(df, spec="ksf://<your_workspace_name>/<your_file_name>")
For example, the workspace to which my kanaries_token belongs is dkxmfdn12
, The file I want to read and write is share_config.json
, then my code is:
walker = pyg.walk(df, spec="ksf://dkxmfdn12/share_config.json")
BTW, This feature is only available in pygwalker>=0.3.10
.