Re: [pypy-dev] integration with java

2016-07-16 Thread Phyo Arkar
sorry i just mean it as a joke. On Sat, Jul 16, 2016 at 6:17 PM Armin Rigo wrote: > Hi Phyo, > > On 15 July 2016 at 15:58, Phyo Arkar wrote: > > For most python programmers we stay away from Java as much as possible. > We > > are allergic to it. > > That's a broad generalization, maybe not app

Re: [pypy-dev] integration with java

2016-07-16 Thread Armin Rigo
Hi Phyo, On 15 July 2016 at 15:58, Phyo Arkar wrote: > For most python programmers we stay away from Java as much as possible. We > are allergic to it. That's a broad generalization, maybe not appropriate for this list. A bientôt, Armin. ___ pypy-d

Re: [pypy-dev] integration with java

2016-07-15 Thread Phyo Arkar
if you want python that works well with Android , check Kivy.org For most python programmers we stay away from Java as much as possible. We are allergic to it. On Fri, Jul 15, 2016 at 2:30 PM Andrey Rubik wrote: > Hi > Ok, thank you for answer. I look at the jython. > > -- > Best Regards, > An

Re: [pypy-dev] integration with java

2016-07-15 Thread Andrey Rubik
Hi Ok, thank you for answer. I look at the jython. -- Best Regards, Andrey Rubik On 07/15/2016 10:51 AM, Armin Rigo wrote: Hi Andrey, On 14 July 2016 at 17:08, Andrey Rubik wrote: Jmeter - tool for performance tests. So when i start high load tests written in scripting languages i get so mu

Re: [pypy-dev] integration with java

2016-07-15 Thread Armin Rigo
Hi Andrey, On 14 July 2016 at 17:08, Andrey Rubik wrote: > Jmeter - tool for performance tests. So when i start high load tests written > in scripting languages i get so much load on jmeter server. That is why I > choose PyPy - for much speed from testing server. > > Sry, but i'am not a developer

Re: [pypy-dev] integration with java

2016-07-14 Thread Andrey Rubik
Hi guys :) Jmeter already have some python intergration (jython for example). Jmeter - tool for performance tests. So when i start high load tests written in scripting languages i get so much load on jmeter server. That is why I choose PyPy - for much speed from testing server. Sry, but i'am

Re: [pypy-dev] integration with java

2016-07-14 Thread Antonio Cuni
Hi, you could also check pyjnius, which seems more mature than jpype and it is used in real life apps to run e.g. python on android: http://pyjnius.readthedocs.io/en/latest/ I quickly tried to compile pyjnius with pypy (using cpyext) and it seems to work (at least, the tests pass). However, since

Re: [pypy-dev] integration with java

2016-07-14 Thread Maciej Fijalkowski
Hi Andrey There are no java bindings for PyPy just yet. You would need to write your own based on cffi. http://jpype.sourceforge.net/ is one of the examples of how those things can be done, but you would need to use cffi as opposed to CPython C API. If you need a quick solution, you can try compil

[pypy-dev] integration with java

2016-07-13 Thread Andrey Rubik
Hi guys! I'am new at pypy development and need help. I want do integration between pypy and jemeter (this project on java: http://jmeter.apache.org/). As i learned on jemeter dev list, i need some pypy-java bindings. It may be some .jar file for example. Where i can get some pypy-java bind