ASK me anything about python

SeasonedCode

Senior Member
Jr. Executive VIP
Jr. VIP
Joined
Oct 24, 2022
Messages
1,135
Reaction score
1,378
hello everyone
as in the title ask me anything you want about python especially scrapping and automation
 
Can you please suggest a good course for beginners ? I mean something for automation and Scraping
Thanks (I'll start this month) :)
First I prefer to start with the basics then when you will master them you can go in anyway you like
For me I suggest you to go with AI
For courses I think mosh hamadani channel is a great resource

Good luck
 
hello everyone
as in the title ask me anything you want about python especially scrapping and automation
how to open a specific chrome browser that is synced and signed in, like I have the shortcut on my pc, I tried with chatgpt and other resources but couldn't do it.
 
how to open a specific chrome browser that is synced and signed in, like I have the shortcut on my pc, I tried with chatgpt and other resources but couldn't do it.
here is a youtube video about how to do that
 
how to open a specific chrome browser that is synced and signed in, like I have the shortcut on my pc, I tried with chatgpt and other resources but couldn't do it.
Easy, save the profile in your folders and just tell python to open that folder.

how to bypass funcaptcha
The simplest way is to get a captcha solving service, and use python requests to identify your unique captcha code, send it to the service, then take their response and put it in the captcha.
 
I hate to ruining the party, but Puppeteer is the best option you've got, period. (or maybe playwright, but not selenium that's for sure)


requests or urllib ?
selenium or puppeteer ?
lxml or beautifulsoup ?

:)

Don't waste your time with selenium, it has many drawback such as lack of high quality library needed for proper scraping/botting.
Go with puppeteer or playwright and you'll be able to automate with very good stealth and accuracy.
I used to automate with selenium and then moved to puppeteer, best decision I've ever made.


funcaptcha

Puppeteer (node js) offers many solutions for this, many NPM libraries will solve the issue for you.
Generally you will see python packages which tries to mimic (unsuccessfully) puppeteer/node js packages


Just go with puppeteer
 
Last edited:
Back
Top