Description: The output is truncated when extracting html text from a web page using proc python
Product/Topic Name : Altair Analytics Workbench/SLC
The following python code is supposed to generate a fairly long text.
It works properly in Python.
However, with proc python, the actual output seems to be cut due to the ls global option.
Do you have any suggestion to fix it?
proc
python
;
submit;
import requests
resultat = requests.get( "https://www.google.fr")
print(resultat.content)
endsubmit;
run
;