-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
26 lines (25 loc) · 709 Bytes
/
Program.cs
File metadata and controls
26 lines (25 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.IO;
using Jupyter_PowerShell5.Models;
using Newtonsoft.Json;
namespace Jupyter_PowerShell5
{
internal class Program
{
public static void Main(string[] args)
{
if (args.Length > 0)
{
Console.WriteLine($"Connection file: {args[0]}");
var connection = JsonConvert.DeserializeObject<Connection>(File.ReadAllText(args[0]));
var kernel = new Kernel(connection);
kernel.Start();
kernel.Wait();
}
else
{
Console.WriteLine("Please launch this executable as Jupyter kernel.");
}
}
}
}