Does anybody now whether sympy 0.7.1 will work with Jython?
No, it doesn't work - I think it doesn't even import. There's an open issue for this in sympy's bug tracker. The development version should import fine, but there are problems still.
It's late but for all future readers:
As of Jython-2.7.1, it can import SymPy and most of SymPy works on it.
However, it is very slow compared to CPython possibly due to this issue http://bugs.jython.org/issue2604. See #4332.
You can download the Jython-2.7.1 from mvnrepository. If it shows you 0 Bytes then you can use this alternate link
Related
Im using selenium-java 4.6.0 and Im capturing network traffic.When I try to import the selenium class for 'Network', I get several options :
-org.openqa.selenium.devtools.v107.network.Network;
-org.openqa.selenium.devtools.v106.network.Network;
-etc...
Is there a way to select always the last version available? Or another way to not to change with each new release the import version?
Hmm I think you can do this by specifying a specific import in class:
import org.openqa.selenium.devtools.v85.network.Network;
With one version import it's no way that it take some other version.
I had the exact same question a while back. Here is the answer I got back from Jim Evans (one of the Selenium developers):
those will change with every release. If you choose to use the raw DevTool protocol API, you’re tying yourself to a specific version of Chrome. This is the same reason that CDP-based automation libraries like Puppeteer tie their releases to specific versions of Chrome. Selenium provides version-agnostic APIs for common things that many people want to use CDP for, like network request/response interception and manipulation. If you find those APIs lacking, it would be instructive to know your use case, and how common it is.
source
I have a program that utilizes Pandas and Numpi which I want to operate on an ESP32 micro controller. Is there a version of Pandas and Numpi that will work on the ESP32 so I can run the existing code program?
If yes, does anyone know of any tutorials or documentation I can reference to learn? I know enough about Python and micro controllers to be dangerous. So please dumb it down 🤣.
About Numpy, I think the most advance library is
ulab
I would like to convert python code that uses numpy to Kotlin. Which package is recommended to use that delivers most (or all) of numpy capabilities?
Thanks
See: https://github.com/Kotlin/multik
For more information:
https://blog.jetbrains.com/kotlin/2021/02/multik-multidimensional-arrays-in-kotlin/
Multik Architecture
Initially, we attempted to add Kotlin bindings to existing solutions,
such as NumPy. However, this proved cumbersome and introduced
unnecessary environmental complexity while providing little benefit to
justify the overhead. As a result, we have abandoned that approach and
started Multik from scratch.
Is the latest release of Pandas Google BigQuery (currently 0.16.2) module compatible with Python 3? I know at one point it wasn't but not sure that update has been made? If not, are there any plans to have Pandas GBQ modules support Python 3?
J
With the addition of several new gbq features and an overhaul to the way testing was done here. This should be pretty easy to add support (really just changing the minimum required api-client version).
here is an issue to track this feature. pull-requests are welcome!
A couple of years ago, Enthought decided to undertake the herculean task of rebuilding NumPy to work well with IronPython. Working binaries were hosted at the following location for a while:
https://store.enthought.com/repo/.iron/
However, since the end of 2014 it seems like the above has become a dead link. While many users reported compatibility issues with these outdated binaries, they remain the only way to actually interop with NumPy at all from IronPython.
I myself had a copy of these binaries for a while, but have since lost track of them unfortunately... Does anyone by any chance know where they can be found? I'm hoping they have not vanished off the face of the Internets...
The link is still alive. You need a (free) Enthought login to access it.
https://store.enthought.com/accounts/login/