Skip to content

dalinaum/braille-printer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Braille Printer

Source of Braille Printer

Clients

Dependency

It uses hangul and braille as submodule. Issue following command to update them.

$ git submodule init
$ git submodule update

Test

After download and extract Google App Engine SDK for Go from Download, run test server in localhost;

$ path_to_appengine_sdk_for_go/dev_appserver.py ./

And, connect to localhost:8080 with browser

APIs

Host: http://braille-printer.appspot.com/

POST /braille
  input: 변환할스트링
  lang: auto|ko|en
  format: svg|text

POST /printq/add
  input: 변환할스트링
  lang: auto|ko|en
  key: examplekey

GET  /printq/list?type=label|paper|all&key=examplekey
  { 
    [
      {"qid": 1234, 
       "type": "label|paper"},
      {"qid": 5678, 
       "type": "label|paper"}
    ]
  }

GET  /printq/item?qid=1234&format=text|svg&key=examplekey
  {
    "origin": "변환할 문자열",
    "result": "변환된 점자"
  }

POST /printq/update?qid=1234&status=1&key=examplekey

About

Braille Printer

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 62.4%
  • JavaScript 36.8%
  • Shell 0.8%