forked from max32002/nodriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
98 lines (78 loc) · 3.46 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[project]
name = "nodriver" # Required
version = "0.37" # Required
description = """
[Docs here](https://ultrafunkamsterdam.github.io/nodriver)
* Official successor of Undetected Chromedriver
* Can be made to work for for all chromium based browsers.
* Dropped selenium and chromedriver binary requirements.
* fully asynchronous == bizarre performance gains, and more granular control
Part of undetected-chromedriver, or merely the successor of it, this library is a full rewrite, providing a
fast framework for web automation, webscraping, bots and any other creative ideas which are normally
hindered by annoying anti bot systems like Captcha / CloudFlare / Imperva / hCaptcha and other
big corp "ai" money machines using your input to make even more $$ (http://tinyurl.com/bigcorp-ai-inputs)
The webdriver/selenium requirement is dropped entirely, since this library communicates directly to the browser.
Being fully asynchronous, this adds massive performance improvements and more detailed control possibilities.
As usual ( like undetected chromedriver) all config details and best practices are built-in, which means
up and running with just a line of code.
This makes it simple to use for quick prototyping, and perfect for interactive interpreter use (eg: IPython).
WARNING:
- results may vary due to many factors. No guarantees are given whatsoever.
- Running from bad IP or datacenter may still cause captcha's and/or other problems.
- With great power comes ... etc etc etc
no but SERIOUS: for your own benefit, make sure "they" have no reason for upscaling anti-bot measurements.
there might be one day it would not be feasible anymore to work up against big corp, and provide upgrades
and free libraries.
""" # Optional
readme = {file = "README.md", content-type = "text/markdown"} # Optional
requires-python = ">=3.9"
license = {file = "LICENSE.txt"}
keywords = [
"webdriver", "browser", "captcha", "scraping",
"selenium", "navigator", "python3", "cloudflare",
"chromedriver", "anti-bot", "bot-detection",
"cloudflare-bypass", "distil", "anti-detection"]
authors = [
{name = "UltrafunkAmsterdam", email = "doesnotexist@ultrafunk.nl" } # Optional
]
maintainers = [
{name = "UltrafunkAmsterdam", email = "doesnotexist@ultrafunk.nl" } # Optional
]
classifiers = [ # Optional
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"mss",
"websockets>=11",
"deprecated"
]
#
[project.urls]
"Homepage" = "https://github.com/UltrafunkAmsterdam/nodriver"
"Bug Reports" = "https://github.com/UltrafunkAmsterdam/nodriver/issues"
"Source" = "https://github.com/UltrafunkAmsterdam/nodriver"
[tool.setuptools]
include-package-data = true
packages = ["nodriver", "nodriver.core", "nodriver.cdp"]
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = [
"black",
"build",
"sphinx",
"sphinx_markdown_builder",
"sphinx_autodoc_typehints",
"furo",
"pygments",
]