Does it support DELETE or PUT method? If yes provide with any example please. I need to use piston API.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
you can do it with httplib:
also, check out this question. the accepted answer shows a way to add other methods to urllib2:
|
||||
|
Correction for Raj's answer:
|
|||||||||
|
|
You can subclass the urllib2.Request object and override the method when you instantiate the class.
Courtesy of Benjamin Smedberg |
||||
|
|