Skip to main content

Python objects metadata parser.

Project description

paradigm

In what follows python is an alias for python3.10 or any later version (python3.11 and so on).

Installation

Install the latest pip & setuptools packages versions

python -m pip install --upgrade pip setuptools

User

Download and install the latest stable version from PyPI repository

python -m pip install --upgrade paradigm

Developer

Download the latest version from GitHub repository

git clone https://github.com/lycantropos/paradigm.git
cd paradigm

Install dependencies

python -m pip install -r requirements.txt

Install

python setup.py install

Usage

With setup

>>> import typing
>>> from paradigm.base import (
...     OptionalParameter,
...     ParameterKind,
...     PlainSignature,
...     RequiredParameter,
...     signature_from_callable,
... )
>>> from typing_extensions import Self
>>> class UpperOut:
...     def __init__(self, outfile: typing.IO[typing.AnyStr]) -> None:
...         self._outfile = outfile
...     def write(self, s: typing.AnyStr) -> None:
...         self._outfile.write(s.upper())
...     def __getattr__(self, name: str) -> typing.Any:
...         return getattr(self._outfile, name)
...
>>> def func(
...     foo: int, /, bar: float, *, baz: bool = False, **kwargs: str
... ) -> None:
...     pass
...

we can obtain a signature of

  • user-defined functions
    >>> signature_from_callable(func) == PlainSignature(
    ...     RequiredParameter(
    ...         annotation=int,
    ...         kind=ParameterKind.POSITIONAL_ONLY,
    ...         name='foo',
    ...     ),
    ...     RequiredParameter(
    ...         annotation=float,
    ...         kind=ParameterKind.POSITIONAL_OR_KEYWORD,
    ...         name='bar',
    ...     ),
    ...     OptionalParameter(
    ...         annotation=bool,
    ...         default=False,
    ...         kind=ParameterKind.KEYWORD_ONLY,
    ...         name='baz',
    ...     ),
    ...     OptionalParameter(
    ...         annotation=str,
    ...         kind=ParameterKind.VARIADIC_KEYWORD,
    ...         name='kwargs',
    ...     ),
    ...     returns=None,
    ... )
    True
    
  • user-defined classes
    >>> signature_from_callable(UpperOut) == PlainSignature(
    ...     RequiredParameter(
    ...         annotation=typing.IO[typing.AnyStr],
    ...         kind=ParameterKind.POSITIONAL_OR_KEYWORD,
    ...         name='outfile',
    ...     ),
    ...     returns=Self,
    ... )
    True
    
  • user-defined classes methods
    >>> signature_from_callable(UpperOut.write) == PlainSignature(
    ...     RequiredParameter(
    ...         annotation=typing.Any,
    ...         kind=ParameterKind.POSITIONAL_OR_KEYWORD,
    ...         name='self',
    ...     ),
    ...     RequiredParameter(
    ...         annotation=typing.AnyStr,
    ...         kind=ParameterKind.POSITIONAL_OR_KEYWORD,
    ...         name='s',
    ...     ),
    ...     returns=None,
    ... )
    True
    
  • built-in functions
    >>> signature_from_callable(any) == PlainSignature(
    ...     RequiredParameter(
    ...         annotation=typing.Iterable[object],
    ...         kind=ParameterKind.POSITIONAL_ONLY,
    ...         name='iterable',
    ...     ),
    ...     returns=bool,
    ... )
    True
    
  • built-in classes
    >>> signature_from_callable(bool) == PlainSignature(
    ...     OptionalParameter(
    ...         annotation=object,
    ...         kind=ParameterKind.POSITIONAL_ONLY,
    ...         name='o',
    ...     ),
    ...     returns=Self,
    ... )
    True
    
  • built-in classes methods
    >>> signature_from_callable(float.hex) == PlainSignature(
    ...     RequiredParameter(
    ...         annotation=Self,
    ...         kind=ParameterKind.POSITIONAL_ONLY,
    ...         name='self',
    ...     ),
    ...     returns=str,
    ... )
    True
    

Development

Bumping version

Preparation

Install bump-my-version.

Pre-release

Choose which version number category to bump following semver specification.

Test bumping version

bump-my-version bump --dry-run --verbose $CATEGORY

where $CATEGORY is the target version number category name, possible values are patch/minor/major.

Bump version

bump-my-version bump --verbose $CATEGORY

This will set version to major.minor.patch-alpha.

Release

Test bumping version

bump-my-version bump --dry-run --verbose release

Bump version

bump-my-version bump --verbose release

This will set version to major.minor.patch.

Running tests

Install dependencies

python -m pip install -r requirements-tests.txt

Plain

pytest

Inside Docker container:

  • with CPython
    docker-compose --file docker-compose.cpython.yml up
    
  • with PyPy
    docker-compose --file docker-compose.pypy.yml up
    

Bash script (e.g. can be used in Git hooks):

  • with CPython

    ./run-tests.sh
    

    or

    ./run-tests.sh cpython
    
  • with PyPy

    ./run-tests.sh pypy
    

PowerShell script (e.g. can be used in Git hooks):

  • with CPython
    .\run-tests.ps1
    
    or
    .\run-tests.ps1 cpython
    
  • with PyPy
    .\run-tests.ps1 pypy
    

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

paradigm-4.4.1.tar.gz (37.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

paradigm-4.4.1-py3-none-any.whl (41.7 kB view details)

Uploaded Python 3

File details

Details for the file paradigm-4.4.1.tar.gz.

File metadata

  • Download URL: paradigm-4.4.1.tar.gz
  • Upload date:
  • Size: 37.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for paradigm-4.4.1.tar.gz
Algorithm Hash digest
SHA256 7518747bd70ed09881a569474b468a3f1434944bc2a8c8936d3c1c43722335a8
MD5 cf2f299ce4aa8c163c1aaca790858299
BLAKE2b-256 6bc7d1e26ddc204c7fe59d833a4deda25d14a504a802d500d2d90db9d2953570

See more details on using hashes here.

File details

Details for the file paradigm-4.4.1-py3-none-any.whl.

File metadata

  • Download URL: paradigm-4.4.1-py3-none-any.whl
  • Upload date:
  • Size: 41.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for paradigm-4.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 9169cf24d96f2cfc3278aa58357158d99da4573b05f7d39434da4977b3ece959
MD5 78c940a15168f43a41d3e4057cc8cfd9
BLAKE2b-256 1c264144ce7c0ef8da05724dfda3566894f9bad7675817fd1d7453964caf2f2e

See more details on using hashes here.

Supported by

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