Python - Correctly Format Http Post With Delimiter
I have a python script accepting the output of a bash command 'ibeacon_scan'. I am getting this error when running the script. Traceback (most recent call last): file './stdin.
Solution 1:
You have a typo on the line where you define params
- you call it parmas
.
Generally, if you read the error message it's quite helpful. This clearly tells you that you don't have a variable defined called params
- so go check that part of your code!
Post a Comment for "Python - Correctly Format Http Post With Delimiter"