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

`jiphy -o py -rc .` did not work. why?

Traceback (most recent call last): File "D:\pycharm_project\github\jiphy\venv\Scripts\jiphy-script.py", line 33, in sys.exit(load_entry_point('jiphy==1.2.2', 'console_scripts', 'jiphy')()) File "D:\pycharm_project\github\jiphy\venv\lib\site-packages\jiphy-1.2.2-py3.9.egg\jiphy\main.py", line 115, in main UnicodeDecodeError: 'gbk' codec can't decode byte 0xac in position 69453: illegal...

/##########################################################\ ............................................................ ...................................................... ..... ...7$$$$.............$$$$$........MM.M:.MMMM. M,..M:MM .MM.. .I$I~~=~$$.7M$$$M$7$$?====$$......MM.M:.M...M.M,..M: M .M .. I$~~~~~~~$NZ$$$$$$8$=~~~~~~~$.....MM.M:.MMMMM.MMMMM:..MM ... $=~~~~~~=$$$M$$$NZ$$7~=~~~~~=$.MM.MM.M:.M.....M,..M:..MM.... 7~~~~~~~$$$/_$$$_\$$$~~~~~~==$. MMO .M:.M ....M,..M:..MM.... $~~~~~~~$$$$$Z$$Z7$$$=~~~~~~~$.............................. $=~~~~~~$$$$$$$$$$$$$=~~~~~~$.. ....... .................... $$~~~~~$$|$$$$$$$$|$~~~~=$.7777777...... .................. ...$$$$$$$M\$$$$$$/M$$$$$7,$77777777:..YOUR CLIENTSIDE DONE. . .......$$D\$$$$/M$~. ..=777777777?.......

Hi, Trying to reach you via Email for quite some time. Would appreciate a response. Thanks!

**In python** ```python import jiphy js_code = jiphy.to.javascript(""" while True: sleep(2) print("This is not in while loop") """) print(js_code) ``` **And the output is:** ```javascript ; while (true) { sleep(2);...

input: ```javascript const printX = n => { n--; let zu = []; for (let i = 0; i { n-- let zu = [] for let i = 0;...

It seems **`jiphy`** does not escape quotes in strings properly. Is this correct? I'm using **`jiphy`** inside Python code (`to.python()` and `to.javascript()` methods). Example in Python: `some_dict = {"name": "AppWrapper.some_function(var_name='Some_Var_Name')"}`...

Python function `*args` should convert to JS `...args`.

I ran the Jiphy translator with an example from the README, but this code was not translated correctly: ``` import jiphy print(jiphy.to.javascript(''' import underscore as _ def my_function(argument1, argument2): if...

This is how I installed jiphy ``` $ pip install jiphy Collecting jiphy Downloading https://files.pythonhosted.org/packages/a5/c9/37a710f44ca07fb668b21466f610b3dbf1cc8d1f44d3d55bdde2ceeb74f4/jiphy-1.2.2.tar.gz Building wheels for collected packages: jiphy Running setup.py bdist_wheel for jiphy ... done Stored in...