Replies: 4 comments 3 replies
-
Sure! Go ahead 👍 |
Beta Was this translation helpful? Give feedback.
-
Dear @daijro, I want to ask you a question regarding camoufox integration with hrequests. I think I'll probably need to implement hrequests in Elixir also :) Because it's really great.. |
Beta Was this translation helpful? Give feedback.
-
@daijro, I also have another question regarding financial support of your work and contribution to Camoufox. |
Beta Was this translation helpful? Give feedback.
-
Sure! A main design goal for hrequests was to be able to use requests-based scraping on captcha-protected websites by temporarily loading a browser to solve the challenge, then updating the cookies of the Session: import hrequests
session = hrequests.Session()
resp = session.get("https://example-website-with-captcha.com")
# Response is blocked by a captcha, we need to solve the challenge first
with resp.render() as page:
# Example: Wait for the captcha to solve
page.awaitUrl('https://targetpage.com')
# Response and session cookies are now updated. Hrequests v0.9.0 now implements Camoufox and allows getting around these types of challenges.
Sure! My email is [email protected] 👍 |
Beta Was this translation helpful? Give feedback.
-
Hi @daijro, I would like to build an Elixir library for Camoufox, is it OK?
Beta Was this translation helpful? Give feedback.
All reactions