pydoll-python 1.2.3__tar.gz → 1.2.4__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.
Files changed (36) hide show
  1. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/PKG-INFO +1 -1
  2. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/browser/chrome.py +4 -1
  3. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pyproject.toml +1 -1
  4. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/LICENSE +0 -0
  5. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/README.md +0 -0
  6. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/__init__.py +0 -0
  7. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/browser/__init__.py +0 -0
  8. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/browser/base.py +0 -0
  9. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/browser/managers.py +0 -0
  10. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/browser/options.py +0 -0
  11. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/browser/page.py +0 -0
  12. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/commands/__init__.py +0 -0
  13. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/commands/browser.py +0 -0
  14. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/commands/dom.py +0 -0
  15. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/commands/fetch.py +0 -0
  16. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/commands/input.py +0 -0
  17. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/commands/network.py +0 -0
  18. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/commands/page.py +0 -0
  19. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/commands/runtime.py +0 -0
  20. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/commands/storage.py +0 -0
  21. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/commands/target.py +0 -0
  22. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/connection/__init__.py +0 -0
  23. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/connection/connection.py +0 -0
  24. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/connection/managers.py +0 -0
  25. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/constants.py +0 -0
  26. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/element.py +0 -0
  27. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/events/__init__.py +0 -0
  28. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/events/browser.py +0 -0
  29. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/events/dom.py +0 -0
  30. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/events/fetch.py +0 -0
  31. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/events/network.py +0 -0
  32. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/events/page.py +0 -0
  33. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/exceptions.py +0 -0
  34. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/mixins/__init__.py +0 -0
  35. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/mixins/find_elements.py +0 -0
  36. {pydoll_python-1.2.3 → pydoll_python-1.2.4}/pydoll/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pydoll-python
3
- Version: 1.2.3
3
+ Version: 1.2.4
4
4
  Summary:
5
5
  Author: Thalison Fernandes
6
6
  Author-email: thalissfernandes99@gmail.com
@@ -1,4 +1,5 @@
1
1
  import platform
2
+ from typing import Optional
2
3
 
3
4
  from pydoll.browser.base import Browser
4
5
  from pydoll.browser.managers import BrowserOptionsManager
@@ -7,7 +8,9 @@ from pydoll.browser.options import Options
7
8
 
8
9
  class Chrome(Browser):
9
10
  def __init__(
10
- self, options: Options | None = None, connection_port: int = 9222
11
+ self,
12
+ options: Optional[Options] = None,
13
+ connection_port: Optional[int] = None,
11
14
  ):
12
15
  super().__init__(options, connection_port)
13
16
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pydoll-python"
3
- version = "1.2.3"
3
+ version = "1.2.4"
4
4
  description = ""
5
5
  authors = ["Thalison Fernandes <thalissfernandes99@gmail.com>"]
6
6
  readme = "README.md"
File without changes
File without changes