Skip to content
Snippets Groups Projects
Commit ad00c538 authored by lucien senaneuch's avatar lucien senaneuch Committed by GATEAU Thibault
Browse files

[Readme] delete 'get_value' function and remplace it to 'get_string_value'

parent 0cc1402f
Branches
No related tags found
No related merge requests found
......@@ -14,9 +14,13 @@ Think to end the address with a '/'.
from nanospace import Nanospace
nanospace = Nanospace('http://yourSrvUrl/','yourUsername', 'yourPassword')
print(nanospace.get_value(66))
print(nanospace.get_string_value(66))
nanospace.update_value(66, 'sma', '9000000')
print(nanospace.get_value(66)) # 9000000
print(nanospace.get_string_value(66)) # 9000000
print(nanospace.get_formula_value(66))
nanospace.update_value(77, 'sma', '9000000')
print(nanospace.get_formula_value(66)) # 9000000
```
### Creation of element
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment