13 lines
376 B
Python
13 lines
376 B
Python
|
# This is a sample Python script.
|
||
|
import requests
|
||
|
from zipfile import ZipFile
|
||
|
URL = "https://www.silabs.com/documents/public/software/CP210x_Universal_Windows_Driver.zip"
|
||
|
|
||
|
response = requests.get(URL)
|
||
|
|
||
|
open('ESP32driver', 'wb').write(response.content)
|
||
|
|
||
|
with ZipFile('ESP32driver', 'r') as zipObj:
|
||
|
zipObj.extractall('C:\\Users\\akash\\Downloads\\ESP32driver')
|
||
|
|