Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mwmbl/mwmbl
An open source, non-profit search engine implemented in python
https://github.com/mwmbl/mwmbl
non-profit search-engine
Last synced: 28 days ago
JSON representation
An open source, non-profit search engine implemented in python
- Host: GitHub
- URL: https://github.com/mwmbl/mwmbl
- Owner: mwmbl
- License: agpl-3.0
- Created: 2021-12-26T09:03:27.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-01T07:45:53.000Z (7 months ago)
- Last Synced: 2024-04-13T21:57:47.182Z (7 months ago)
- Topics: non-profit, search-engine
- Language: Python
- Homepage: https://mwmbl.org
- Size: 84.3 MB
- Stars: 1,353
- Watchers: 14
- Forks: 60
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
![banner](docs/assets/images/banner_mwmbl.svg)
# Mwmbl - the Open Source Web Search Engine
[![Matrix](https://img.shields.io/matrix/mwmbl:matrix.org)](https://matrix.to/#/#mwmbl:matrix.org)
**No ads, no tracking, no profit**
[Mwmbl](https://mwmbl.org) is a non-profit, open source search engine
where the community determines the rankings. We aim to be a
replacement for commercial search engines such as Google and
Bing.![mwmbl](https://user-images.githubusercontent.com/1283077/218265959-be4220b4-dcf0-47ab-acd3-f06df0883b52.gif)
We have our own index powered by our community. Our index is currently
much smaller than those of commercial search engines, with around 500
million unique URLs ([more stats](https://mwmbl.org/stats/)). The
quality is a long way's off from matching the commercial engines at the moment, but
you can help change that by joining us! We aim to have 1 billion
unique URLs indexed by the end of 2024, 10 billion by the end of 2025
and 100 billion by the end of 2026 by which point we should be
comparable with the commercial search engines.Community
=========Our main community is on
[Matrix](https://matrix.to/#/#mwmbl:matrix.org) but we also have a
[Discord server](https://discord.gg/2BGSUYFdkD) for non-development
related discussion.The community is responsible for crawling the web (see below) and
[curating search results](https://book.mwmbl.org/page/curating/). We are
friendly and welcoming. Join us!Documentation
=============All documentation is at [https://book.mwmbl.org](https://book.mwmbl.org).
Crawling
========Crawling is distributed across the community, while indexing is
centralised on the main server.If you have spare computer power and bandwidth, the best way you can help is
by running our [command line
crawler](https://github.com/mwmbl/crawler-script) with as many threads
as you can spare.If you have Firefox you can help out by [installing our
extension](https://addons.mozilla.org/en-GB/firefox/addon/mwmbl-web-crawler/). This
will crawl the web in the background. It does not use or access any of
your personal data. Instead it crawls a set of URLs sent from our
central server. After extracting a summary of each page, it batches
these up and sends the data to the central server to be stored and
indexed.Why a non-profit search engine?
===============================The motives of ad-funded search engines are at odds with providing an
optimal user experience. These sites are optimised for ad revenue,
with user experience taking second place. This means that pages are
loaded with ads which are often not clearly distinguished from search
results. Also, eitland on Hacker News
[comments](https://news.ycombinator.com/item?id=29427442):> Thinking about it it seems logical that for a search engine that
> practically speaking has monopoly both on users and as mattgb points
> out - [to some] degree also on indexing - serving the correct answer
> first is just dumb: if they can keep me going between their search
> results and tech blogs with their ads embedded one, two or five
> times extra that means one, two or five times more ad impressions.But what about...?
==================The space of alternative search engines has expanded rapidly in recent
years. Here's a very incomplete list of some that have interested me:- [search.marginalia.nu](https://search.marginalia.nu/) - a search
engine favouring text-heavy websites
- [SearXNG](https://github.com/searxng/searxng) - an open source meta
search engine
- [YaCy](https://yacy.net/) - an open source distributed search engine
- [Stract](https://stract.com/) - an open source, private search engine with a focus on privacy and customizability
- [Brave](https://search.brave.com/)
- [DuckDuckGo](https://duckduckgo.com/)
- [Kagi](https://kagi.com/)Of these, YaCy is the closest in spirit to the idea of a non-profit
search engine. The index is distributed across a peer-to-peer
network. Unfortunately this design decision slows the fetching of search results.Marginalia Search is fantastic, but our goals are different: we aim to
be a replacement for commercial search engines whereas Marginalia aims to
provide a different type of search.All other search engines that I've come across are for-profit. Please
let me know if I've missed one!Designing for non-profit
========================To be a good search engine, we need to store many items, but the cost
of running the engine is at least proportional to the number of items
stored. Our main consideration is thus to reduce the cost per item
stored.The design is founded on the observation that most items rank for a
small set of terms. In the extreme version of this, where each item
ranks for a single term, the usual inverted index design is grossly
inefficient, since we have to store each term at least twice: once in
the index and once in the item data itself.Our design is a giant hash map. We have a single store consisting of a
fixed number N of pages. Each page is of a fixed size (currently 4096
bytes to match a page of memory), and consists of a compressed list of
items. Given a term for which we want an item to rank, we compute a
hash of the term, a value between 0 and N - 1. The item is then stored
in the corresponding page.To retrieve pages, we simply compute the hash of the terms in the user
query and load the corresponding pages, filter the items to those
containing the term and rank the items. Since each page is small, this
can be done very quickly.Because we compress the list of items, we can rank for more than a
single term and maintain an index smaller than the inverted index
design. At least, that's the theory. This idea has yet to be tested on
a large scale.How to contribute
=================There are multiple ways to help:
- [Help us crawl the
web](https://addons.mozilla.org/en-GB/firefox/addon/mwmbl-web-crawler/)
- [Donate some money](https://opencollective.com/mwmbl) towards
hosting costs and supporting our volunteers
- Give feedback/suggestions
- Assist in development of the engine itselfIf you would like to help in any of these or other ways, thank you!
Please join our [Matrix chat
server](https://matrix.to/#/#mwmbl:matrix.org) or email the main
author (email address is in the git commit history).Development
===========### Local Testing
For trying out the service locally see the section in the Mwmbl [book](https://book.mwmbl.org/page/developers/).
### Using Dokku
Note: this method is not recommended as it is more involved, and your index will not include any data unless you
set up a crawler to crawl to your server. You will need to set up your own Backblaze or S3 equivalent storage, or
have access to the production keys, which we probably won't give you.Follow the [deployment instructions](https://github.com/mwmbl/mwmbl/wiki/Deployment)
Frequently Asked Question
=========================### How do you pronounce "mwmbl"?
Like "mumble". I live in
[Mumbles](https://en.wikipedia.org/wiki/Mumbles), which is spelt
"Mwmbwls" in Welsh. But the intended meaning is "to mumble", as in
"don't search, just mwmbl!"