python_etf icon indicating copy to clipboard operation
python_etf copied to clipboard

Erlang terms (Erlang Terms Format, ETF) parsing library for python

Results 7 python_etf issues
Sort by recently updated
recently updated
newest added

This PR makes `setup.py` valid in environments with setuptools >= v58

Hi I'm a new user. Will try to write this "Issue" to see if its a known problem or not. I got this "use_2to3 is invalid" problem and have not...

This minor change is intended to make library run error free in Python 3. Python 3 dropped support for reduce() without using functools. Reduce() is available in functools in Python2...

It seems that this library only handles Bins that only contain a string, but there are other cases, as specified here: http://erlang.org/doc/programming_examples/bit_syntax.html Specifically I wasn't able to parse this expression...

Hi! I am trying to parse `https://github.com/erlware/relx/blob/master/rebar.config` and get an error: ``` Traceback (most recent call last): File "/usr/lib/python3.6/site-packages/erl_terms/erl_terms_core.py", line 55, in lex return grammar.parse(nocomments) File "/usr/lib/python3.6/site-packages/parsimonious/grammar.py", line 123, in...

Hi! There is a decode option and it works really good. But no encode :(

Hi @twonds, I need to be able to parse and update rabbitmq.config file using python on Travis and AppVeyor builds of the pika open-source RabbitMQ client library. I haven't been...