Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/astares/pharo-websearch

A simple Spotter websearch for Pharo
https://github.com/astares/pharo-websearch

pharo

Last synced: 24 days ago
JSON representation

A simple Spotter websearch for Pharo

Awesome Lists containing this project

README

        

# Pharo-WebSearch
A simple Spotter websearch for Pharo. Just enter your search term in spotter and letter Pharo open a browser to query the term using one of the given search engines.

## Installation

```Smalltalk
Metacello new
repository: 'github://astares/Pharo-WebSearch/src';
baseline: 'WebSearch';
load
```

## Screenshot

![alt text](doc/screenshot.png "Screenshot")

## Usage

By default 5 search engines are provided:

```Smalltalk
Bing searchFor: 'Pharo project'.
Google searchFor: 'Pharo project'.
DuckDuckGo searchFor: 'Pharo project'.
```

You can easily have your own - just subclasses **WSSearchEngine**. Just implement **#defaultSearchURL** on the class side.