{"id":24218300,"url":"https://github.com/siddhesh-agarwal/cryptmoji","last_synced_at":"2025-09-08T13:49:19.615Z","repository":{"id":58646881,"uuid":"532529547","full_name":"Siddhesh-Agarwal/cryptmoji","owner":"Siddhesh-Agarwal","description":"A simple emoji-based encryption-decryption library.","archived":false,"fork":false,"pushed_at":"2024-05-15T16:25:05.000Z","size":67,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-06T05:36:31.719Z","etag":null,"topics":["caesar-cipher","emoji","encryption","encryption-decryption","python","python-library","python3"],"latest_commit_sha":null,"homepage":"https://github.com/Siddhesh-Agarwal/cryptmoji/wiki/","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/Siddhesh-Agarwal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"buy_me_a_coffee":"siddheshagarwal"}},"created_at":"2022-09-04T12:10:25.000Z","updated_at":"2025-06-30T04:29:44.000Z","dependencies_parsed_at":"2024-05-11T07:26:18.523Z","dependency_job_id":"a8622149-56a3-4e65-b2bc-ff245f6d82d5","html_url":"https://github.com/Siddhesh-Agarwal/cryptmoji","commit_stats":{"total_commits":36,"total_committers":1,"mean_commits":36.0,"dds":0.0,"last_synced_commit":"87ea8ffc987c22b2df0f1ce9a11dd83dbe861f64"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/Siddhesh-Agarwal/cryptmoji","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Siddhesh-Agarwal%2Fcryptmoji","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Siddhesh-Agarwal%2Fcryptmoji/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Siddhesh-Agarwal%2Fcryptmoji/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Siddhesh-Agarwal%2Fcryptmoji/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Siddhesh-Agarwal","download_url":"https://codeload.github.com/Siddhesh-Agarwal/cryptmoji/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Siddhesh-Agarwal%2Fcryptmoji/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274195759,"owners_count":25239147,"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-09-08T02:00:09.813Z","response_time":121,"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":["caesar-cipher","emoji","encryption","encryption-decryption","python","python-library","python3"],"created_at":"2025-01-14T05:15:40.124Z","updated_at":"2025-09-08T13:49:19.585Z","avatar_url":"https://github.com/Siddhesh-Agarwal.png","language":"Python","funding_links":["https://buymeacoffee.com/siddheshagarwal"],"categories":[],"sub_categories":[],"readme":"# 🥷 Cryptmoji\n\nA simple emoji-based encryption-decryption library.\n\n![Downloads](https://static.pepy.tech/personalized-badge/cryptmoji?period=total\u0026units=international_system\u0026left_color=grey\u0026right_color=green\u0026left_text=Downloads)\n_______________________\n\n## 📥 Installation\n\nYou can use the [pip](https://pypi.org/project/pip/) package manager to install the library.\n\n```sh\npip install cryptmoji\n```\n\nor use [poetry](https://python-poetry.org/):\n\n```sh\npoetry add cryptmoji\n```\n\n\u003e Check the [Documentation](https://siddhesh-agarwal.github.io/cryptmoji/)\n\n## 📝 Usage\n\n```python\nfrom cryptmoji import encrypt, decrypt\n\ntext = \"Hello, world!\"\nkey = \"random_key\" # makes the encryption stronger (optional)\n\n# The encrypt and decrypt functions return the value\ndecrypted = decrypt(encrypted, key=key)\nprint(decrypted)\n# '🎽🏉🏭🏣🏴🎐🍵🐀🏧🐉🏴🏈🎆'\n\n# The encrypt and decrypt functions change the value in-place too\ndecrypted = decrypt(encrypted, key=key)\nprint(decrypted)\n# 'Hello, world!'\n```\n\n## Command line tool\n\n### Usage\n\n```sh\n$ cryptmoji encrypt \"Hello World\" --key \"test\"\n🎿🏑🏸🏹🐁🍻🏑🐁🐄🏤🏪\n\n$ cryptmoji decrypt \"🎿🏑🏸🏹🐁🍻🏑🐁🐄🏤🏪\" --key \"test\"\nHello World\n```\n\n\u003e **NOTE**: key is an optional parameter. If not provided, the value defaults to `None`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiddhesh-agarwal%2Fcryptmoji","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsiddhesh-agarwal%2Fcryptmoji","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiddhesh-agarwal%2Fcryptmoji/lists"}