HTTPS requests
I want to create a query with Modular. I am still doing it with python. But I don't understand how to do it in Modular
1 Reply
A minimal example (using python "requests"):
from python import Python
let requests = Python.import_module('requests')
let response = requests.get('http://ip.jsontest.com/')
print(response.content)
There are no native calls from Mojo yet.