Zoro
Zoro
I also wants to get this information. How to map the raw data to temperature?
Hi mohbattharani, How about your result?
Seek-Pro python2: https://github.com/hntuan94/libPySeek.git
Hi @TadLeonard , - Before testing the delete function I already tried using CGI on the web browser and got the following error: Command: http://flashair/upload.cgi?DEL=/DCIM/100__TSB/EK000003.JPG Response: 500 Server Error The...
Hi @TadLeonard , Simple modification I could delete file using CGI. I'll test the delete function and let you know soon. In the /SD_WLAN/ folder open the CONFIG file with...
Hi @TadLeonard , I found an issue with delete function. ``` def delete_file(remote_file: str, url=URL): response = get(url=url, **{Upload.delete: remote_file}) if response.status_code != 200: raise UploadError("Failed to delete file", response)...
That's great. I modified your function a little and it works. ``` def delete_file(remote_file: str, session: Session = Session()): remote_file = pathlib.PurePosixPath(session.remote_dir, remote_file) response = get(url=session.url, **{Upload.delete: str(remote_file)}) if response.status_code...
In order to raise the error. May we use `response.text` instead of `response.status_code` How you do think of? Ref: https://stackoverflow.com/questions/40488882/pythons-request-get-only-show-200-status
The response of CGI is below: SUCCESS NG
Yeah! I did it :)