mirror of
https://github.com/bellingcat/snscrape.git
synced 2026-06-11 03:48:29 +03:00
8 lines
157 B
Python
8 lines
157 B
Python
import pkg_resources
|
|
|
|
|
|
try:
|
|
__version__ = pkg_resources.get_distribution('snscrape').version
|
|
except pkg_resources.DistributionNotFound:
|
|
__version__ = None
|