mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 17:02:15 +01:00
7 lines
143 B
Python
7 lines
143 B
Python
from php import curl
|
|
|
|
ch = curl.init("https://www.baidu.com/")
|
|
curl.setopt(ch, curl.CURLOPT_RETURNTRANSFER, True)
|
|
rs = curl.exec(ch)
|
|
print(rs)
|