Metadata-Version: 2.4
Name: x_all_modules
Version: 0.1.0
Summary: It is a module which, if you import then you won't need to import any other module for any purpose...
Author-email: Ashutosh Dwivedi <iasashutosh17@gmail.com>
License: Creative Commons Attribution-NonCommercial 4.0 International Public License
        (CC BY-NC 4.0) with Additional Restrictions
        
        Copyright (c) 2025 Ashutosh Dwivedi <iasashutosh17@gmail.com>
        
        This package ("x") is licensed under the Creative Commons Attribution–
        NonCommercial 4.0 International License, with the following additional terms:
        
        Permissions:
        - You are free to use, copy, modify, and share this software for personal, educational, or research purposes.
        - You must give appropriate credit to the original author (Ashutosh Dwivedi).
        - You may distribute modified versions, provided they include attribution and this same license.
        
        Restrictions:
        - You may not sell, sublicense, or commercially publish this software or any modified versions.
        - You may not remove the name of the original author from attribution notices.
        - Commercial usage of any kind requires prior written permission from the author.
        
        Disclaimer:
        This software is provided "as is", without warranty of any kind. The author shall not be liable for any damages or legal claims arising from the use of this software.
        
        Full text of the base license (CC BY-NC 4.0) is available at:
        https://creativecommons.org/licenses/by-nc/4.0/legalcode
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# x

**Author:** Ashutosh Dwivedi  
**Email:** iasashutosh17@gmail.com  
**License:** CC BY-NC 4.0 + Custom Restrictions  

---

## 📖 Description
`x` is a Python package designed to simplify imports.  
Instead of importing many standard modules separately, you only need to import `x`.  

Every standard Python module is automatically available with the prefix `x_`.  
Special Rules: 
Modules with __ in their name → use x__name (e.g., __future__ → x__future__).

Modules with both _name and name variants → use x_name and x__name respectively (e.g., asyncio → x_asyncio, _asyncio → x__asyncio).

For example:
```python
import x

print(x_math.pi)      # from math module
x_sys.exit()          # from sys module
