linkai-aion


Namelinkai-aion JSON
Version 0.1.6 PyPI version JSON
download
home_pagehttps://linkaiapps.com/#linkai-aion
Summary🚀 LinkAI-Aion v0.1.6 — Enhanced AI Utilities with File Management, Code Parsing, and Real-time Monitoring
upload_time2025-08-03 21:55:07
maintainerNone
docs_urlNone
authorAksel
requires_python>=3.8
licenseNone
keywords utilities text-processing file-handling cli developer-tools linkai
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # linkai-aion

**🚀 LinkAI-Aion v0.1.6 — Enhanced AI Utilities with File Management, Code Parsing, and Real-time Monitoring**

✨ **New update, new look — and packed with power!**

AIon is an open-source Python utility library by LinkAI, designed to empower AI projects, automation tools, and productivity workflows. With this new version, we're bringing smarter tools, better performance, and more developer-friendly features than ever.

---

## ✅ What's New in v0.1.6

- 🗂️ **Updated files management** with improved upload and organization
- 🧩 **Enhanced code parser** with better multi-language and syntax error support  
- 🔄 **Real-time file change monitoring** for auto-refresh and instant updates
- ✂️ **Code snippet extraction** for reuse, sharing, and clean documentation
- ⚙️ **Extended CLI support** with new power commands
- 📚 **Full documentation site** with guides, examples, and API references
- 🌍 **Comprehensive language detection** for 30+ programming languages
- 🛡️ **Enhanced security scanning** with improved pattern detection
- 🧠 **Advanced text intelligence** with better analysis capabilities

---

## 📦 Installation

```bash
pip install linkai-aion
```

## 🚀 Quick Start

```python
from aion import text, files, parser, watcher

# File management
files.create_empty_file("test.txt")
files.write_file("test.txt", "Hello Aion v0.1.6!")
content = files.read_file("test.txt")

# Code parsing with 30+ language support
code = """
def greet(name):
    return f"Hello, {name}!"
"""
lang = parser.detect_language(code)  # Detects Python
analysis = parser.parse_code(code, lang)

# Real-time file monitoring
def on_change(filepath):
    print(f"File changed: {filepath}")

watcher.watch_file_for_changes("test.txt", on_change)
```

## 🌍 Supported Languages

**Programming Languages:**
- Python, JavaScript, TypeScript, Java, C/C++, C#
- Go, Rust, Swift, Kotlin, Scala, Haskell
- PHP, Ruby, Perl, Lua, Julia, R, MATLAB
- Clojure, PowerShell, Bash

**Markup & Data:**
- HTML, CSS, SQL, JSON, XML, YAML, Markdown
- Dockerfile, Terraform, Ansible

**Enhanced Features:**
- 🧩 **Multi-language code parsing** with detailed analysis
- 🔍 **Syntax highlighting** for all supported languages
- 📊 **Code complexity analysis** and metrics
- ✂️ **Smart snippet extraction** with metadata
- 🔄 **Real-time monitoring** with change detection
- 📁 **Advanced file management** with organization tools

---

## 🌐 Website

Learn more, view docs, and explore what's coming next:  
🔗 https://linkaiapps.com/#linkai-aion

## 📦 PyPI

Install or explore directly via PyPI:  
🔗 https://pypi.org/project/linkai-aion/

---

## 🔮 Coming Soon in v0.1.7

🎉 **We're just getting started — here's what's next (and doable in a week!):**

- 🔗 **Git integration (basic)**  
  View commit history, diffs, and branches using GitPython or CLI wrappers.

- 🎯 **Project scaffolding templates**  
  Instantly generate ready-to-code boilerplates for Python, AI, or web apps.

- 📁 **Extended CLI tools**  
  More terminal commands for scanning, formatting, or watching code.

- 🔍 **Initial security scanning support**  
  Integrate with tools like bandit to detect common Python vulnerabilities.

- 🌐 **Simple web interface prototype**  
  Launch a local dashboard to explore files, view highlights, and analyze snippets.

- 📊 **Token counter & code summarizer**  
  Built-in tools to analyze length and provide TL;DR of source files.

---

**🚀 AIon helps developers move faster, build smarter, and automate more — all with less code.**  
From quick utilities to deep integration into AI workflows, v0.1.6 is just the beginning.

**From LinkAI — crafting tools for tomorrow's developers, today.** ❤️

            

Raw data

            {
    "_id": null,
    "home_page": "https://linkaiapps.com/#linkai-aion",
    "name": "linkai-aion",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "utilities, text-processing, file-handling, cli, developer-tools, linkai",
    "author": "Aksel",
    "author_email": "Aksel <aksel@linkaiapps.com>",
    "download_url": "https://files.pythonhosted.org/packages/dc/22/32578047a6fd5917f53861a2b9a897cf582661cd9626c83db868facbd28d/linkai_aion-0.1.6.tar.gz",
    "platform": null,
    "description": "# linkai-aion\n\n**\ud83d\ude80 LinkAI-Aion v0.1.6 \u2014 Enhanced AI Utilities with File Management, Code Parsing, and Real-time Monitoring**\n\n\u2728 **New update, new look \u2014 and packed with power!**\n\nAIon is an open-source Python utility library by LinkAI, designed to empower AI projects, automation tools, and productivity workflows. With this new version, we're bringing smarter tools, better performance, and more developer-friendly features than ever.\n\n---\n\n## \u2705 What's New in v0.1.6\n\n- \ud83d\uddc2\ufe0f **Updated files management** with improved upload and organization\n- \ud83e\udde9 **Enhanced code parser** with better multi-language and syntax error support  \n- \ud83d\udd04 **Real-time file change monitoring** for auto-refresh and instant updates\n- \u2702\ufe0f **Code snippet extraction** for reuse, sharing, and clean documentation\n- \u2699\ufe0f **Extended CLI support** with new power commands\n- \ud83d\udcda **Full documentation site** with guides, examples, and API references\n- \ud83c\udf0d **Comprehensive language detection** for 30+ programming languages\n- \ud83d\udee1\ufe0f **Enhanced security scanning** with improved pattern detection\n- \ud83e\udde0 **Advanced text intelligence** with better analysis capabilities\n\n---\n\n## \ud83d\udce6 Installation\n\n```bash\npip install linkai-aion\n```\n\n## \ud83d\ude80 Quick Start\n\n```python\nfrom aion import text, files, parser, watcher\n\n# File management\nfiles.create_empty_file(\"test.txt\")\nfiles.write_file(\"test.txt\", \"Hello Aion v0.1.6!\")\ncontent = files.read_file(\"test.txt\")\n\n# Code parsing with 30+ language support\ncode = \"\"\"\ndef greet(name):\n    return f\"Hello, {name}!\"\n\"\"\"\nlang = parser.detect_language(code)  # Detects Python\nanalysis = parser.parse_code(code, lang)\n\n# Real-time file monitoring\ndef on_change(filepath):\n    print(f\"File changed: {filepath}\")\n\nwatcher.watch_file_for_changes(\"test.txt\", on_change)\n```\n\n## \ud83c\udf0d Supported Languages\n\n**Programming Languages:**\n- Python, JavaScript, TypeScript, Java, C/C++, C#\n- Go, Rust, Swift, Kotlin, Scala, Haskell\n- PHP, Ruby, Perl, Lua, Julia, R, MATLAB\n- Clojure, PowerShell, Bash\n\n**Markup & Data:**\n- HTML, CSS, SQL, JSON, XML, YAML, Markdown\n- Dockerfile, Terraform, Ansible\n\n**Enhanced Features:**\n- \ud83e\udde9 **Multi-language code parsing** with detailed analysis\n- \ud83d\udd0d **Syntax highlighting** for all supported languages\n- \ud83d\udcca **Code complexity analysis** and metrics\n- \u2702\ufe0f **Smart snippet extraction** with metadata\n- \ud83d\udd04 **Real-time monitoring** with change detection\n- \ud83d\udcc1 **Advanced file management** with organization tools\n\n---\n\n## \ud83c\udf10 Website\n\nLearn more, view docs, and explore what's coming next:  \n\ud83d\udd17 https://linkaiapps.com/#linkai-aion\n\n## \ud83d\udce6 PyPI\n\nInstall or explore directly via PyPI:  \n\ud83d\udd17 https://pypi.org/project/linkai-aion/\n\n---\n\n## \ud83d\udd2e Coming Soon in v0.1.7\n\n\ud83c\udf89 **We're just getting started \u2014 here's what's next (and doable in a week!):**\n\n- \ud83d\udd17 **Git integration (basic)**  \n  View commit history, diffs, and branches using GitPython or CLI wrappers.\n\n- \ud83c\udfaf **Project scaffolding templates**  \n  Instantly generate ready-to-code boilerplates for Python, AI, or web apps.\n\n- \ud83d\udcc1 **Extended CLI tools**  \n  More terminal commands for scanning, formatting, or watching code.\n\n- \ud83d\udd0d **Initial security scanning support**  \n  Integrate with tools like bandit to detect common Python vulnerabilities.\n\n- \ud83c\udf10 **Simple web interface prototype**  \n  Launch a local dashboard to explore files, view highlights, and analyze snippets.\n\n- \ud83d\udcca **Token counter & code summarizer**  \n  Built-in tools to analyze length and provide TL;DR of source files.\n\n---\n\n**\ud83d\ude80 AIon helps developers move faster, build smarter, and automate more \u2014 all with less code.**  \nFrom quick utilities to deep integration into AI workflows, v0.1.6 is just the beginning.\n\n**From LinkAI \u2014 crafting tools for tomorrow's developers, today.** \u2764\ufe0f\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "\ud83d\ude80 LinkAI-Aion v0.1.6 \u2014 Enhanced AI Utilities with File Management, Code Parsing, and Real-time Monitoring",
    "version": "0.1.6",
    "project_urls": {
        "Homepage": "https://linkaiapps.com/#linkai-aion",
        "PyPI": "https://pypi.org/project/linkai-aion/"
    },
    "split_keywords": [
        "utilities",
        " text-processing",
        " file-handling",
        " cli",
        " developer-tools",
        " linkai"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "afdcbd0af5a239062f934adb8a20767ad8b72d52e6f7703c9917838f87628604",
                "md5": "38666d41f85583467cd81823bf5d82e2",
                "sha256": "66f617db040d653facb65eecfd19061dcd4147cf467791851c3e71a9cac9377e"
            },
            "downloads": -1,
            "filename": "linkai_aion-0.1.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "38666d41f85583467cd81823bf5d82e2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 24986,
            "upload_time": "2025-08-03T21:55:05",
            "upload_time_iso_8601": "2025-08-03T21:55:05.564836Z",
            "url": "https://files.pythonhosted.org/packages/af/dc/bd0af5a239062f934adb8a20767ad8b72d52e6f7703c9917838f87628604/linkai_aion-0.1.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc2232578047a6fd5917f53861a2b9a897cf582661cd9626c83db868facbd28d",
                "md5": "6b7f1c989200db31e975aea520f60136",
                "sha256": "7d0b3baf6c1f92dd3a8ef987db47b53baf59fda4383706cf9573604842408a35"
            },
            "downloads": -1,
            "filename": "linkai_aion-0.1.6.tar.gz",
            "has_sig": false,
            "md5_digest": "6b7f1c989200db31e975aea520f60136",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 24100,
            "upload_time": "2025-08-03T21:55:07",
            "upload_time_iso_8601": "2025-08-03T21:55:07.112140Z",
            "url": "https://files.pythonhosted.org/packages/dc/22/32578047a6fd5917f53861a2b9a897cf582661cd9626c83db868facbd28d/linkai_aion-0.1.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-03 21:55:07",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "linkai-aion"
}
        
Elapsed time: 4.23479s