I want to upload LMDB file from dropbox into storage of google colab with following code
!wget https://www.dropbox.com/sh/..../tr.lmdb?dl=0&lst=
LMDB files uploaded with named by tr.lmdb?dl=0&lst= and it didn't work for following code.
env=lmdb.open('/content/tr.lmdb',max_readers=1,readonly=True,readahead=False,meminit=False,)
I removed ?dl=from name of file but it didn't work again and couldn't extract to .mdb file. while it should be extract.
Could you help me please?