What's the best way to scrape cards data using Python? or How can I efficiently scrape cards data wit

20 Replies, 1913 Views

Scrape cards python pro tip: Use `selenium-wire` to inspect requests/responses. Helps find hidden APIs.

```python
from seleniumwire import webdriver

driver = webdriver.Chrome()
driver.get('your_url')

for request in driver.requests:
if 'api' in request.url:
print(request.url) # might find card data here
```

Pagination? Just intercept the API calls and modify params.

Messages In This Thread



Users browsing this thread: 2 Guest(s)