Python
import requests as re
payload={"email":"your-email-here"}
x=re.post('https://easydb.org/user', json=payload)
print(x.text)
EasyDB is a simple db when you need limited or one-time storage for your scripts or web applications. Simply store and query data through our flexible REST api. Start by making a call to our Register api with your email and you will be up and running in no time.
import requests as re
payload={"email":"your-email-here"}
x=re.post('https://easydb.org/user', json=payload)
print(x.text)
import requests as re
payload={
"access_token":"your token",
"data_id":"add_a_custom_id",
"data":{"whatever_keys":"Whatever_content"}
}
x=re.post('https://easydb.org/data', json=payload)
print(x.text)
import requests as re
payload={
"access_token"="your token",
"data_id":"use one you have sent in earlier",}
x=re.get('https://easydb.org/data', json=payload)
print(x.text)
For a full use case example go to /start
For further documentation go to /schema
If you are uncertain why you would use this go toWhy use Easydb?
For security considerations go to /security