Hi Datalore Team,
Please advise how to install wptools library.
It’s rather important tool for data scraping projects.
Thank you!
Marcel
Hi Datalore Team,
Please advise how to install wptools library.
It’s rather important tool for data scraping projects.
Thank you!
Marcel
Hello @Marceli ,
wptools depends on pycurl and it requires gcc to build, so in order to make wptools working I had to do the following:
#%%
!sudo apt update
#%%
!sudo apt install build-essential -y
#%%
!sudo apt install curl -y
#%%
!sudo apt install libcurl4-openssl-dev libssl-dev -y
#%%
!pip install pycurl
#%%
!pip install wptools
#%%
import wptools
#%%
wptools.__version__
Hello @igro, Thank you!