Parse `funcname`, `args`, `kargs` from function-like string
Project description
Introduction
Parse funcname, args, kargs from function-like string
Installation
pip install funcparse
Example
from funcparse import parse
funcname, args, kwargs = parse('say(1, 2, "Hello", a=1, b=2, c="World")')
print(funcname)
# >>> 'say'
print(args)
# >>> (1, 2, 'Hello')
print(kwargs)
# >>> {'a': 1, 'b': 2, 'c': 'World'}
from funcparse import parse
# Raise Syntax Error
# Use {"from": "a", "to": "b"} instead.
funcname, args, kwargs = parse('hi(dict(from="a", to="b"))')
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
funcparse-1.0.2.tar.gz
(2.0 kB
view hashes)