Generate mouse, touch, and keyboard motions for Arkose Labs Funcaptcha
Project description
bio
Generate mouse, touch, and keyboard motions for Arkose Labs Funcaptcha
$ python -m pip install unfuncaptcha-bio
from unfuncaptcha_bio import KBioGenerator, MBioGenerator, TBioGenerator
KBioGenerator.generate(
2, # Answer index
game_type = 3 # Game type defaults to 4
)
# eyJrYmlvIjoiMjQ4NCwxLDE7MzQ0M...
loc = { # Provide coordinates for each game type 4 component
"right_arrow": (280, 113),
"left_arrow": (40, 113),
"submit_button": (175, 146),
}
MBioGenerator.generate(
0,
game_type = 4,
location = loc,
starting_point = (20, 20), # Mouse starting point (only required for game type 4)
start_offset = 3000, # Initial timestamp offset (in milliseconds)
encode_base64 = False, # Whether to base64 encode the bio JSON
)
# {"mbio":"3078,0,20,20;3097,0,25,21;3109
TBioGenerator.generate(
0,
location = loc,
encode_base64 = False,
start_offset = 3000,
)
# {"mbio":"3078,0,20,20;3097,0,25,21;3109
table of contents
-
usage (most of this library is self explanitory)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
unfuncaptcha_bio-1.0.1.tar.gz
(20.0 kB
view hashes)
Built Distribution
Close
Hashes for unfuncaptcha_bio-1.0.1-py3-none-any.whl
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 | 7b1acf98a7bcd8d197be094ed6b939536109889f5cc4f2b2a840a67f0546f09e |
|
| MD5 | 0e51b5c4961ab09bd5f4dfccbee1a923 |
|
| BLAKE2b-256 | 3746ef29e25f909420e7240615b10f911420396536449e5c6763d7681d380f72 |