How to send a JSON file from a windows service to a Django web site?
Me and my colleagues are trying to create a windows service which sends battery information and other information in the form of JSON files from a client PC to a Django web site where it will be recorded. What is the best approach for this? and also how do I receive it on the Django web site's side? I am completely new to windows services.
Currently we have created a windows service which gives us the JSON file on the client computer itself, but we need to make it so that the file is sent to the Django web server.