Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to open a file with ".$$1" format

I have ordered a data from an organization. They provided me with a huge file with .$$1 extension.

I just what to know what is this file and how can I open it with R or python?

I first tried to open this file with notepad++, but it was not a text file.
7-zip shows that it contains worksheets with a json in it, but it failed to extract it.

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

Notepad++ sliced output of the first line:

PK    .vëT.¶ç#¢I]ªx   xl/worksheets/sheet1.xml

>Solution :

If it starts with b'PK', try unzip the file

import zipfile
with zipfile.ZipFile(file, "r", compression=zipfile.ZIP_DEFLATED) as zfile:
    zfile.extractall()

or open it with excel

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading