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. ✨
- Host: GitHub
- URL: https://github.com/bluecannonball/declengine
- Owner: BlueCannonBall
- License: mpl-2.0
- Created: 2023-10-23T15:15:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-25T03:15:14.000Z (over 1 year ago)
- Last Synced: 2025-04-11T08:58:46.004Z (12 months ago)
- Topics: cpp, latin, latin-language, latin-language-dataset, translation
- Language: C++
- Homepage:
- Size: 337 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.
```