File: __init__.py

package info (click to toggle)
python-fakeredis 2.29.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,772 kB
  • sloc: python: 19,002; sh: 8; makefile: 5
file content (8 lines) | stat: -rw-r--r-- 143 bytes parent folder | download
1
2
3
4
5
6
7
8
from .geohash import geo_encode, geo_decode
from .haversine import distance

__all__ = [
    "geo_encode",
    "geo_decode",
    "distance",
]