{"id":25039446,"url":"https://github.com/ishanoshada/alien-language","last_synced_at":"2026-02-28T13:32:46.786Z","repository":{"id":275161769,"uuid":"925299373","full_name":"Ishanoshada/Alien-Language","owner":"Ishanoshada","description":"A Python to Alien Language translator. Translate Python code into a fun, alien-like syntax!","archived":false,"fork":false,"pushed_at":"2025-04-18T01:12:28.000Z","size":8,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-17T00:19:30.582Z","etag":null,"topics":["alien-language","fun-programming","python-to-alien","python-translator"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/alien-language/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ishanoshada.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2025-01-31T16:04:11.000Z","updated_at":"2025-04-18T01:12:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"083b0358-fd1c-4a7b-a5e0-c3c8c70bb096","html_url":"https://github.com/Ishanoshada/Alien-Language","commit_stats":null,"previous_names":["ishanoshada/alien-language"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Ishanoshada/Alien-Language","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ishanoshada%2FAlien-Language","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ishanoshada%2FAlien-Language/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ishanoshada%2FAlien-Language/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ishanoshada%2FAlien-Language/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ishanoshada","download_url":"https://codeload.github.com/Ishanoshada/Alien-Language/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ishanoshada%2FAlien-Language/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29935368,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T13:16:57.922Z","status":"ssl_error","status_checked_at":"2026-02-28T13:11:15.149Z","response_time":90,"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":["alien-language","fun-programming","python-to-alien","python-translator"],"created_at":"2025-02-06T02:51:51.164Z","updated_at":"2026-02-28T13:32:46.769Z","avatar_url":"https://github.com/Ishanoshada.png","language":"Python","readme":"# Alien Language Translator 🛸\n\n[![PyPI Version](https://img.shields.io/pypi/v/alien_language)](https://pypi.org/project/alien_language/)\n[![License](https://img.shields.io/pypi/l/alien_language)](https://github.com/ishanoshada/alien-language/blob/main/LICENSE)\n[![Python Versions](https://img.shields.io/pypi/pyversions/alien_language)](https://pypi.org/project/alien_language/)\n[![GitHub Stars](https://img.shields.io/github/stars/ishanoshada/alien-language)](https://github.com/ishanoshada/alien-language/stargazers)\n[![GitHub Issues](https://img.shields.io/github/issues/ishanoshada/alien-language)](https://github.com/ishanoshada/alien-language/issues)\n\n**Alien Language Translator** is a fun and creative Python package that translates Python code into an alien-like syntax. Whether you're learning Python, teaching programming, or just looking for a fun way to experiment with code, this package is for you!\n\n---\n\n## Features ✨\n\n- **Translate Python to Alien Language**: Convert Python code into a unique alien-like syntax.\n- **Translate Alien Language to Python**: Convert alien code back into Python.\n- **Command-Line Interface (CLI)**: Easily translate files or code snippets via the command line.\n- **Interactive Mode**: Translate Python code in real-time using an interactive shell.\n- **Lightweight and Easy to Use**: No dependencies, just pure Python fun!\n\n---\n\n## Installation 🛠️\n\nYou can install the `alien_language` package via pip:\n\n```bash\npip install alien-language\n```\n\n---\n\n## Usage 🚀\n\n### 1. Translate Python to Alien Language\n\nTo translate a Python file (`my_script.py`) into alien language and save the output to `alien_script.alien`:\n\n```bash\nalien-translate --to-alien --input my_script.py --output alien_script.alien\n```\n\n### 2. Translate Alien Language to Python\n\nTo translate an alien language file (`alien_script.alien`) back into Python and save the output to `my_script.py`:\n\n```bash\nalien-translate --to-python --input alien_script.alien --output my_script.py\n```\n\n### 3. Interactive Mode\n\nStart the interactive mode to translate Python code into alien language in real-time:\n\n```bash\nalien-translate --interactive\n```\n\nExample:\n\n```plaintext\n\u003e\u003e\u003e print(\"Hello, Alien!\")\nzorp(\"Hello, Alien!\")\n```\n\nType `exit` to quit the interactive mode.\n\n---\n\n## Examples 📚\n\n### Python Code\n\n```python\ndef greet(name):\n    if name == \"Alien\":\n        print(\"Hello, Alien!\")\n    else:\n        print(\"Hello, Human!\")\n```\n\n### Translated Alien Code\n\n```plaintext\nplorp greet(name) [\n    glorp name ==== \"Alien\" \u003c\n        zorp(\"Hello, Alien!\")\n    florp \u003c\n        zorp(\"Hello, Human!\")\n    \u003e\n]\n```\n\n---\n\n## Contributing 🤝\n\nWe welcome contributions! If you'd like to contribute to the project, please follow these steps:\n\n1. Fork the repository on [GitHub](https://github.com/ishanoshada/alien-language).\n2. Create a new branch for your feature or bugfix.\n3. Commit your changes and push them to your fork.\n4. Submit a pull request with a detailed description of your changes.\n\nFor bug reports or feature requests, please open an issue on the [GitHub Issues](https://github.com/ishanoshada/alien-language/issues) page.\n\n---\n\n## License 📜\n\nThis project is licensed under the **MIT License**. See the [LICENSE](LICENSE) file for details.\n\n---\n\n## Support 💖\n\nIf you find this project useful, please consider giving it a ⭐️ on [GitHub](https://github.com/ishanoshada/alien-language). Your support helps us improve and maintain the project!\n\n---\n\n## Contact 📧\n\nFor questions or feedback, feel free to reach out:\n\n\n**Repository Views** ![Views](https://profile-counter.glitch.me/alienlan/count.svg)\n\n- **Author**: Ishan Oshada\n- **Email**: ishan.kodithuwakku.offical@gmail.com\n- **GitHub**: [ishanoshada](https://github.com/ishanoshada)\n- **Project URL**: [https://github.com/ishanoshada/alien-language](https://github.com/ishanoshada/alien-language)\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fishanoshada%2Falien-language","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fishanoshada%2Falien-language","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fishanoshada%2Falien-language/lists"}