Packages
Using and installing Python packages.
Default Packages
import pandas as pd
import numpy as np
import scipyimport micropip
# `await` is necessary to wait until the package is available
await micropip.install("faker")
# Import installed package
from faker import Faker
# Use the package!
fake = Faker()
fake.name()Last updated
Was this helpful?