mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-04-26 09:58:17 +02: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)
|