sympy-live
sympy-live copied to clipboard
The source for the code at live.sympy.org
Clicking on the second example in https://docs.sympy.org/latest/tutorial/calculus.html `>>> diff(cos(x), x)` opens the live shell sidebar with a spining indicator running, and never return the answer due to: ``` live-core.js:943 Uncaught...
Pickling is a problem for SymPy Live as it can lead to strange errors (not everything is picklable); running Python in the browser could avoid this. There are three options...
This is occurring for me every time I try to run anything in sympy live, looks like a case of needing to use `.encode` for encoding unicode: `>>> str(Integral(sqrt(1/x), x))...
We need to figure out how to get SymPy Live to support Python 3. I saw https://stackoverflow.com/questions/24229203/does-google-app-engine-support-python-3 but I couldn't figure out how to get it working. SymPy will drop...
For `M = Matrix(8, 8, [x+i for i in range (64)])` `sympy live` gives this error `BadRequestError: The value of property "globals" is longer than 1048487 bytes.` I tried in...
I have found a way to run any JavaScript code on the browser from SymPy Live, It can be simply done using this input: ```py "\unicode{}" % "alert(0)" ``` (Where...
I executed the example mentioned in the docstring of the KanesMethod object. It shows me an error in the Sympy Live shell when I tried to display the variable "FL"...
As LaTeX parser requires [antlr-python-runtime](https://docs.sympy.org/latest/modules/parsing.html#runtime-installation), the following code block from the docstring throws an error: ``` >>> from sympy.parsing.latex import parse_latex # doctest: +SKIP >>> expr = parse_latex(r"\frac {1 +...
Done the thing with javascript...It has many more things to be done.
- Mention the abbreviation "GAE" next to the first occurrence of the expanded expression (this one comes from #179) - Wrap consistently at 80 characters (there were various limits used...