diff --git a/requirements.txt b/requirements.txt index 28afbaf..0de5a70 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ beautifulsoup4 -mmh3 msgpack_python packaging +pymmh3 requests diff --git a/s3s.py b/s3s.py index 17c425b..df5c567 100755 --- a/s3s.py +++ b/s3s.py @@ -1215,7 +1215,7 @@ def export_seed_json(skipprefetch=False): '''Export a JSON file for use with Lean's seed checker at https://leanny.github.io/splat3seedchecker/.''' try: - import mmh3 + import pymmh3 as mmh3 except ModuleNotFoundError: print("This function requires a Python module you don't have installed. " \ "Please run " + '`\033[91m' + "pip install -r requirements.txt" + '\033[0m`' + " and try again.")