interpy icon indicating copy to clipboard operation
interpy copied to clipboard

Ruby like string interpolation #{} in Python

Results 8 interpy issues
Sort by recently updated
recently updated
newest added

I tried to install it on both Windows 7 and Ubuntu 14.04 with: pip install interpy When trying to compile the following example: ``` python #!/usr/bin/env/python # coding: interpy print...

Hi 👊 This is my first visit to this fine repo, but it seems you have been working hard to keep all dependencies updated so far. Once you have closed...

This concatenation style is valid and commonly use for multiline strings. ``` x = ( "foo" "bar" ) print x ``` output: ``` foobar ``` However it breaks when a...

Sounds interesting. Only doc seems to be Readme.md, which shows usage # {variable} But what other options are available? How can I control formatting, for example?

For example, running this file: ``` # coding: interpy """ File docstring. """ food = 'tacos' print "my favorite food is #{food}" ``` result: > File "test.py", line 3 >...

If I use interpy in my testing suite and run `python -m tabnanny [file]` it doesn't show any errors. But when i run `nosetests [file]` I get an IndentationError: ```...

Is there some inherent reason Interpy won't work in the interpreter? ``` Python 2.7.10 (default, Jul 13 2015, 12:05:58) [GCC 4.2.1 Compatible Apple LLVM 6.1.0 (clang-602.0.53)] on darwin Type "help",...