Skip to content

⚡ A portable library for fetching Google Search suggestions for .NET applications.

Notifications You must be signed in to change notification settings

Spiderpig86/GSearch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

⚡ A portable library for fetching Google Search suggestions for .NET applications.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages