(self, url, key, value, timeout=5, options=None)
| 863 | return self.curl_raw(url, timeout, options) |
| 864 | |
| 865 | def curl_post_value(self, url, key, value, timeout=5, options=None): |
| 866 | if not options: |
| 867 | options = [] |
| 868 | options.extend(["--form", "{0}={1}".format(key, value)]) |
| 869 | return self.curl_raw(url, timeout, options) |
| 870 | |
| 871 | def curl_protocol_version(self, url, timeout=5, options=None): |
| 872 | if not options: |