Python Forum

Full Version: How to use Python to extract data from Zoho Creator software on the web
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I am new to Python, although I have experience programming. I am looking for advice on how I can use a programming language to interact with Zoho Creator (a cloud software to create custom applications for businesses) to log onto Zoho on the web, and pull and extract certain data which can then be organized into an excel spreadsheet.

Is Python a good tool for this type of challenge? Is this what you call web-scraping? I would appreciate any advice you could give me on how I can go about this or any resources that I can learn from. If nothing else, if you could point me in the general direction of where I can start that would be appreciated.

Regards,
Dan
(Jul-05-2019, 03:42 PM)dan7055 Wrote: [ -> ]Is Python a good tool for this type of challenge? Is this what you call web-scraping?
Yes,big application like this often have a API,in this case a REST API.
So here can use Requests to work with API.
For basic web-scraping look at Web-Scraping part-1, part2.

(Jul-05-2019, 03:42 PM)dan7055 Wrote: [ -> ]and pull and extract certain data which can then be organized into an excel spreadsheet.
Also Pandas can be good for this,as it can read from web and write to excel.
Look at this Thread.