From 3a06edb3d8f6304e6aab2b00f44065c41f97a4dd Mon Sep 17 00:00:00 2001 From: Doug Guthrie Date: Sat, 16 Dec 2023 11:07:09 -0700 Subject: [PATCH] Update package dependencies --- poetry.lock | 63 +++++++++++++++++++++++++------------------------- pyproject.toml | 6 ++--- 2 files changed, 34 insertions(+), 35 deletions(-) diff --git a/poetry.lock b/poetry.lock index 6c72f6f..7f2e1ff 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.7.0 and should not be changed by hand. [[package]] name = "appnope" @@ -76,6 +76,24 @@ files = [ {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"}, ] +[[package]] +name = "beautifulsoup4" +version = "4.12.2" +description = "Screen-scraping library" +optional = false +python-versions = ">=3.6.0" +files = [ + {file = "beautifulsoup4-4.12.2-py3-none-any.whl", hash = "sha256:bd2520ca0d9d7d12694a53d44ac482d181b4ec1888909b035a3dbf40d0f57d4a"}, + {file = "beautifulsoup4-4.12.2.tar.gz", hash = "sha256:492bbc69dca35d12daac71c4db1bfff0c876c00ef4a2ffacce226d4638eb72da"}, +] + +[package.dependencies] +soupsieve = ">1.2" + +[package.extras] +html5lib = ["html5lib"] +lxml = ["lxml"] + [[package]] name = "black" version = "23.10.1" @@ -1507,20 +1525,6 @@ files = [ [package.dependencies] six = ">=1.5" -[[package]] -name = "python-dotenv" -version = "1.0.0" -description = "Read key-value pairs from a .env file and set them as environment variables" -optional = true -python-versions = ">=3.8" -files = [ - {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, - {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, -] - -[package.extras] -cli = ["click (>=5.0)"] - [[package]] name = "pytz" version = "2023.3.post1" @@ -1806,6 +1810,17 @@ files = [ {file = "sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88"}, ] +[[package]] +name = "soupsieve" +version = "2.5" +description = "A modern CSS selector implementation for Beautiful Soup." +optional = false +python-versions = ">=3.8" +files = [ + {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"}, + {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"}, +] + [[package]] name = "stack-data" version = "0.6.3" @@ -2019,22 +2034,6 @@ files = [ {file = "wcwidth-0.2.9.tar.gz", hash = "sha256:a675d1a4a2d24ef67096a04b85b02deeecd8e226f57b5e3a72dbb9ed99d27da8"}, ] -[[package]] -name = "webdriver-manager" -version = "3.9.1" -description = "Library provides the way to automatically manage drivers for different browsers" -optional = true -python-versions = ">=3.7" -files = [ - {file = "webdriver_manager-3.9.1-py2.py3-none-any.whl", hash = "sha256:1dfc29a786abb97ba28076d4766d931064eeeac71a9685a3e8d46f5d363fcbe3"}, - {file = "webdriver_manager-3.9.1.tar.gz", hash = "sha256:cd1f49ebb325a98b4dc3c41056f5b645e82fff3f83e346607844ec0bdf561c0b"}, -] - -[package.dependencies] -packaging = "*" -python-dotenv = "*" -requests = "*" - [[package]] name = "wsproto" version = "1.2.0" @@ -2070,4 +2069,4 @@ premium = ["selenium", "webdriver-manager"] [metadata] lock-version = "2.0" python-versions = ">=3.8.1,<4.0" -content-hash = "5bb142dfc188dfb4ea5909389ba272201a2148343ae8d05e3d3e5f3530604663" +content-hash = "79b43190183d3827f506292ea737f1cd95cad8d73703b9cd098e1a0bc4452744" diff --git a/pyproject.toml b/pyproject.toml index 6509077..9d3fb29 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "yahooquery" -version = "2.3.6" +version = "2.3.7" description = "Python wrapper for an unofficial Yahoo Finance API" authors = ["Doug Guthrie "] documentation = "https://yahooquery.dpguthrie.com" @@ -16,7 +16,7 @@ requests-futures = "^1.0.1" tqdm = "^4.65.0" lxml = "^4.9.3" selenium = {version = "^4.10.0", optional = true} -webdriver-manager = {version = "^3.8.6", optional = true} +beautifulsoup4 = "^4.12.2" [tool.poetry.dev-dependencies] pytest = "^7.4.0" @@ -34,4 +34,4 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry.extras] -premium = ["selenium", "webdriver-manager"] +premium = ["selenium"]