Enter the query into the form above.
API method:
GET /api/symbols?search=hello&page=1&limit=20
where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned
in response headers.
If you'd like to join our channel webring send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
Load the user provided Scheme source code FILE.
Display MATCHES, a list of object/score pairs, by calling PRINT on each of them. If PORT is a terminal, print at most a full screen of results. REGEXPS is a list of regexps to highlight in search results.
Return a score denoting the relevance of PACKAGE for REGEXPS. A score of zero means that PACKAGE does not match any of REGEXPS.
Report the failure to load FILE, a user-provided Scheme file, without exiting. ARGS is the list of arguments received by the 'throw' handler.
Return a predicate that returns true when passed a package where one of its source URLs starts with PREFIX.
Download the tarball at URL to the store; check its OpenPGP signature at SIGNATURE-URL, unless SIGNATURE-URL is false. On success, return the tarball file name; return #f on failure (network failure or authentication failure).
KEY-DOWNLOAD specifies a download policy for missing OpenPGP keys; allowed values: 'auto' (default), 'always', 'interactive' and 'never'; KEY-SERVER specifies the OpenPGP key server where the key should be looked up.
Return a predicate that returns true when passed a package whose source is an <origin> with the URL-FETCH method, and one of its URLs passes MATCHING-URL?.
Return the available types of archives for RELEASE---a list of strings such as "gz" or "xz".
Return an <upstream-source> object to update PACKAGE, a <package> object, or #f if none of UPDATERS matches PACKAGE. When several updaters match PACKAGE, try them until one of them returns an upstream source. It is the caller's responsibility to ensure that the returned source is newer than the current one.
Return a variant of SOURCE that uses the same archive type as PACKAGE's source (gz, xz, zst, etc.). Return SOURCE if this is not applicable.
Like 'package-latest-release', but ensure that the return source is newer than that of PACKAGE.
If PACKAGE's source is a tarball or zip archive, return its archive type--a string such as "xz". Otherwise return #f.
Return the subset of inputs of SOURCE that have the given TYPE.