Hello, trying to download the access-parser whl file but I only see the .tar.gz file. Anyone knows where I can download the .whl file from ?
I have to do an offline install.
Thanks!
Hello, trying to download the access-parser whl file but I only see the .tar.gz file. Anyone knows where I can download the .whl file from ?
I have to do an offline install.
Thanks!
It looks like it’s pure Python.
If you run pip wheel access-parser, it’ll download the sdist and turn it into a wheel.
Alternatively, after you pip install setuptools you can run pip install --no-build-isolation path/to/access_parser-0.0.6.tar.gz without network access.