backend/app/test.py
MuslemRahimi b16a91b9a4 bugfixing
2024-12-04 18:54:03 +01:00

6 lines
239 B
Python

with open("json/stock-screener/data.json", 'rb') as file:
try:
data = file.read()
print(data[14807230:14807250]) # Print the problematic section
except Exception as e:
print(f"Error reading file: {e}")