File: __init__.py

package info (click to toggle)
blurhash-python 1.1.4%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 112 kB
  • sloc: python: 168; makefile: 2
file content (7 lines) | stat: -rw-r--r-- 344 bytes parent folder | download
1
2
3
4
5
6
7
from .blurhash import blurhash_encode as encode
from .blurhash import blurhash_decode as decode
from .blurhash import blurhash_components as components
from .blurhash import srgb_to_linear as srgb_to_linear
from .blurhash import linear_to_srgb as linear_to_srgb

__all__ = ['encode', 'decode', 'components', 'srgb_to_linear', 'linear_to_srgb']