Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
を使用していくつかの追加ヘッダーを設定しました
c.setopt(self.c.HTTPHEADER, ['Accept: */*', ..., ...])
今私が望むのは、pycurl オブジェクトを破棄したり、セッションを閉じたりせずに、そのヘッダーをリセット/クリアすることです。
ヘッダーをリセットして、その値を空白の文字列に設定できます
#2つのヘッダーを消去し、他のヘッダーを保持します c.setopt(self.c.HTTPHEADER、["User-Agent:"、 "Accept:"])
これは次の方法で簡単に実行できます。
c.reset()