Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 389 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 389 Bytes

nipolib-python

Nipo library for python

sample

import nipo 

#Create initial config 
nipo.CreateConfig("TOKEN", "IP", PORT)

#call ping function 
#result must be Pong 
result,ok=nipo.Ping()
if ok == True:
  print(result)

#set key and value in database 
result,ok=nipo.Set("KEY" , "VALUE")
if ok == True:
  print(result)

#get value of specefic key 
nipo.Get("KEY")