Detect Language API Crystal Client
Installation
Add it to shard.yml
dependencies:
detect_language:
github: detectlanguage/detectlanguage-crystal
branch: master
Usage
require "detect_language"
DetectLanguage.configure do |config|
config.api_key = "YOUR API KEY"
end
Language detection
results = DetectLanguage.detect("Buenos dias seƱor")
pp results[0].language
Contributing
- Fork it ( https://github.com/detectlanguage/detectlanguage-crystal/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request