D Google Translate Library
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Alexander Zhirov 78004182c2 The first stable working release 1 week from now
source The first stable working release 1 week from now
tests The first stable working release 1 week from now
.gitignore The first stable working release 1 week from now
CHANGELOG.md The first stable working release 1 week from now
LICENSE The first stable working release 1 week from now
README.md The first stable working release 1 week from now
dub.json The first stable working release 1 week from now
dub.selections.json The first stable working release 1 week from now

README.md

D Google Translate Library

license main githab dub linux

The library is a simple translator based on using an HTTP GET method request in Google Translate.

Quick start

import dgtl;
import std.stdio;

void main()
{
    auto dgtl = new DGTL;

    dgtl.lang.source.en;
    dgtl.lang.target.de;

    string text = "Text intended for translation into German";

    dgtl.translate(text).writeln;
}

DUB

Add a dependency on "dgtl": "~>0.0.1"