add requests

This commit is contained in:
Ethan Roseman 2022-08-22 06:00:52 +09:00
parent e5608c291d
commit c76c934ac9
No known key found for this signature in database
GPG Key ID: 27F9FCEB8E4969BD
2 changed files with 7 additions and 6 deletions

12
poetry.lock generated
View File

@ -46,7 +46,7 @@ uvloop = ["uvloop (>=0.15.2)"]
name = "certifi" name = "certifi"
version = "2022.6.15" version = "2022.6.15"
description = "Python package for providing Mozilla's CA Bundle." description = "Python package for providing Mozilla's CA Bundle."
category = "dev" category = "main"
optional = false optional = false
python-versions = ">=3.6" python-versions = ">=3.6"
@ -54,7 +54,7 @@ python-versions = ">=3.6"
name = "charset-normalizer" name = "charset-normalizer"
version = "2.1.0" version = "2.1.0"
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
category = "dev" category = "main"
optional = false optional = false
python-versions = ">=3.6.0" python-versions = ">=3.6.0"
@ -192,7 +192,7 @@ compatible-mypy = ["mypy (>=0.950,<0.970)"]
name = "idna" name = "idna"
version = "3.3" version = "3.3"
description = "Internationalized Domain Names in Applications (IDNA)" description = "Internationalized Domain Names in Applications (IDNA)"
category = "dev" category = "main"
optional = false optional = false
python-versions = ">=3.5" python-versions = ">=3.5"
@ -292,7 +292,7 @@ python-versions = "*"
name = "requests" name = "requests"
version = "2.28.1" version = "2.28.1"
description = "Python HTTP for Humans." description = "Python HTTP for Humans."
category = "dev" category = "main"
optional = false optional = false
python-versions = ">=3.7, <4" python-versions = ">=3.7, <4"
@ -393,7 +393,7 @@ python-versions = ">=3.6"
name = "urllib3" name = "urllib3"
version = "1.26.11" version = "1.26.11"
description = "HTTP library with thread-safe connection pooling, file post, and more." description = "HTTP library with thread-safe connection pooling, file post, and more."
category = "dev" category = "main"
optional = false optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4" python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4"
@ -405,7 +405,7 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
[metadata] [metadata]
lock-version = "1.1" lock-version = "1.1"
python-versions = "^3.8" python-versions = "^3.8"
content-hash = "d6d249d7343a25a3c0cb3fe28f04c35d9872709f2e1141dc26210ca8e090bb66" content-hash = "ed61b35cc88b2295790fab18997ea2a65b36b7af6f70eff59895aa51cf18697d"
[metadata.files] [metadata.files]
asgiref = [ asgiref = [

View File

@ -10,6 +10,7 @@ python = "^3.8"
Django = "^4.1" Django = "^4.1"
djangorestframework = "^3.13.1" djangorestframework = "^3.13.1"
psycopg2-binary = "^2.9.3" psycopg2-binary = "^2.9.3"
requests = "^2.28.1"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
black = "^22.6.0" black = "^22.6.0"