SharadKumar97 / OSINT-SPY

Performs OSINT scan on email/domain/ip_address/organization using OSINT-SPY. It can be used by Data Miners, Infosec Researchers, Penetration Testers and cyber crime investigator in order to find deep information about their target. If you want to ask something please feel free to reach out to me at robotcoder@protonmail.com
https://docs.osint-spy.io
GNU General Public License v3.0
1.15k stars 182 forks source link

Syntax Error in Chain api #25

Closed Prizrak-X closed 4 years ago

Prizrak-X commented 4 years ago

File "osint-spy.py", line 27 url = f'https://chain.api.btc.com/v3/block/date/{date}' ^ SyntaxError: invalid syntax

Sayam753 commented 4 years ago

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 4 years ago

Yes, it works now thanks!