Murmurhash3 between python and javascript

So im working on a project and im trying to get the same result in python as in javascript using x64.hash128.

>>> mmh3.hash128('Helo', 0)
36257070446276374087060059272450503274
>>> mmh3.hash128('Helo', 0, False)
20867082311197569335197338913536872358

while using the javascript method:

murmurHash3.x64.hash128("Helo")
'29c3815d749d726a1b46db969b492ae8'

Have you any idea how could I fix this ? I tried translating myself but at the end it wasn’t working and gave me a headache.

Library used:

  1. https://pypi.org/project/mmh3/
  2. https://github.com/pid/murmurHash3js