{"id":28364303,"url":"https://github.com/ercindedeoglu/postalized","last_synced_at":"2026-02-25T14:39:44.854Z","repository":{"id":166868106,"uuid":"642388291","full_name":"ErcinDedeoglu/Postalized","owner":"ErcinDedeoglu","description":"The ultimate address parsing tool. Effortlessly parse and expand postal data with our cutting-edge technology. Simplify your mailing, enhance accuracy, and embrace the future of postal efficiency. Get Postalized—where precision meets convenience.","archived":false,"fork":false,"pushed_at":"2025-02-11T00:11:44.000Z","size":6272,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-04T23:09:36.015Z","etag":null,"topics":["address","address-parser","deduping","international","internationalization","machine-learning","natural-language-processing","nlp","record-linkage"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/dublok/postalized","language":"C","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/ErcinDedeoglu.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-18T13:05:16.000Z","updated_at":"2025-02-11T00:11:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"f59afe75-4809-4781-8e1a-0204b8d70033","html_url":"https://github.com/ErcinDedeoglu/Postalized","commit_stats":null,"previous_names":["ercindedeoglu/postalized"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ErcinDedeoglu/Postalized","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErcinDedeoglu%2FPostalized","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErcinDedeoglu%2FPostalized/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErcinDedeoglu%2FPostalized/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErcinDedeoglu%2FPostalized/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ErcinDedeoglu","download_url":"https://codeload.github.com/ErcinDedeoglu/Postalized/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErcinDedeoglu%2FPostalized/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261591616,"owners_count":23181761,"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":["address","address-parser","deduping","international","internationalization","machine-learning","natural-language-processing","nlp","record-linkage"],"created_at":"2025-05-28T20:43:57.098Z","updated_at":"2026-02-25T14:39:44.817Z","avatar_url":"https://github.com/ErcinDedeoglu.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [Postalized](https://github.com/ErcinDedeoglu/Postalized)\n\nPostalized is an open source project that provides a simple and efficient way to parse and expand addresses using the power of `libpostal`. This project wraps `libpostal` functionalities in a Flask-based web API, making it easy to integrate address parsing and expansion into web applications.\n\n\u003cdiv align=\"center\"\u003e\u003cimg src=\"https://github.com/ErcinDedeoglu/Postalized/raw/main/assets/logo.png\" width=\"400\"\u003e\u003c/div\u003e\n\n## Features\n\n- **Address Parsing**: Break down addresses into components with high accuracy.\n- **Address Expansion**: Generate normalized variations of a given address.\n- Dockerized application for easy deployment and scaling.\n\n## Quick Start\n\n### Prerequisites\n\n- Docker\n\n## Installation\n\nPostalized is available as a Docker image on Docker Hub. You can easily pull and run the Postalized service without manually building it.\n\n### Pulling the Docker Image\n\nYou can pull the latest version of Postalized from Docker Hub using the following command:\n\n```bash\ndocker pull dublok/postalized:latest\n```\n\nThis command retrieves the latest image of Postalized, ensuring you have the most up-to-date version.\n\n### Running the Docker Image\n\nAfter pulling the image, you can run it using:\n\n```bash\ndocker run -p 8080:8080 dublok/postalized\n```\n\nThis will start a container running Postalized and bind port 8080 on your host machine to port 8080 in the Docker container, making the API accessible via `http://localhost:8080`.\n\n\nAlternatively, you can build the Docker image manually:\n\n```bash\ngit clone https://github.com/ErcinDedeoglu/Postalized.git\ncd Postalized\ndocker build -t postalized .\n```\n\n### Running the Application\n\nTo start the application, run:\n\n```bash\ndocker run -p 8080:8080 postalized\n```\n\nThe API should now be available at `http://localhost:8080`.\n\n## Usage\n\nPostalized exposes two endpoints: `/parse` for parsing addresses and `/expand` for expanding addresses.\n\n### Parsing an Address\n\nSend a POST request with a JSON body containing the address:\n\n```bash\ncurl -X POST -H \"Content-Type: application/json\" -d '{\"address\":\"123 Main St\"}' http://localhost:8080/parse\n```\n\nExample response:\n\n```json\n[\n    {\n        \"label\": \"house_number\",\n        \"value\": \"123\"\n    },\n    {\n        \"label\": \"road\",\n        \"value\": \"Main St\"\n    }\n]\n```\n\n### Expanding an Address\n\nSend a POST request with a JSON body containing the address:\n\n```bash\ncurl -X POST -H \"Content-Type: application/json\" -d '{\"address\":\"123 Main Street\"}' http://localhost:8080/expand\n```\n\nExample response:\n\n```json\n[\n    \"123 main street\",\n    \"123 main st\"\n]\n```\n\nThese examples demonstrate successful responses from the API. The parsing endpoint breaks down the input address into its components, and the expansion endpoint provides normalized variations of the input address.\n\n---\n\n## Development\n\nFor developing and contributing to Postalized, please follow the steps below:\n\n1. Fork and clone the repository.\n2. Make changes and test your code.\n3. Submit a pull request with a clear list of what you've done.\n\n## Support\n\nIf you are having issues, please let us know by creating an issue in the GitHub repository.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fercindedeoglu%2Fpostalized","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fercindedeoglu%2Fpostalized","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fercindedeoglu%2Fpostalized/lists"}