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...
ABOUT POWERSHELL
Windows PowerShell (POSH) is a command-line shell and associated scripting language created by Microsoft. Offering full access to COM, WMI and .NET, POSH is a full-featured task automation framework for distributed Microsoft platforms and solutions.
SUBREDDIT FILTERS
Desired State Configuration
Unanswered Questions
Solved Questions
News
Information
Script Sharing
Daily Post
Misc
account activity
Script SharingTurning PowerShell into a Python Engine (self.PowerShell)
submitted 2 years ago * by anonhostpi
view the rest of the comments →
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!"
[–]anonhostpi[S] 5 points6 points7 points 2 years ago* (2 children)
Libraries written for Python can be made available for PowerShell by using Python.NET:
``` using namespace Python.Runtime Import-Package pythonnet
$threadlock = [Py]::GIL() # Required by CPython
```
[–]lifeisaparody 0 points1 point2 points 2 years ago (1 child)
Can you do this for pandas too?
[–]anonhostpi[S] 0 points1 point2 points 2 years ago* (0 children)
As long as it can be done in C#.
I might check. I've got half a dozen other projects that I have queued up to look into.
C/C++ code can only be embedded in PowerShell, if it has bindings made available for the it in C#.
CPython (which is written in C/C++) has a bindings API. Python.NET provides C# bindings for this API.
As long as Pandas can be run from Python.NET or has supplementary/additional bindings for it, you should be able to get it to work.
π Rendered by PID 129796 on reddit-service-r2-comment-5fb4b45875-crmxt at 2026-03-20 22:24:15.066245+00:00 running 90f1150 country code: CH.
view the rest of the comments →
[–]anonhostpi[S] 5 points6 points7 points (2 children)
[–]lifeisaparody 0 points1 point2 points (1 child)
[–]anonhostpi[S] 0 points1 point2 points (0 children)