Skip to main content

Python utility functions for cleaner, more readable code

Project description

pyfunx

PyPI version License: MIT PyPI Downloads

The main reason why this library was created is to:

use

from pyfunx import isinstances


def add(num1: int, num2: int) -> int:
    if isinstances(num1, num2, datatype=int):  # 41 char
        return num1 + num2
    raise TypeError("invalid arguments types")


print(add(3, 7))

in place of

def add(num1: int, num2: int) -> int:
    if isinstance(num1, int) and isinstance(num2, int):  # 51 char
        return num1 + num2
    raise TypeError("invalid arguments types")


print(add(3, 7))

and

from pyfunx import isinstances


def fun(name: str, age: int) -> None:
    if isinstances(name, age, datatype=(str, int)):  # 47 char
        print(f"your name is {name} and your age is {age}")
        return
    raise TypeError("invalid arguments types")


fun("mohamed", 23)

in place of

def fun(name: str, age: int) -> None:
    if isinstance(name, str) and isinstance(age, int):  # 50 char
        print(f"your name is {name} and your age is {age}")
        return
    raise TypeError("invalid arguments types")


fun("mohamed", 23)

but not just this there is other funcs and with a very advanced usage you can see the source code and check all the tests in the main fun.

Installation

You can install pyfunx via pip:

pip install pyfunx

License

This project is licensed under the MIT LICENSE - see the LICENSE for more details.

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

pyfunx-1.0.0.tar.gz (10.8 kB view details)

Uploaded Source

Built Distribution

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

pyfunx-1.0.0-py3-none-any.whl (10.5 kB view details)

Uploaded Python 3

File details

Details for the file pyfunx-1.0.0.tar.gz.

File metadata

  • Download URL: pyfunx-1.0.0.tar.gz
  • Upload date:
  • Size: 10.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.2

File hashes

Hashes for pyfunx-1.0.0.tar.gz
Algorithm Hash digest
SHA256 3c0041c128e64d65dbe016cf87c2f07c7e1ab280da3db745dbdc9c1aa4d4e18e
MD5 88bf5be98650faa7fae4f3dfd916f387
BLAKE2b-256 725b9307ac68f121c5dc78f48efc576b374e89f3e6679f82a6ac53c9cf370824

See more details on using hashes here.

File details

Details for the file pyfunx-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: pyfunx-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 10.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.2

File hashes

Hashes for pyfunx-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5784da55237f969c537b95ebd66eba7a3a154a99962e90d5303a34d0b8c218bc
MD5 cc7fb84b223312558446341a01dbd6cd
BLAKE2b-256 403d6059cae9ca7ce5ce59e03e25d33943151e7742c66581964a2d8f197e06b1

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