Skip to content

Provide functions to upload and retrive data to thingspeak server in effective way.

Notifications You must be signed in to change notification settings

SanskarDahiya/Thingspeak1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

Thingspeak1

Provide functions to upload and retrive data to thingspeak server in effective way. #python

To retrive data from thingspeak: We have a funcion retrivedata() which take 3 arguments out of which 1 is optional. 1st argument is Channel ID, 2nd argument is read api key, *3rd argument is total number of fields you want to retrive.

  Example call:
    
    Let ChannelID is 12345, read api is 123abcdef123 have 3 data fields to retrive,
      then retrivedata('12345','123abcdef123',3) which return the data in the form of list.

To upload data to thingspeak: We have a funcion uploaddata() which take atleast 3 arguments but able to take as many arguments you gave. 1st argument is write api key, 2nd argument is total number of varioius fields, rest are the data corresponding to each field.

   Example call:
    
    Let write api is 123abcdef123, have 2 data fields and data is hello python,
      then uploaddata('123abcdef123',2,'hello','python') which return only true and false.
    
    Let write api is 123abcdef123, have 3 data fields and data is hello python user,
      then uploaddata('123abcdef123',3,'hello','python','user') which return only true and false.

About

Provide functions to upload and retrive data to thingspeak server in effective way.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages