Spiderpig86 / GSearch

:zap: A portable library for fetching Google Search suggestions for .NET applications.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GSearch

A lightning fast, portable library for fetching Google autocomplete suggestions at just 6kb.

Setting Up

After downloading the library, add it to the application's references. Then, import the library. C#:

using GSearch;

VB.NET:

Imports GSearch

Usage

Declare an array to store the Google Search results. C#:

string[] suggestions = GSearch.GetResultsAsArray(your_query);

VB.NET:

Dim suggestions As String() = GSearch.GetResultsAsArray(your_query)

To get the raw XML, just call GSearch.GetResultsAsString(your_query);.

Future Updates

  • VB.Net sample
  • Option to change locales in tester application
  • Sample with UI

About

:zap: A portable library for fetching Google Search suggestions for .NET applications.


Languages

Language:C# 100.0%