How to download EMINST by using Pytorch?

I ask you a question. until 2023 December, I could download EMINST by using this code at google Colaboratory

import torch
import torchvision

emnist_data = torchvision.datasets.EMNIST(
    './EMNIST', 
    split='balanced',
    train=True, download=True, transform=torchvision.transforms.ToTensor())

data_loader = torch.utils.data.DataLoader(emnist_data, batch_size=100, shuffle=True)

but three days ago, I found that I could not download EMINST at Google Colaboratory.

error is here
File not found or corrupted

If you know something about EMNIST,could you tell me why I cannot download it?

The download seems to be broken again as also mentioned in the corresponding issue. CC @pmeier

Thank you for replying!