Skip to main content

formatclass(cls,...) - format class representation

Project description

https://img.shields.io/badge/language-Python-blue.svg https://img.shields.io/pypi/pyversions/formatclass.svg https://img.shields.io/pypi/v/formatclass.svg

https://api.codacy.com/project/badge/Grade/03a5e45d1d03438cad6b4f74432eb743 https://codeclimate.com/github/looking-for-a-job/formatclass.py/badges/gpa.svg https://img.shields.io/scrutinizer/g/looking-for-a-job/formatclass.py.svg https://sonarcloud.io/api/project_badges/measure?project=formatclass.py&metric=code_smells https://sonarcloud.io/api/project_badges/measure?project=formatclass.py&metric=reliability_rating

Install

`[sudo] pip install formatclass`

Usage

>>> from formatclass import formatclass

>>> formatclass(cls)

Examples

>>> class Cls(object): pass
>>> class Cls2(Cls):
    def __init__(self,arg,arg2="default"): pass

# default
>>> formatclass(CLS2)
'Cls2(__main__.Cls)(arg, arg2="default")'

# args - False/True (default True)
>>> formatclass(CLS2,args=False)
'Cls2(__main__.Cls)'

# fullname - False/True (default True)
>>> formatclass(CLS2,fullname=False)
'Cls2(Cls)(arg, arg2="default")'

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

formatclass-0.0.36.tar.gz (2.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page