1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

micropythonでcookie管理 (備忘録)

Last updated at Posted at 2022-12-26

やりたいこと

pythonのrequests.sessionのようにcookieの保存/管理を行うものが欲しい。

環境

ureques.py 現時点での最新版(a3d6d29b1b)

作ったもの

注意点

  • 複数のドメインにわたってリクエストを送る場合、cookieが流出します (google.comにリクエスト後yahoo.co.jpにリクエストするとyahoo.co.jpにgoogle.comのcookieも流れる)
    そのため、使用は所有している個人サーバや単一のドメインに限ってください。

  • 3xx番のリダイレクト時はcookieが使用されません (urequests.py側のバグ)

その他注意点

  • ドメインやパスへの制約などが無い
  • 有効期限や期間は無く無期限

コードと使用例

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?