Matthew Martin β β π on Nostr: thinking, what if we took setup.py's core idea (a function invocation is a data ...
thinking, what if we took setup.py's core idea (a function invocation is a data format) and tried to make a data serialization format out it
```python
def some_function(name, author, pages):
pass
some_function(
name='foo',
author='Man Foo',
)
```
It could be an alternative to CSV where the def is the schema and the invocation is a row.
setup.py thought up this idea, so it must be a good idea.
#python
```python
def some_function(name, author, pages):
pass
some_function(
name='foo',
author='Man Foo',
)
```
It could be an alternative to CSV where the def is the schema and the invocation is a row.
setup.py thought up this idea, so it must be a good idea.
#python