Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3262d8 commit 7bf3e63Copy full SHA for 7bf3e63
etherscan/etherscan.py
@@ -1,5 +1,8 @@
1
import json
2
-from importlib import resources
+try:
3
+ from importlib import resources
4
+except ImportError:
5
+ import importlib_resources as resources
6
7
import requests
8
0 commit comments