{"id":50166082,"url":"https://github.com/santhoshmani1/encodex","last_synced_at":"2026-05-24T21:02:12.989Z","repository":{"id":270371813,"uuid":"909692440","full_name":"Santhoshmani1/encodex","owner":"Santhoshmani1","description":"EncodeX is a CLI tool that helps to encode and decode to various data formats.","archived":false,"fork":false,"pushed_at":"2025-04-10T16:10:49.000Z","size":14,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-10T17:59:44.273Z","etag":null,"topics":["argparse","pyfiglet","python"],"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/Santhoshmani1.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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-12-29T14:00:17.000Z","updated_at":"2025-04-10T16:10:53.000Z","dependencies_parsed_at":"2024-12-30T17:23:29.433Z","dependency_job_id":"94a07aee-cd76-46d3-8660-ea39b76af526","html_url":"https://github.com/Santhoshmani1/encodex","commit_stats":null,"previous_names":["santhoshmani1/encodex"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Santhoshmani1/encodex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Santhoshmani1%2Fencodex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Santhoshmani1%2Fencodex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Santhoshmani1%2Fencodex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Santhoshmani1%2Fencodex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Santhoshmani1","download_url":"https://codeload.github.com/Santhoshmani1/encodex/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Santhoshmani1%2Fencodex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33450402,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-24T19:21:36.376Z","status":"ssl_error","status_checked_at":"2026-05-24T19:21:10.562Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["argparse","pyfiglet","python"],"created_at":"2026-05-24T21:02:10.709Z","updated_at":"2026-05-24T21:02:12.983Z","avatar_url":"https://github.com/Santhoshmani1.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# EncodeX CLI\n\nEncodeX is a CLI tool that helps you encode and decode strings using various data formats.\n\n## Overview\nEncodex is a simple command-line interface (CLI) tool for encoding and decoding operations. It supports various encoding formats such as Base64, ASCII, URL, Hex, and HTML.\n\n## Installation\n\n```bash\ngit clone https://github.com/Santhoshmani1/encodex.git\n```\n\n## Usage\n\n```bash\npython3 encodex.py [options] [format] [string]\n```\n\n### Examples\n\n#### Getting Help\n```bash\npython main.py --help\npython main.py -h\n```\n\n```bash\n _____                     _     __  __\n| ____|_ __   ___ ___   __| | ___\\ \\/ /\n|  _| | '_ \\ / __/ _ \\ / _` |/ _ \\\\  / \n| |___| | | | (_| (_) | (_| |  __//  \\ \n|_____|_| |_|\\___\\___/ \\__,_|\\___/_/\\_\\\n                                       \n\nusage: main.py [-h] {encode,decode,info,list} ...\n\nEncodeX CLI - Encoding and Decoding Utility\n\npositional arguments:\n  {encode,decode,info,list}\n                        Available commands\n    encode              Encode data\n    decode              Decode data\n    info                Get info about encoding format\n    list                List available encoding formats\n\noptions:\n  -h, --help            Show this help message and exit\n                                                                 \n```\n\n#### Listing available encoding formats\n\n```bash\n$ python main.py list\n```\n```\nAvailable encoding formats:\n  - base64\n  - ascii\n  - url\n  - hex\n  - html\n```\n\n#### Getting information about an encoding format\n\n```bash\n$ python main.py info base64\n```\n\n```bash\n _____                     _     __  __\n| ____|_ __   ___ ___   __| | ___\\ \\/ /\n|  _| | '_ \\ / __/ _ \\ / _` |/ _ \\\\  / \n| |___| | | | (_| (_) | (_| |  __//  \\ \n|_____|_| |_|\\___\\___/ \\__,_|\\___/_/\\_\\\n                                       \n\n\nThe Base 64 encoding is designed to represent arbitrary sequences of\noctets in a form that allows the use of both upper- and lowercase\nletters but that need not be human readable.\n\nRead more : https://datatracker.ietf.org/doc/html/rfc4648\n        \n```\n\n\n#### Encoding into a fomat\n\n```bash\n$ python main.py encode base64 \"Hello, World!\"\nSGVsbG8sIFdvcmxkIQ==\n```\n\n#### Decoding into a format\n\n```bash\n$ python main.py decode base64 \"SGVsbG8sIFdvcmxkIQ==\"\nHello, World!\n```\n\n## License\nMIT\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsanthoshmani1%2Fencodex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsanthoshmani1%2Fencodex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsanthoshmani1%2Fencodex/lists"}