Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 834 Bytes

README.md

File metadata and controls

36 lines (29 loc) · 834 Bytes

MeaningCloudCoreSharp

This is a library written in C# for https://www.meaningcloud.com/products/automatic-summarization

Dependencies

Dependency Version
.NET Core 3.1
Newtonsoft 12.0.3

Example

This is how you would make your request

var client = new MCClient(new MCParameters()
            {
                Key = "YOUR API KEY HERE",
                Url = "https://en.wikipedia.org/wiki/Augustus",
                Sentences = "3"
            });

var mc = client.Download();

OR

var text = File.ReadAllText("exampleTextFile.txt");

var client = new MCClient(new MCParameters()
            {
                Key = "YOUR API KEY HERE",
                Txt = text
                Sentences = "3"
            });

var mc = client.Download();