Syntax Error in Chain api
Prizrak-X opened this issue · 2 comments
Prizrak-X commented
File "osint-spy.py", line 27
url = f'https://chain.api.btc.com/v3/block/date/{date}'
^
SyntaxError: invalid syntax
Sayam753 commented
Hi @Prizrak-X
It maybe because of using f strings. These f strings were introduced in python version >=3.6 . So, can you make sure that the Python's version you are running is >= 3.6?
Prizrak-X commented
Yes, it works now thanks!