/key_value_api

API Based Django application that can store data, return data by GET also return data by multiple key search, update data also available

Primary LanguagePython

Run the proejct

No need to migrate as it's using cloud MongoDB, just Clone , create virtualenv & install requirements pip install -m requirements.txt then run inside src directory with command python manage.py runserver

GET all data

/values

GET values by one or more keys

/values?keys=key1,key2

POST data

/values/ and pass information like this {key1: value1, key2: value2}

PATCH (update data)

/values and pass information like this {key1: value1...}