1
0
Fork 0
mirror of https://framagit.org/framasoft/mobilizon.git synced 2024-12-22 16:03:25 +00:00
mobilizon/priv/python/module.py

8 lines
208 B
Python
Raw Normal View History

import pkg_resources
def has_package(package):
try:
pkg_resources.get_distribution(package.decode('ascii'))
return True
except pkg_resources.DistributionNotFound:
return False