No project description provided
Project description
.. image:: https://travis-ci.org/MacHu-GWU/inspect_mate-project.svg?branch=master :target: https://travis-ci.org/MacHu-GWU/inspect_mate-project?branch=master
.. image:: https://codecov.io/gh/MacHu-GWU/inspect_mate-project/branch/master/graph/badge.svg :target: https://codecov.io/gh/MacHu-GWU/inspect_mate-project
.. image:: https://img.shields.io/pypi/v/inspect_mate.svg :target: https://pypi.python.org/pypi/inspect_mate
.. image:: https://img.shields.io/pypi/l/inspect_mate.svg :target: https://pypi.python.org/pypi/inspect_mate
.. image:: https://img.shields.io/pypi/pyversions/inspect_mate.svg :target: https://pypi.python.org/pypi/inspect_mate
.. image:: https://img.shields.io/badge/Star_Me_on_GitHub!--None.svg?style=social :target: https://github.com/MacHu-GWU/inspect_mate-project
Forked from https://github.com/MacHu-GWU/inspect_mate-project to keep up to date with Python versions
Welcome to inspect_mate
Documentation
inspect_mate can easily separate:
regular attribute
.property attribute
.regular method
.static method
.class method
.- all attributes, include
regular attribute
andproperty attribute
. - all methods, include regular method,
static method
andclass method
.
Quick Links
-
.. image:: https://img.shields.io/badge/Link-Document-red.svg :target: https://inspect_mate.readthedocs.io/index.html
-
.. image:: https://img.shields.io/badge/Link-API_Reference_and_Source_Code-red.svg :target: https://inspect_mate.readthedocs.io/py-modindex.html
-
.. image:: https://img.shields.io/badge/Link-Install-red.svg :target:
install
_ -
.. image:: https://img.shields.io/badge/Link-GitHub-blue.svg :target: https://github.com/MacHu-GWU/inspect_mate-project
-
.. image:: https://img.shields.io/badge/Link-Submit_Issue_and_Feature_Request-blue.svg :target: https://github.com/MacHu-GWU/inspect_mate-project/issues
-
.. image:: https://img.shields.io/badge/Link-Download-blue.svg :target: https://pypi.python.org/pypi/inspect_mate#downloads
Example
import:
.. code-block:: python
from inspect_mate import (
is_attribute,
is_property_method,
is_regular_method,
is_static_method,
is_class_method,
get_attributes,
get_property_methods,
get_regular_methods,
get_static_methods,
get_class_methods,
get_all_attributes,
get_all_methods,
)
define a class:
.. code-block:: python
class Base(object):
attribute = "attribute"
def __init__(self):
self.initiated_attribute = "initiated_attribute"
@property
def property_method(self):
return "property_method"
def regular_method(self):
return "regular_method"
@staticmethod
def static_method():
return "static_method"
@classmethod
def class_method(cls):
return "class_method"
class Klass(Base):
pass
instance = Klass()
usage:
.. code-block:: python
# tester_function(klass_or_instance, "attribute_name")
>>> is_attribute(Klass, "attribute")
True
>>> is_property_method(Klass, "property_attribute")
True
>>> is_regular_method(Klass, "regular_method")
True
>>> is_static_method(Klass, "static_method")
True
>>> is_class_method(Klass, "class_method")
True
>>> is_attribute(instance, "attribute")
True
>>> is_attribute(instance, "initiated_attribute")
True
>>> is_property_method(instance, "property_attribute")
True
>>> is_regular_method(instance, "regular_method")
True
>>> is_static_method(instance, "static_method")
True
>>> is_class_method(instance, "class_method")
True
# getter_function(klass_or_instance), yield (attr, value)
>>> get_attributes(Klass)
[("attribute", "attribute")]
>>> get_property_methods(Klass)
[("property_attribute", "property_attribute")]
>>> get_regular_methods(Klass)
[("regular_method", Klass.regular_method)]
>>> get_static_methods(Klass)
[("static_method", "Klass.static_method")]
>>> get_class_methods(Klass)
[("class_method", "Klass.class_method")]
>>> get_all_attributes(Klass)
[("attribute", "attribute"), ("property_attribute", "property_attribute")]
>>> get_all_methods(Klass)
[("regular_method", Klass.regular_method), ("static_method", "Klass.static_method"), ("class_method", "Klass.class_method")]
.. _install:
Install
inspect_mate
is released on PyPI, so all you need is:
.. code-block:: console
$ pip install inspect_mate
To upgrade to latest version:
.. code-block:: console
$ pip install --upgrade inspect_mate
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file inspect_mate_pp-0.0.4.tar.gz
.
File metadata
- Download URL: inspect_mate_pp-0.0.4.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6eee156a1300c61ccfdc1be080516ce6387fde2e361c3643e57c940588a3b4e0 |
|
MD5 | d571b6272cf1242353d68ed787f35e75 |
|
BLAKE2b-256 | 4806d32e49b42df638ceaeb9d6c266c666d75937dbf593703e63d58351ce67f2 |
File details
Details for the file inspect_mate_pp-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: inspect_mate_pp-0.0.4-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f11d294c33334aae85d95dbb87aed53a968f50d76cc692e449c994da120cf9b |
|
MD5 | c3f10a7130fabfec9e69e4b674157b23 |
|
BLAKE2b-256 | ee07cace1653467e8c6164837c006db18adbb88ff57ab9d9891f57073962bb2b |