<div align="center">
<h1 align="center">
<img src="https://github.com/AbsoluteWinter/AbsoluteWinter.github.io/blob/main/absfuyu/images/repository-image-crop.png?raw=true" alt="absfuyu"/>
</h1>
<p align="center">
<a href="https://pypi.org/project/absfuyu/"><img src="https://img.shields.io/pypi/pyversions/absfuyu?style=flat-square&logo=python" alt="PyPI Supported Versions"/></a>
<a href="https://pypi.org/project/absfuyu/"><img src="https://img.shields.io/pypi/dm/absfuyu?style=flat-square&color=blue" alt="PyPI Downloads"/></a>
<a href="https://pypi.org/project/absfuyu/"><img src="https://img.shields.io/pypi/v/absfuyu?style=flat-square&logo=pypi" /></a>
<a><img src="https://img.shields.io/pypi/l/absfuyu?style=flat-square&logo=github&color=blue"/></a>
<a><img src="https://img.shields.io/badge/code%20style-black-black?style=flat-square"/></a>
<a href="https://github.com/astral-sh/ruff"><img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json&style=flat-square" alt="Ruff" style="max-width:100%;"></a>
</p>
</div>
---
## **SUMMARY:**
This project is a collection of code primarily developed as a personal hobby. It aims to provide practical experience and enhance my coding skills while exploring potential future applications.
## **INSTALLATION:**
To install the package, run the following command:
```bash
pip install -U absfuyu
```
## **USAGE:**
```python
import absfuyu
help(absfuyu)
```
### Notable features
**absfuyu.core**: Provides base components for additional functionalities.
```python
# Decorators that adds info to __doc__
from absfuyu.core.docstring import versionadded, versionchanged, deprecated
# Class mixins for enhanced functionality
from absfuyu.core.baseclass import AutoREPRMixin, GetClassMembersMixin
```
**absfuyu.dxt**: Extension for `list`, `str`, `dict`, `int`.
```python
from absfuyu.dxt import DictExt, IntExt, ListExt, Text
for x in [DictExt, IntExt, ListExt, Text]:
x.show_all_methods(print_result=1)
```
**absfuyu.tools.Inspector**: An object inspector
```python
from absfuyu.tools import Inspector
print(Inspector(Inspector))
```
There are many additional features available to explore.
## **DOCUMENTATION:**
For more detailed information about the project, please refer to the documentation available at the following link:
> [Project Documentation](https://absolutewinter.github.io/absfuyu-docs/)
## **DEVELOPMENT SETUP**
1. Create a Virtual Environment
```bash
python -m venv env
```
Note: You may need to execute this command in PowerShell on Windows:
```powershell
Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser
```
2. Install Required Packages
```bash
python -m pip install -e .[full,dev]
```
3. Acquire Information About the Development Environment Configuration
```bash
hatch env show
```
## **LICENSE:**
This project is licensed under the MIT License.
Raw data
{
"_id": null,
"home_page": null,
"name": "absfuyu",
"maintainer": null,
"docs_url": null,
"requires_python": "<4,>=3.11",
"maintainer_email": null,
"keywords": "utilities",
"author": "somewhatcold (AbsoluteWinter)",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/be/e3/317475d66ba62b7a1fcd55d7563e8a3f10501c1751e6ca3a27e9b1f94761/absfuyu-5.13.0.tar.gz",
"platform": null,
"description": "<div align=\"center\">\n <h1 align=\"center\">\n <img src=\"https://github.com/AbsoluteWinter/AbsoluteWinter.github.io/blob/main/absfuyu/images/repository-image-crop.png?raw=true\" alt=\"absfuyu\"/>\n </h1>\n <p align=\"center\">\n <a href=\"https://pypi.org/project/absfuyu/\"><img src=\"https://img.shields.io/pypi/pyversions/absfuyu?style=flat-square&logo=python\" alt=\"PyPI Supported Versions\"/></a>\n <a href=\"https://pypi.org/project/absfuyu/\"><img src=\"https://img.shields.io/pypi/dm/absfuyu?style=flat-square&color=blue\" alt=\"PyPI Downloads\"/></a>\n <a href=\"https://pypi.org/project/absfuyu/\"><img src=\"https://img.shields.io/pypi/v/absfuyu?style=flat-square&logo=pypi\" /></a>\n <a><img src=\"https://img.shields.io/pypi/l/absfuyu?style=flat-square&logo=github&color=blue\"/></a>\n <a><img src=\"https://img.shields.io/badge/code%20style-black-black?style=flat-square\"/></a>\n <a href=\"https://github.com/astral-sh/ruff\"><img src=\"https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json&style=flat-square\" alt=\"Ruff\" style=\"max-width:100%;\"></a>\n </p>\n</div>\n\n---\n\n## **SUMMARY:**\n\nThis project is a collection of code primarily developed as a personal hobby. It aims to provide practical experience and enhance my coding skills while exploring potential future applications.\n\n## **INSTALLATION:**\n\nTo install the package, run the following command:\n\n```bash\npip install -U absfuyu\n```\n\n## **USAGE:**\n\n```python\nimport absfuyu\nhelp(absfuyu)\n```\n\n### Notable features\n\n**absfuyu.core**: Provides base components for additional functionalities.\n\n```python\n# Decorators that adds info to __doc__\nfrom absfuyu.core.docstring import versionadded, versionchanged, deprecated\n\n# Class mixins for enhanced functionality\nfrom absfuyu.core.baseclass import AutoREPRMixin, GetClassMembersMixin\n```\n\n**absfuyu.dxt**: Extension for `list`, `str`, `dict`, `int`.\n\n```python\nfrom absfuyu.dxt import DictExt, IntExt, ListExt, Text\nfor x in [DictExt, IntExt, ListExt, Text]:\n x.show_all_methods(print_result=1)\n```\n\n**absfuyu.tools.Inspector**: An object inspector\n\n```python\nfrom absfuyu.tools import Inspector\nprint(Inspector(Inspector))\n```\n\nThere are many additional features available to explore.\n\n## **DOCUMENTATION:**\n\nFor more detailed information about the project, please refer to the documentation available at the following link:\n\n> [Project Documentation](https://absolutewinter.github.io/absfuyu-docs/)\n\n## **DEVELOPMENT SETUP**\n\n1. Create a Virtual Environment\n\n```bash\npython -m venv env\n```\n\nNote: You may need to execute this command in PowerShell on Windows:\n\n```powershell\nSet-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser\n```\n\n2. Install Required Packages\n\n```bash\npython -m pip install -e .[full,dev]\n```\n\n3. Acquire Information About the Development Environment Configuration\n\n```bash\nhatch env show\n```\n\n## **LICENSE:**\n\nThis project is licensed under the MIT License.\n",
"bugtrack_url": null,
"license": null,
"summary": "A small collection of code",
"version": "5.13.0",
"project_urls": {
"Documentation": "https://absolutewinter.github.io/absfuyu-docs/",
"Homepage": "https://github.com/AbsoluteWinter/absfuyu-public",
"Issues": "https://github.com/AbsoluteWinter/absfuyu-public/issues",
"Repository": "https://github.com/AbsoluteWinter/absfuyu-public"
},
"split_keywords": [
"utilities"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "c8621de2a15c65bd6c448ac31110a8072d5dca3c2da9aa40a63673eaef83bafe",
"md5": "c6d8b6c13eec7f746bc2deaf0a0f22d0",
"sha256": "9f756a0580b576cfe866d65dfc0302b1fcd2b08cc26b568f1f927213ff174f70"
},
"downloads": -1,
"filename": "absfuyu-5.13.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c6d8b6c13eec7f746bc2deaf0a0f22d0",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4,>=3.11",
"size": 1253451,
"upload_time": "2025-11-02T13:53:04",
"upload_time_iso_8601": "2025-11-02T13:53:04.278183Z",
"url": "https://files.pythonhosted.org/packages/c8/62/1de2a15c65bd6c448ac31110a8072d5dca3c2da9aa40a63673eaef83bafe/absfuyu-5.13.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bee3317475d66ba62b7a1fcd55d7563e8a3f10501c1751e6ca3a27e9b1f94761",
"md5": "e7a71f3f04de0f69f05faea4760bddac",
"sha256": "0605a53b4696dc660edc31f8ddc10ac610b1c990d88b7700184ebaaaae576807"
},
"downloads": -1,
"filename": "absfuyu-5.13.0.tar.gz",
"has_sig": false,
"md5_digest": "e7a71f3f04de0f69f05faea4760bddac",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4,>=3.11",
"size": 1492256,
"upload_time": "2025-11-02T13:53:09",
"upload_time_iso_8601": "2025-11-02T13:53:09.116033Z",
"url": "https://files.pythonhosted.org/packages/be/e3/317475d66ba62b7a1fcd55d7563e8a3f10501c1751e6ca3a27e9b1f94761/absfuyu-5.13.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-11-02 13:53:09",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "AbsoluteWinter",
"github_project": "absfuyu-public",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "absfuyu"
}