# ai_py **Repository Path**: maudyi_admin/ai_py ## Basic Information - **Project Name**: ai_py - **Description**: No description available - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-01-17 - **Last Updated**: 2026-02-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # AI Python Coding A Python project for AI-assisted coding tasks. ## Description This project provides core functionality for AI-assisted coding, including basic utilities and examples of AI coding capabilities. ## Features - Core functionality for AI coding tasks - Well-structured codebase following best practices - Comprehensive test suite - Easy to extend and modify ## Installation ### Using Poetry (Recommended) ```bash # Install poetry if not already installed pip install poetry # Install project dependencies poetry install ``` ### Using Pip ```bash # Install from source pip install -e . ``` ## Usage ```python from ai_py_coding.core import hello_world, AICoder # Basic usage print(hello_world()) # Create an AI Coder instance coder = AICoder("My AI Coder") print(coder.greet()) ``` ## Development ### Running Tests ```bash # With poetry poetry run pytest # With pip python -m pytest ``` ### Code Quality ```bash # Format code with Black poetry run black . # Sort imports with isort poetry run isort . # Lint with flake8 poetry run flake8 . # Type check with mypy poetry run mypy . ``` ## Project Structure ``` ai_py_coding/ ├── ai_py_coding/ # Main source code │ ├── __init__.py # Package initialization │ └── core.py # Core functionality ├── tests/ # Test suite │ ├── __init__.py # Test package initialization │ └── test_core.py # Tests for core functionality ├── pyproject.toml # Project configuration ├── README.md # This file └── .gitignore # Git ignore rules ``` ## License MIT License - see the [LICENSE](LICENSE) file for details.