File: __init__.py

package info (click to toggle)
python-tr 0.1%2Bgit20161102.e74d4bd-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 120 kB
  • sloc: python: 159; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 249 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- coding: utf-8 -*-
from . import tr
r"""Transliteration algorythm (TR)

This module provides some operations for replacing or removing
specific characters from source.
"""

VERSION = (0, 1, 2)
__version__ = '0.1.2'
__all__ = ['tr']

tr = tr.tr