jiphy icon indicating copy to clipboard operation
jiphy copied to clipboard

Your client side done in a jiphy. Python to JavaScript 2-way converter.

Results 17 jiphy issues
Sort by recently updated
recently updated
newest added

``` return "".join((child.python for child in self.children)) File "/usr/local/lib/python3.5/dist-packages/jiphy/handlers.py", line 168, in python return self._python() File "/usr/local/lib/python3.5/dist-packages/jiphy/handlers.py", line 571, in _python to_return = "{0}{1}".format(self.python_start_with, self.python_content) File "/usr/local/lib/python3.5/dist-packages/jiphy/handlers.py", line 161, in...

This is a sweet package, so weird that it's not mentioned anywhere. I wanted to ask though - 1. How would you compare Jiphy to Rapydscript / Transcrypt? 2. Do...

Would be cool if jiphy dogfooded itself.

Converting from python to javascript, the two letter phrase "or" is converted to "||" any time it is followed by whitespace (same for "and" / "&&") cmd = operand +...

Jiphy is an excellent tool for translating Python source code into JavaScript and vice-versa, but it doesn't appear to generate code in other languages yet. I think we could make...

Hi Installed on mac os x 10.11.5 with sudo pip install jiphy [no errors] Here is a run sequence that failed (no output, app hangs): jiphy -o py -i js...

Jiphy does not group code blocks correctly when going from python to js. The newline to close a block seems silly to me: ``` if x: line_of_code() this_is_in_the_same_js_block() this_is_not() i_am_scoped_with_the_previous_line()...