kopia lustrzana https://github.com/micropython/micropython-lib
9 wiersze
220 B
Python
9 wiersze
220 B
Python
![]() |
# This module provides a backwards-compatble import for `urequests`.
|
||
|
# It lazy-loads from `requests` without duplicating its globals dict.
|
||
|
|
||
|
|
||
|
def __getattr__(attr):
|
||
|
import requests
|
||
|
|
||
|
return getattr(requests, attr)
|