{"id":21510565,"url":"https://github.com/mldictionary/mldictionaryapi","last_synced_at":"2025-04-09T17:32:20.682Z","repository":{"id":44914524,"uuid":"376635156","full_name":"mldictionary/MLDictionaryAPI","owner":"mldictionary","description":"A Flask API REST to access words' definition","archived":false,"fork":false,"pushed_at":"2022-07-23T02:25:08.000Z","size":103,"stargazers_count":9,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-23T19:39:10.325Z","etag":null,"topics":["api-rest","api-restful","backend","flask","flask-api","flask-application","flaskapi"],"latest_commit_sha":null,"homepage":"https://mldictionaryapi.herokuapp.com/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mldictionary.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-06-13T20:32:15.000Z","updated_at":"2022-07-22T18:31:37.000Z","dependencies_parsed_at":"2022-09-04T01:03:34.238Z","dependency_job_id":null,"html_url":"https://github.com/mldictionary/MLDictionaryAPI","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mldictionary%2FMLDictionaryAPI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mldictionary%2FMLDictionaryAPI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mldictionary%2FMLDictionaryAPI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mldictionary%2FMLDictionaryAPI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mldictionary","download_url":"https://codeload.github.com/mldictionary/MLDictionaryAPI/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248077481,"owners_count":21043972,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-rest","api-restful","backend","flask","flask-api","flask-application","flaskapi"],"created_at":"2024-11-23T21:49:25.619Z","updated_at":"2025-04-09T17:32:20.512Z","avatar_url":"https://github.com/mldictionary.png","language":"Python","readme":"\u003ch1 align=\"center\"\u003e\n  \u003cimg alt=\"icon\" src=\"./.images/logo.png\"\u003e\n\u003c/h1\u003e\n\u003ch1 align=\"center\"\u003eMLDictionary API\u003c/h1\u003e\n\u003ch2 align=\"center\" \u003e\nACCESS WORDS' DEFINITIONS\u003cbr\u003e\u003cbr\u003e\n    \u003ca href=\"https://github.com/mldictionary/MLDictionaryAPI/stargazers\"\u003e\u003cimg alt=\"GitHub stars\" src=\"https://img.shields.io/github/stars/PabloEmidio/api-dictionary?style=social\"\u003e\u003c/a\u003e\n\u003c/h2\u003e\n\n---\n\n# ⚈ About\nA Flask API to access words' definitions\n\nlanguage options: English, Portuguese and Spanish\n\n---\n\n# ⚈ Required\nThis application uses Docker and Docker Compose, to install access the links bellow.\n\n- [Docker](https://docs.docker.com/get-docker/)\n- [Docker compose](https://docs.docker.com/compose/install/)\n\n---\n\n# ⚈ How to use\n\n  ``` \n  [example@example]$ git clone https://github.com/mldictionary/MLDictionaryAPI\n  [example@example]$ cd MLDictionaryAPI\n  [example@example MLDictionaryAPI]$ docker-compose up -d\n  [example@example MLDictionaryAPI]$ URL=\"http://127.0.0.1:8088\"; xdg-open $URL || sensible-browser $URL || x-www-browser $URL || gnome-open $URL\n  ```\n\n## Documentation\n\nProper documentation can be find in [extern deploy](https://mldictionaryapi.herokuapp.com/) or using the [local docker deploy](http://127.0.0.1:8088/) in your machine.\n\n---\n\n# ⚈ Tech Stack\n\nThe following tools were used in the construction of the project:\n\n- [Python](https://www.python.org/)\n- [Flask](https://flask.palletsprojects.com/en/2.0.x/tutorial/)\n- [MLDictionary](https://pypi.org/project/mldictionary/)\n- [Redis](https://redis.com/)\n- [Json](https://www.json.org/json-en.html)\n\n---\n\n# ⚈ Tree Directory\n\n``` bash\n.\n├── mldictionary_api\n│   ├── models\n│   │   ├── __init__.py\n│   │   ├── base.py\n│   │   ├── const.py\n│   │   ├── meanings.py\n│   │   └── requests.py\n│   ├── resources\n│   │   ├── __init__.py\n│   │   ├── const.py\n│   │   ├── response.py\n│   │   └── translator.py\n│   ├── routes\n│   │   ├── __init__.py\n│   │   ├── api.py\n│   │   └── views.py\n│   ├── static\n│   │   ├── css\n│   │   │   ├── small_screen.css\n│   │   │   └── style.css\n│   │   └── js\n│   │       └── scripts.js\n│   ├── templates\n│   │   └── index.jinja2\n│   ├── __init__.py\n│   ├── app.py\n│   └── const.py\n├── Dockerfile\n├── LICENSE\n├── Procfile\n├── README.md\n├── docker-compose.yml\n└── requirements.txt\n\n8 directories, 25 files\n\n```\n\n---\n\n# ⚈ Bugs and Features\n\u003cp\u003e\nPlease report any type of bug. Remember that this is an open source project and will evolve with everyone's help. :)\u003cbr\u003e\nAny report will be read and will get due attention\n\u003c/p\u003e\u003cbr\u003e\n\u003cp\u003e\nNew features are being done and new ideas are being created always that possible...\u003cbr\u003e\nnew ideas will be accepted...\n\u003c/p\u003e\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmldictionary%2Fmldictionaryapi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmldictionary%2Fmldictionaryapi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmldictionary%2Fmldictionaryapi/lists"}