Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

How to download a page with # Hastag

Ahmed
7 - Meteor

Dear All,

I'm trying to build a scraper from a webpage, I have already build a scraper in python and i trying to do the same with alteryx.

Have you an idea, how i can download the right page ?

Just use the tools download with an input text with my URL doesn't work....

 

My URL is : https://www.lfp.fr/ligue1/calendrier_resultat#sai=68&jour=-1

 

In python i split the hash with :

hash = URL.split("#")[1]

After attaching with my URL, i succeeded in getting my webpage, with  :

r = requests.get(url,hash)

 

Regards

2 REPLIES 2
AmeliaG
Alteryx
Alteryx

Hi @Ahmed,

 

I recommend you check out the Build Your Own Connector Series on the community and also open one of our existing Connectors i.e. Google Analytics by right clicking on the tool and selecting "Open Macro" - this will show you the underlying workflow of the Connector and see how we are making these API calls. 

 

Also, note we do have a Python SDK if you wanted to code this tool in Python. Here's the beginner's Guide to the Python SDK. Documentation and examples can be found on our developer's page.

 

Hope this helps!

 

Amelia 

Ahmed
7 - Meteor

The Python SDK look good.

 

Thank

Ahmed

Labels