{"id":28287200,"url":"https://github.com/zboris12/nppyscripts","last_synced_at":"2025-08-01T18:12:19.355Z","repository":{"id":149052810,"uuid":"499501311","full_name":"zboris12/nppyscripts","owner":"zboris12","description":"Some python scripts for Notepad++","archived":false,"fork":false,"pushed_at":"2023-03-30T09:56:33.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-18T04:40:07.694Z","etag":null,"topics":["notepad-plus-plus","python-script"],"latest_commit_sha":null,"homepage":"","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/zboris12.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,"zenodo":null}},"created_at":"2022-06-03T12:22:38.000Z","updated_at":"2023-01-20T13:36:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"dc578ced-30b9-49f2-92be-2908e30a7aac","html_url":"https://github.com/zboris12/nppyscripts","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zboris12/nppyscripts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zboris12%2Fnppyscripts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zboris12%2Fnppyscripts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zboris12%2Fnppyscripts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zboris12%2Fnppyscripts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zboris12","download_url":"https://codeload.github.com/zboris12/nppyscripts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zboris12%2Fnppyscripts/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268273049,"owners_count":24223790,"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","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"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":["notepad-plus-plus","python-script"],"created_at":"2025-05-21T22:11:12.742Z","updated_at":"2025-08-01T18:12:19.338Z","avatar_url":"https://github.com/zboris12.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Some python scripts for [Notepad++](https://notepad-plus-plus.org/).\n\n* [Full-width ⇔ Half-width](#zen-han)\n* [Sort json or yaml file by keys](#sortjsonyaml)\n* [Copy Files](#copyfiles)\n\n## Before using these scripts\n\nInstall the plugin of [Python Script](https://github.com/bruderstein/PythonScript) in [Notepad++](https://npp-user-manual.org/docs/plugins/).\n\n## zen-han\n\n### Full-width ⇔ Half-width  \n\nThis is a python script to convert Japanese characters for [Notepad++](https://notepad-plus-plus.org/).  \n\n### Main features\n\n* Convert full-width characters to half-width\n* Convert half-width characters to full-width\n* Convert full-width katakana characters to hiragana\n* Convert hiragana characters to full-width katakana\n\n### Installation\n\nJust copy `zen-han` folder to the scripts' folder. For example:  \n  `C:\\notepad++\\plugins\\Config\\PythonScript\\scripts`\n\n### Usage\n\n1. Select the characters you want to do the convertion.\n2. Click the convertion's menu in `Plugins -\u003e Python Script -\u003e Scripts -\u003e zen-han`  \n![Plugins Menu](./menu.png)\n\n### Description of scripts\n\n* \\_\\_init\\_\\_  \n  `The file which make the directory to a python package`\n* Han2Zen  \n  `Convert all half-width characters in selection to full-width`\n* Han2ZenAns  \n  `Convert half-width characters of alphabet, number, sign in selection to full-width`\n* Han2ZenKana  \n  `Convert half-width characters of katakana in selection to full-width`\n* Hira2Kana  \n  `Convert hiragana characters in selection to full-width katakana`\n* Kana2Hira  \n  `Convert full-width katakana characters in selection to hiragana`\n* Zen2Han  \n  `Convert all full-width characters in selection to half-width`\n* Zen2HanAns  \n  `Convert full-width characters of alphabet, number, sign in selection to half-width`\n* Zen2HanKana  \n  `Convert full-width characters of katakana in selection to half-width`\n* ZenkakuHankaku  \n  `The main library`\n\n## sortjsonyaml\n\n### Sort json or yaml file by keys\n\nThis is a python script to sort json or yaml file by keys\n\n### Installation\n\n1. Download souce code of [PyYAML 5.4.1](https://pypi.org/project/PyYAML/5.4.1/#files)\n  (Target file: PyYAML-5.4.1.tar.gz).\n2. Extract folder `PyYAML-5.4.1\\lib\\yaml` from the downloaded file into the lib folder of notepad++. For example:\n  `C:\\notepad++\\plugins\\PythonScript\\lib`\n3. Copy `SortJsonYaml.py` file to the scripts' folder. For example:  \n  `C:\\notepad++\\plugins\\Config\\PythonScript\\scripts`\n\n### Usage\n\n1. Open the target file\n2. Click the menu `Plugins -\u003e Python Script -\u003e Scripts -\u003e SortJsonYaml`\n\n## copyfiles\n\n### Copy Files\n\nThis is a python script to copy files from a directory to another directory for [Notepad++](https://notepad-plus-plus.org/).  \n\n### Installation\n\nJust copy `CopyFiles.py` file to the scripts' folder. For example:  \n  `C:\\notepad++\\plugins\\Config\\PythonScript\\scripts`\n\n### Usage\n\n1. List up all the target files in the editor\n2. Click the menu `Plugins -\u003e Python Script -\u003e Scripts -\u003e CopyFiles`\n\n## License\n\nThese scripts are available under the\n[MIT license](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzboris12%2Fnppyscripts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzboris12%2Fnppyscripts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzboris12%2Fnppyscripts/lists"}