pydoll-python 1.3.0__tar.gz → 1.3.1__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.3.0 → pydoll_python-1.3.1}/PKG-INFO +1 -1
  2. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/browser/page.py +1 -1
  3. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pyproject.toml +1 -1
  4. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/LICENSE +0 -0
  5. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/README.md +0 -0
  6. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/__init__.py +0 -0
  7. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/browser/__init__.py +0 -0
  8. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/browser/base.py +0 -0
  9. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/browser/chrome.py +0 -0
  10. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/browser/managers.py +0 -0
  11. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/browser/options.py +0 -0
  12. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/commands/__init__.py +0 -0
  13. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/commands/browser.py +0 -0
  14. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/commands/dom.py +0 -0
  15. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/commands/fetch.py +0 -0
  16. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/commands/input.py +0 -0
  17. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/commands/network.py +0 -0
  18. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/commands/page.py +0 -0
  19. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/commands/runtime.py +0 -0
  20. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/commands/storage.py +0 -0
  21. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/commands/target.py +0 -0
  22. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/connection/__init__.py +0 -0
  23. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/connection/connection.py +0 -0
  24. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/connection/managers.py +0 -0
  25. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/constants.py +0 -0
  26. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/element.py +0 -0
  27. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/events/__init__.py +0 -0
  28. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/events/browser.py +0 -0
  29. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/events/dom.py +0 -0
  30. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/events/fetch.py +0 -0
  31. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/events/network.py +0 -0
  32. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/events/page.py +0 -0
  33. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/exceptions.py +0 -0
  34. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/mixins/__init__.py +0 -0
  35. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/mixins/find_elements.py +0 -0
  36. {pydoll_python-1.3.0 → pydoll_python-1.3.1}/pydoll/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pydoll-python
3
- Version: 1.3.0
3
+ Version: 1.3.1
4
4
  Summary:
5
5
  Author: Thalison Fernandes
6
6
  Author-email: thalissfernandes99@gmail.com
@@ -256,7 +256,7 @@ class Page(FindElementsMixin): # noqa: PLR0904
256
256
  # TODO: remove the duplicated logic
257
257
  """
258
258
  response = await self._execute_command(PageCommands.screenshot())
259
- return response['result']['data'].encode('utf-8')
259
+ return response['result']['data']
260
260
 
261
261
  async def set_download_path(self, path: str):
262
262
  """
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pydoll-python"
3
- version = "1.3.0"
3
+ version = "1.3.1"
4
4
  description = ""
5
5
  authors = ["Thalison Fernandes <thalissfernandes99@gmail.com>"]
6
6
  readme = "README.md"
File without changes
File without changes