{"id":19056833,"url":"https://github.com/andrianllmm/tgl-dictionary-parser","last_synced_at":"2026-06-22T13:31:48.671Z","repository":{"id":252387317,"uuid":"840273987","full_name":"andrianllmm/tgl-dictionary-parser","owner":"andrianllmm","description":"Parser for a Tagalog dictionary website","archived":false,"fork":false,"pushed_at":"2025-06-22T18:32:42.000Z","size":2713,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-22T19:35:02.915Z","etag":null,"topics":["dictionary","parser","tagalog","text-mining","web-scraping"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andrianllmm.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":"2024-08-09T10:42:13.000Z","updated_at":"2025-06-22T18:32:46.000Z","dependencies_parsed_at":"2024-08-09T13:10:40.254Z","dependency_job_id":null,"html_url":"https://github.com/andrianllmm/tgl-dictionary-parser","commit_stats":null,"previous_names":["andrianllmm/tgl-dictionary-parser"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/andrianllmm/tgl-dictionary-parser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrianllmm%2Ftgl-dictionary-parser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrianllmm%2Ftgl-dictionary-parser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrianllmm%2Ftgl-dictionary-parser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrianllmm%2Ftgl-dictionary-parser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andrianllmm","download_url":"https://codeload.github.com/andrianllmm/tgl-dictionary-parser/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrianllmm%2Ftgl-dictionary-parser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34651747,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-22T02:00:06.391Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["dictionary","parser","tagalog","text-mining","web-scraping"],"created_at":"2024-11-08T23:52:03.469Z","updated_at":"2026-06-22T13:31:48.660Z","avatar_url":"https://github.com/andrianllmm.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tagalog Dictionary Parser\n\n**A Python script that parses a Tagalog dictionary website and converts it into\nseveral useful formats**\n\n## About\n\nThis parser parses the dictionary from\n[Pinoy Dictionary](https://tagalog.pinoydictionary.com/) in HTML format and\noutputs it to [JSON format](output/tgl_dictionary.json),\n[frequency list](output/tgl_freqlist.csv), and\n[word list](output/tgl_wordlist.txt).\n\n## Output\n\n\u003e \u003cstrong style=\"font-size: large;\"\u003e40,064 words collected\u003c/strong\u003e \u003csmall\u003e(as\n\u003e of 08/09/2024)\u003c/small\u003e\n\n| Resource       | Format | Link                                                     |\n| -------------- | ------ | -------------------------------------------------------- |\n| Dictionary     | json   | [output/tgl_dictionary.json](output/tgl_dictionary.json) |\n| Frequency list | csv    | [output/tgl_freqlist.csv](output/tgl_freqlist.csv)       |\n| Word list      | txt    | [output/tgl_wordlist.txt](output/tgl_wordlist.txt)       |\n\n### JSON Dictionary\n\nThe JSON dictionary is structured as a list of words and its corresponding list\nof attributes. The attributes include part of speech, definition, etymology,\nclassifications, synonyms, antonyms, example sentences, inflections, and\nsources. The entries are sorted alphabetically.\n\n```json\n[\n  {\n    \"word\": \"The word itself\",\n    \"attributes\": [\n      {\n        \"pos\": \"Simplified arts of speech\",\n        \"definition\": \"The definition\",\n        \"origin\": \"The etymology\",\n        \"classification\": \"Any classification\",\n        \"similar\": [\"List of synonyms\"],\n        \"opposite\": [\"List of antonyms\"],\n        \"examples\": [\"List of example sentences that use the word\"],\n        \"inflections\": [\"List of inflected forms\"],\n        \"sources\": [\"List of sources\"]\n      }\n    ]\n  }\n]\n```\n\n### Frequency list\n\nThe frequency list is structured as a list of words and its corresponding\nfrequency value derived from the\n[Leipzig Corpora Collection Dataset (2021 Wikipedia 100k corpus)](https://wortschatz.uni-leipzig.de/en/download/Tagalog).\nThe list is sorted from highest to lowest frequency value.\n\n```csv\nng,134442\nsa,127336\nang,106986\n```\n\n### Word list\n\nThe word list is simply the list of words sorted alphabetically.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrianllmm%2Ftgl-dictionary-parser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrianllmm%2Ftgl-dictionary-parser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrianllmm%2Ftgl-dictionary-parser/lists"}