Skip to content

ajordan2984/MeaningCloudCoreSharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

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();