MetaX 是一个功能丰富的Python工具库,提供数学运算、字符串处理、日期时间、文件操作等常用工具函数,帮助开发者提高开发效率。
Project description
MetaX
English | 中文
MetaX is a feature-rich Python utility library that provides common tools for mathematical operations, string processing, datetime handling, and file operations, helping developers improve productivity.
📖 Project Positioning
MetaX aims to be a helpful assistant for Python developers, providing:
- 🔢 Math Operations - Basic operations, advanced math functions, number theory tools
- 📝 String Processing - Formatting, validation, conversion tools
- ⏰ Datetime - Time retrieval, calculation, formatting tools
- 📁 File Operations - File I/O, path operations, hash calculation
All functions are carefully designed with complete type annotations and docstrings, supporting IDE auto-completion, ready to use out of the box.
🚀 Installation
Install with pip
pip install metax
Upgrade to Latest Version
pip install metax --upgrade
Install from TestPyPI (Testing Version)
pip install --index-url https://test.pypi.org/simple/ metax
💡 Quick Start
Basic Example
import metax
# Greeting function
print(metax.hello("World")) # Output: 你好, World!
Math Operations
import metax
# Basic operations
print(metax.add(10, 5)) # Addition: 15
print(metax.subtract(10, 5)) # Subtraction: 5
print(metax.multiply(10, 5)) # Multiplication: 50
print(metax.divide(10, 5)) # Division: 2.0
# Advanced operations
print(metax.power(2, 3)) # Power: 8.0
print(metax.sqrt(16)) # Square root: 4.0
print(metax.factorial(5)) # Factorial: 120
String Processing
import metax
# Formatting
print(metax.reverse("hello")) # Reverse: olleh
print(metax.mask("13812345678", 3, 4)) # Mask: 138****5678
print(metax.format_size(1024000)) # File size: 1000.00 KB
# Validation
print(metax.is_email("test@example.com")) # Email validation: True
print(metax.is_phone_cn("13812345678")) # Phone validation: True
print(metax.is_url("https://example.com")) # URL validation: True
Datetime
import metax
print(metax.now()) # Current time: 2026-05-15 10:30:45
print(metax.timestamp()) # Timestamp: 1705285845
print(metax.today()) # Today's date: 2026-05-15
File Operations
import metax
# File I/O
metax.write_text("test.txt", "Hello, MetaX!")
content = metax.read_text("test.txt")
# Path operations
path = metax.join_path("D:", "test", "file.txt")
print(metax.get_extension("test.txt")) # Extension: .txt
📚 Documentation
Documentation Portal
- 📖 Documentation Center - Complete documentation navigation
Detailed Docs
- 🚀 Deployment Guide - How to publish PyPI packages
- 📖 Usage Guide - Detailed usage and API documentation
- 🔄 Update Process - Version update and release process
Changelog
- 📝 CHANGELOG.md - Version update history
🔗 Important Links
PyPI
- PyPI Project Page - Official release
- TestPyPI Project Page - Testing version
GitHub
- GitHub Repository - Source code repository
- Issue Tracker - Submit bugs or feature requests
📦 Feature Overview
| Module | Features | Function Count |
|---|---|---|
| Math Operations | Basic operations, advanced math, number theory | 17 |
| String Processing | Formatting, validation | 26 |
| Datetime | Time retrieval, calculation, judgment | 17 |
| File Operations | I/O, path, hash | 22 |
Total: 82+ utility functions
🎯 Use Cases
- Data Processing - Mathematical calculations, string processing
- Form Validation - Email, phone, ID card validation
- Log Processing - Time formatting, file operations
- Tool Development - Quick CLI tool building
- Automation Scripts - File processing, data conversion
🤝 Contributing
Contributions, bug reports, and feature requests are welcome!
Contribution Process
- Fork the repository
- Create feature branch (
git checkout -b feature/AmazingFeature) - Commit changes (
git commit -m 'Add some AmazingFeature') - Push to branch (
git push origin feature/AmazingFeature) - Create Pull Request
For detailed process, please refer to Update Process Documentation
📄 License
This project is licensed under the MIT License - see LICENSE file for details
📊 Version Information
- Current Version: 0.1.2
- Python Version: >= 3.8
🌟 Star History
If this project helps you, please give it a ⭐️ Star!
Made with ❤️ by ACANX
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file metax-0.1.4.tar.gz.
File metadata
- Download URL: metax-0.1.4.tar.gz
- Upload date:
- Size: 17.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a152053de9610884fa2293c5fbbbed8dcfa69eb1245259cc2b9a1c789272d5a
|
|
| MD5 |
19fcafbfa2b516604f1980cb7c340151
|
|
| BLAKE2b-256 |
be8f32f0a26c518e246a98a26114df50f07327e34fe2bda594d8540943216b64
|
File details
Details for the file metax-0.1.4-py3-none-any.whl.
File metadata
- Download URL: metax-0.1.4-py3-none-any.whl
- Upload date:
- Size: 17.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
989ecec14db5f8010b70a4a37b0b3a7886d537414b46957d835f1f3fa98de4fd
|
|
| MD5 |
4c962703eb899a9829add3510065a2f4
|
|
| BLAKE2b-256 |
53030304479185f902ae748ff3e0781ed5eaf4ddf2ca24059ea2af3333ca433a
|