[go: up one dir, main page]

Browse free open source Search software and projects below. Use the toggles on the left to filter open source Search software by OS, license, language, programming language, and project status.

  • La version gratuite d'Auth0 s'enrichit ! Icon
    La version gratuite d'Auth0 s'enrichit !

    Gratuit pour 25 000 utilisateurs avec intégration Okta illimitée : concentrez-vous sur le développement de vos applications.

    Vous l'avez demandé, nous l'avons fait ! Les versions gratuite et payante d'Auth0 incluent des options qui vous permettent de développer, déployer et faire évoluer vos applications en toute sécurité. Utilisez Auth0 dès maintenant pour découvrir tous ses avantages.
    Essayez Auth0 gratuitement
  • Gen AI apps are built with MongoDB Atlas Icon
    Gen AI apps are built with MongoDB Atlas

    The database for AI-powered applications.

    MongoDB Atlas is the developer-friendly database used to build, scale, and run gen AI and LLM-powered apps—without needing a separate vector database. Atlas offers built-in vector search, global availability across 115+ regions, and flexible document modeling. Start building AI apps faster, all in one place.
    Start Free
  • 1
    List.js

    List.js

    Library for adding search, sort, filters and flexibility to tables

    Tiny, invisible and simple, yet powerful and incredibly fast vanilla JavaScript that adds search, sort, filters and flexibility to plain HTML lists, tables, or anything. List.js can be used in three different ways. It can be on existing HTML, it can create it's own HTML or a combination of both methods. Works both lists, tables and almost anything else. E.g. <div>,<ul>,<table>, etc. Simple templating system that adds possibility to add, edit, remove items. Perfect library for adding search, sort, filters and flexibility to tables, lists and various HTML elements. Built to be invisible and work on existing HTML. Simple and invisible. Easy to apply to existing HTML. No dependencies. Fast, and tiny (5KB minified&gzip). It can handle thousands of items. It is easy to add search input and sort buttons with just a few classes and attributes in your HTML. ‘Automagical’ because List.js registers the event handlers, searches/sorts and updates the list for you.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 2
    Aperture is a Java framework for extracting and querying full-text content and metadata from various information systems (file systems, web sites, mail boxes, ...) and the file formats (documents, images, ...) occurring in these systems.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 3
    I AM File Indexing can index files in given folders and make the content search able. Written in pure java it is meant for people who need very basic web-site search or multiple files search capability for their java applications.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4

    Infofuze

    Data migration/conversion library based on STX and XSLT transformation

    Infofuze is a Java library and server application that can be used to transform and combine data from various sources into a specific XML or other text output format that can be stored or indexed.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Network Performance Monitoring | Statseeker Icon
    Network Performance Monitoring | Statseeker

    Statseeker is a powerful network performance monitoring solution for businesses

    Using just a single server or virtual machine, Statseeker can be up and running within minutes, and discovering your entire network in less than an hour, without any significant effect on your bandwidth availability.
    Learn More
  • 5
    Now you don't need to rack your brains with making a regexp to extract necessary rows from log files. Just run that tool and you'll get the right Regular Expression. Image how to extract rows with the time amoung your log?
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    Meresco is both an OAI Data Provider and a Service Provider. SourceForge is only used to host the source control (subversion). Sources: http://sources.meresco.org/ Binaries: http://repository.cq2.org/ Mail: http://groups.google.com/group/meresco
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7
    MyLib is a smart desktop assistant to manage PDF/PPT/PS documents. These types of documents are frequently used by academic & engineering communities.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    The goal of this project is to provide a Content Provider plugin to RSS Feeds for iQser GIN Semantic Middleware (www.iqser.com). It is an easy way to integrate news sources for smart mashups.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9
    The SSAF ("Secure Search And Forwards") is a dirt-simple standalone web app for inexpensive and secure information sharing. Any uploaded record may be forwarded to an intended destination, and may also be stashed in a searchable repository.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Powerful Website Security | Continuous Web Threat Platform Icon
    Powerful Website Security | Continuous Web Threat Platform

    Continuously detect, prioritize, and validate web threats to quickly mitigate security, privacy, and compliance risks.

    Reflectiz is a comprehensive web exposure management platform that helps organizations proactively identify, monitor, and mitigate security, privacy, and compliance risks across their online environments. Designed to address the growing complexity of modern websites, Reflectiz provides full visibility and control over first, third, and even fourth-party components, such as scripts, trackers, and open-source libraries that often evade traditional security tools.
    Learn More
  • 10
    ServicemarX allows you to easily discover, bookmark, and share network services. It extends Bonjour (formerly known as Rendezvous) by expanding its scope Internet-wide. ServicemarX also enables Tiger's Wide Area capabilities. (full source in CVS below)
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    TR2F goal is to be attributes/tags management system, a sort of web based browser and deal engine. Features: contacts directory, portfolios, product catalogs, marketplace, and more. Web feed/attribute viewer/creator/composer/publisher is coming soon...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12
    A library to extract the contents of a table, from a textual input formatted in a tabular way.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    In this project we like to implement an interface for the open yahoo search service which is called BOSS. Then we will develop multi new search futures based on this API.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    Knowledge management tool which is primarily designed for pdf files. The tool will let the documents get tagged either automatically or manually. Within the pdf archieve, a user will be able to retrieve desired documents quickly.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15

    bnf2xml

    simple BNF parser makes xml markup of matches

    bnf2xml a simple BNF parser that takes text as input, searches according to a BNF query file, and outputs text marked up by the xml labels that show context. bnf2xml is as simple to use as any text binary ie, awk(1) grep(1). bnf2xml does not require C API because it outputs simple xml labeling. README is visible on file dl page. EXAMPLE: $ echo "hi" | bnf2xml patternfile <word><alph>h</alph><alph>i</alph></word> or <gas>hydrogen iodide</gas> patternfile says how to find needle in haystack and what to show, ie: <alph> ::= a | b | c | d ... <word> ::= <alph>+ bnf2xml is a top down recursive parser. Unlike buttom up parsers like gcc(1) or some top downs, bnf2xml is completely unambiguous / resolves ALL conflicts. Slower on ave. for parsing C or than sed(1) for simple searches. Far easier than using flex/C to create a parser. caveate: I do not suggest it's worth while to make a new gcc(1) using bnf2xml. bnf2xml an nth BETA release, but no complains yet.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16

    ftdetector

    File type detector library

    This project is a tool to detect file types by signatures and mime types. It uses hash tables to make the detection of a file type as fast as possible. The signature and mime types lists are stored at simple user-friendly files. This file type detector supports a lot of formats (image, archive, text, documents, audio, video, fonts and others). It also includes Microsoft OLE compound file types. The detector's algorythm has special features to detect text file types like (HTML, XML, JSON, etc.) and text file UNICODE charsets by using their BOMs (Byte order marks). Its small simple interface can be used at the most popular platforms.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    A tool for autonomous and virtual topical data integration using the focused web-harvesting method.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    Python script for doing mass extended-regular-expression based replacements on a stdin stream.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19
    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • Next