Metadata-Version: 2.4
Name: py_simple_wrap
Version: 0.3.5
Summary: A package to make complex python functionality simple
Author-email: Sara Czasak <sara.p.czasak.m@gmail.com>
Maintainer: jagjitkaur0000, atiqur-rahman-pro, Gaohar Imran, Yassin Azzouzi
Maintainer-email: Sara Czasak <sara.p.czasak.m@gmail.com>
License: MIT License
        
        Copyright (c) 2026 Sara Czasak
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Project-URL: Homepage, https://github.com/sara-czasak/py-simple-wrap
Project-URL: Repository, https://github.com/sara-czasak/py-simple-wrap
Project-URL: Bug Tracker, https://github.com/sara-czasak/py-simple-wrap/issues
Project-URL: Documentation, https://sara-czasak.github.io/py-simple-wrap/docs/
Project-URL: Quickstart, https://github.com/sara-czasak/py-simple-wrap/blob/main/QUICKSTART.md
Keywords: python,beginner-friendly,wrapper,education,utilities,helper-functions,simple-api,easy-to-use,automation,beginner,learning,students
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Education
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: requests>=2.25.0
Requires-Dist: beautifulsoup4>=4.9.0
Requires-Dist: python-benedict>=0.38.0
Requires-Dist: Pillow>=10.0.0
Requires-Dist: qrcode>=7.4.0
Requires-Dist: pygame-ce>=2.5.0
Requires-Dist: matplotlib>=3.0.0
Provides-Extra: test
Requires-Dist: pytest>=7.0; extra == "test"
Provides-Extra: docs
Requires-Dist: mkdocs; extra == "docs"
Requires-Dist: mkdocs-material; extra == "docs"
Requires-Dist: mkdocs-include-markdown-plugin; extra == "docs"
Requires-Dist: mkdocstrings; extra == "docs"
Requires-Dist: mkdocstrings-python; extra == "docs"
Dynamic: license-file

<div align="center">
<!-- Once you have a logo/wordmark image, this pair auto-swaps by GitHub theme:
![py-simple-wrap](docs/assets/logo-dark.png#gh-dark-mode-only)
![py-simple-wrap](docs/assets/logo-light.png#gh-light-mode-only)
-->
 
# py-simple-wrap
 
**Making Python feel like plain English.**
 
[![PyPI](https://img.shields.io/pypi/v/py-simple-wrap?style=flat-square&logo=pypi&logoColor=white&color=3775A9)](https://pypi.org/project/py-simple-wrap/)
[![Tests](https://img.shields.io/github/actions/workflow/status/sara-czasak/py-simple-wrap/tests.yml?style=flat-square&logo=github&label=tests)](https://github.com/sara-czasak/py-simple-wrap/actions/workflows/tests.yml)
[![Contributors](https://img.shields.io/badge/contributors-30-orange?style=flat-square)](CONTRIBUTORS.md)
[![License](https://img.shields.io/badge/license-MIT-lightgrey?style=flat-square)](LICENSE.md)
 
</div>
<br>
py-simple-wrap is a beginner-friendly Python toolbox — simple, intuitive functions for common tasks, so you can build something fun before the syntax gets in the way.
 
```bash
pip install py-simple-wrap
```
 
```python
from py_simple import make_blank_file, miles_to_km, is_valid_email
 
make_blank_file("notes.txt")
print(miles_to_km(26.2))                    # 42.16...
print(is_valid_email("hello@example.com"))  # True
```
 
> Full walkthrough in [QUICKSTART.md](QUICKSTART.md), or browse the **[documentation site](https://sara-czasak.github.io/py-simple-wrap/docs/)**.
 
<br>
## 😰 → 😎 See the difference
 
**The traditional way**
```python
import requests
from bs4 import BeautifulSoup
 
try:
    response = requests.get('https://github.com', timeout=10)
    response.raise_for_status()
    page = BeautifulSoup(response.content, 'html.parser')
    title = page.title.string
except Exception as e:
    print("The site is down or address is invalid.")
```
 
**The py-simple-wrap way**
```python
from py_simple import get_page_title
 
print(get_page_title("https://github.com"))
```
 
<br>

## 📚 Documentation
 
<div align="center">

| <div style="width:350px">📦 **[Module reference](MODULES.md)**</div> | <div style="width:350px">🤝 **[Contributor hub](https://sara-czasak.github.io/py-simple-wrap/docs/contributor-hub/)**</div> | <div style="width:350px">🗺️ **[Contributors quest](https://sara-czasak.github.io/py-simple-wrap/quest/)**</div> |
|:--------------------------------------------------------------------:|:---------------------------------------------------------------------------------------------------------------------------:|:----------------------------------------------------------------------------------------------------------------:|
|                      20+ modules, one line each                      |                                               start here — templates included                                               |                                        play your way through contributing                                        |
 
</div>
<details>
<summary><strong>22 modules at a glance</strong> (full detail in the module reference)</summary>
<br>

|              |             |            |
|:-------------|:------------|:-----------|
| 📂 Files     | 🕰️ Dates   | 🔢 Numbers |
| 📋 Lists     | 🔤 Strings  | ✂️ Text    |
| 🔄 Converter | ✅ Validator | 🌐 Web     |
| 🎨 Colors    | 🔄 Flow     | 📄 JSON    |
| 🔍 Regex     | ⚡ Async     | 🔑 Dict    |
| 🖼️ Images   | 🧮 Math     | 📊 Stats   |
| 📑 CSV       | 📈 Data viz | 🎮 Game    |
| 🎲 Generator |             |            |
 
</details>
<br>

## ⭐ If py-simple-wrap made something easier for you
 
Consider giving it a **star** — it helps other beginners find it. And if there's a function you wish existed, **fork it** and add it; this project grew because other people did exactly that.
 
<br>
<div align="center">

**[Contributing](CONTRIBUTING.md) · [Changelog](CHANGELOG.md) · [License](LICENSE.md)**
 
<sub>Built for beginners, grown by 30+ contributors ✨</sub>
 
</div>
