Reputation: 728
I am planning to use an RPi as a server that only talks in and listens to JSON objects.
The idea is for remote management of the RPi from one windows PC available on the local LAN.
Which python library is best for such simple use?
Upvotes: 1
Views: 1413
Reputation: 2310
I think you are talking about running a RESTful service in your RPi.
If you wanted it to be simple and bootstrap a quick application use Bottle framework or Flask.
Instead, if you want to have a REST application with loads of features ready to use with most of the standards satisfied already for you, use Django with Django Rest Framework.
Upvotes: 1