har2tree 1.35.0__tar.gz → 1.36.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: har2tree
3
- Version: 1.35.0
3
+ Version: 1.36.0
4
4
  Summary: HTTP Archive (HAR) to ETE Toolkit generator
5
5
  License-Expression: BSD-3-Clause
6
6
  License-File: LICENSE
@@ -20,19 +20,19 @@ Classifier: Programming Language :: Python :: 3.14
20
20
  Classifier: Topic :: Internet
21
21
  Classifier: Topic :: Security
22
22
  Provides-Extra: docs
23
- Requires-Dist: Sphinx (>=8.2.3) ; (python_version >= "3.11") and (extra == "docs")
24
- Requires-Dist: beautifulsoup4[charset-normalizer,lxml] (>=4.14.2)
23
+ Requires-Dist: Sphinx (>=9.0.4) ; (python_version >= "3.11") and (extra == "docs")
24
+ Requires-Dist: beautifulsoup4[charset-normalizer,lxml] (>=4.14.3)
25
25
  Requires-Dist: ete3 (>=3.1.3)
26
26
  Requires-Dist: filetype (>=1.2.0)
27
27
  Requires-Dist: json-stream (>=2.3.3,<3.0.0)
28
28
  Requires-Dist: legacy-cgi (>=2.6.4) ; python_version >= "3.13" and python_version < "4.0"
29
29
  Requires-Dist: multipart (>=1.3.0,<2.0.0)
30
30
  Requires-Dist: numpy (>=2.2,<2.3) ; python_version < "3.11"
31
- Requires-Dist: numpy (>=2.3.5) ; python_version >= "3.11" and python_version < "4.0"
32
- Requires-Dist: publicsuffixlist (>=1.0.2.20251115)
31
+ Requires-Dist: numpy (>=2.3.5) ; python_version >= "3.11" and python_version < "3.15"
32
+ Requires-Dist: publicsuffixlist (>=1.0.2.20251209)
33
33
  Requires-Dist: requests-toolbelt (>=1.0.0,<2.0.0)
34
34
  Requires-Dist: six (>=1.17.0) ; extra == "docs"
35
- Requires-Dist: tinycss2 (>=1.4.0)
35
+ Requires-Dist: tinycss2 (>=1.5.1)
36
36
  Requires-Dist: w3lib (>=2.3.1)
37
37
  Project-URL: Documentation, https://har2tree.readthedocs.io/en/latest/
38
38
  Project-URL: Repository, https://github.com/Lookyloo/har2tree
@@ -834,7 +834,7 @@ class Har2Tree:
834
834
 
835
835
  def search_in_frames(self, urls: set[str], frame: FramesResponse) -> Iterator[str]:
836
836
  # If the frame doesn't have children, there are no potential URLs to attach
837
- if not frame.get('children') or frame['children'] is None:
837
+ if not isinstance(frame, dict) or not frame.get('children') or frame['children'] is None:
838
838
  return None
839
839
 
840
840
  if frame.get('url'):
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "har2tree"
3
- version = "1.35.0"
3
+ version = "1.36.0"
4
4
  description = "HTTP Archive (HAR) to ETE Toolkit generator"
5
5
  authors = [
6
6
  {name="Raphaël Vinot", email="raphael.vinot@circl.lu"}
@@ -13,15 +13,15 @@ dynamic = [ "classifiers" ]
13
13
 
14
14
  dependencies = [
15
15
  "ete3 (>=3.1.3)",
16
- "beautifulsoup4[charset-normalizer,lxml] (>=4.14.2)",
17
- "publicsuffixlist (>=1.0.2.20251115)",
16
+ "beautifulsoup4[charset-normalizer,lxml] (>=4.14.3)",
17
+ "publicsuffixlist (>=1.0.2.20251209)",
18
18
  "filetype (>=1.2.0)",
19
19
  # poetry up fails with the version of numpy forced for python < 3.11.
20
20
  # The work around is to comment it, run poetry up, uncomment it. and run poetry update.
21
21
  "numpy (>=2.2,<2.3) ; python_version < '3.11'",
22
- "numpy (>=2.3.5) ; python_version >= \"3.11\" and python_version < \"4.0\"",
22
+ "numpy (>=2.3.5) ; python_version >= \"3.11\" and python_version < \"3.15\"",
23
23
  "w3lib (>=2.3.1)",
24
- "tinycss2 (>=1.4.0)",
24
+ "tinycss2 (>=1.5.1)",
25
25
  "legacy-cgi (>=2.6.4) ; python_version >= \"3.13\" and python_version < \"4.0\"",
26
26
  "multipart (>=1.3.0,<2.0.0)",
27
27
  "json-stream (>=2.3.3,<3.0.0)",
@@ -44,12 +44,12 @@ classifiers = [
44
44
  ]
45
45
 
46
46
  [project.optional-dependencies]
47
- docs = ["Sphinx (>=8.2.3) ; python_version >= \"3.11\"", "six (>=1.17.0)"]
47
+ docs = ["Sphinx (>=9.0.4) ; python_version >= \"3.11\"", "six (>=1.17.0)"]
48
48
 
49
49
  [tool.poetry.group.dev.dependencies]
50
- mypy = "^1.18.2"
50
+ mypy = "^1.19.0"
51
51
  pytest-cov = "^7.0.0"
52
- coverage = "^7.11.3"
52
+ coverage = "^7.13.0"
53
53
  types-beautifulsoup4 = "^4.12.0.20250516"
54
54
 
55
55
  [build-system]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes