An open API service indexing awesome lists of open source software.

https://github.com/bluecannonball/declengine

Providing powerful symbolic analysis of Latin words and sentences backed by rock-solid computational intelligence. ✨
https://github.com/bluecannonball/declengine

cpp latin latin-language latin-language-dataset translation

Last synced: about 1 month ago
JSON representation

Providing powerful symbolic analysis of Latin words and sentences backed by rock-solid computational intelligence. ✨

Awesome Lists containing this project

README

          

# DeclEngine
Providing powerful symbolic analysis of Latin words and sentences backed by rock-solid computational intelligence. ✨

## Usage
See `test.py` for a simple way to test and query the engine in the command line. In the example below, the engine is queried manually using the `curl` command. Make sure to execute the engine in the project's root directory.
```sh
$ curl "http://localhost:8000/word_info?word=amat"
[
{
"english_base": "love",
"forms": [
{
"english_equivalent": "it loves",
"mood": "indicative",
"part_of_speech": "verb",
"plural": false,
"tense": "present",
"voice": "active"
}
]
}
]

$ curl "http://localhost:8000/sentence_info?sentence=In+principio+creavit+Deus+caelum+et+terram."
inbeginningcreateGodheavenandearth.
```