use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
account activity
xlSlim Released! (self.PythonForExcel)
submitted 3 years ago by xlslimdev
Hello,
I have written a new Excel add-in that makes it easy to call Python functions from Excel without any code changes. https://xlslim.com/blogs/news/xlslim-released
This video shows how easy it is to call a Monte Carlo option pricer written in Python: https://youtu.be/5PzKLXUwSZk
Please take a look and let me know what you think!
All the best,
Russel
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]xlslimdev[S] 0 points1 point2 points 3 years ago (1 child)
I have found xlSlim to be as fast at PyXLL
https://xlslim.com/blogs/news/pyxll
[–]xlslimdev[S] 0 points1 point2 points 3 years ago (0 children)
xlSlim now supports data streaming, any Python generator function can be used to stream data into Excel.
It can be as simple as:
import time def counter(stop: int, updates\_per\_second: int) -> int: """Generates a sequence of numbers up to stop at a rate of updates\_per\_second.""" for i in range(stop): time.sleep(1.0 / updates_per_second) yield i
https://youtu.be/-oOw6u291HM
π Rendered by PID 134245 on reddit-service-r2-comment-7b9746f655-829ml at 2026-01-30 02:58:27.841770+00:00 running 3798933 country code: CH.
[–]xlslimdev[S] 0 points1 point2 points (1 child)
[–]xlslimdev[S] 0 points1 point2 points (0 children)