Skip to content

Instantly share code, notes, and snippets.

@anonhostpi
Created July 2, 2025 02:07
Show Gist options
  • Save anonhostpi/89d29048fabbb935ca42c40008c306d3 to your computer and use it in GitHub Desktop.
Save anonhostpi/89d29048fabbb935ca42c40008c306d3 to your computer and use it in GitHub Desktop.
Embedding IronPython Demo
$url = 'https://raw.githubusercontent.com/anonhostpi/ironpython3/iex-web-support/eng/scripts/Install-IronPython.ps1'
iex ((New-Object System.Net.WebClient).DownloadString($url))
Import-Module ".\IronPython.dll"
& {
[IronPython.Hosting.Python]::CreateEngine().
CreateScriptSourceFromString("print('Hello from embedded IronPython!')").
Execute()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment