top of page

C# Script to get Wikipedia Info box data for bulk number of companies with one click


---------------------------------Coding starts from here----------------------------

using HtmlAgilityPack; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Reflection; using System.Text; using System.Text.RegularExpressions; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace wikicontent { public partial class WebForm1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } public class Pageval { public int pageid { get; set; } public int ns { get; set; } public string title { get; set; } //public string extract { get; set; } public dynamic revisions { get; set; } } public class Query { public Dictionary<string, Pageval> pages { get; set; } } public class Limits { public int extracts { get; set; } } public class RootObject { public string batchcomplete { get; set; } public Query query { get; set; } //public Limits limits { get; set; } } protected void Button1_Click(object sender, EventArgs e) { string[] companies = TextArea1.InnerText.Split(','); StringBuilder sb = new StringBuilder(); foreach (string company in companies) { string url = "https://en.wikipedia.org/wiki/" + company.Trim(); // API Call HtmlWeb hw = new HtmlWeb(); HtmlDocument doc = hw.Load(url); var table = doc.DocumentNode.SelectNodes("//table")[0]; sb.Append("<tr><td>" + company + "</td><td>" + table.OuterHtml + "</td></tr>"); } result.InnerHtml = sb.ToString(); } } }

Featured Posts
Check back soon
Once posts are published, you’ll see them here.
Recent Posts
Archive
Search By Tags
No tags yet.
Follow Us
  • Facebook Basic Square
  • Twitter Basic Square
  • Google+ Basic Square
bottom of page