web-dev-qa-db-fra.com

Comment télécharger le tableau depuis un site web en utilisant wget / curl?

http://www.dgda.gov.bd/index.php/manufacturers/allopathic

Je veux télécharger la table à partir de ce site.

1
alhelal

Cela téléchargera les données JSON qui remplissent le tableau:

curl --data "action=getDrugCompanyDatabaseData" http://www.dgda.gov.bd/administrator/components/com_jcode/source/serverProcessing.php

Ou enregistrez-le dans un fichier

curl --data "action=getDrugCompanyDatabaseData" http://www.dgda.gov.bd/administrator/components/com_jcode/source/serverProcessing.php > output.json
3
Alessandro B