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.
Return the directory associated to URL in %repository-cache-directory.
Open the Git repository in DIRECTORY or one of its parent and return three values: the working directory of that repository, its checked out commit ID, and its checked out reference (such as a branch name). Return #f (three values) if DIRECTORY does not hold a readable Git repository.
Return an sexp, called an "sglob", that represents the compiled form of STR, a glob pattern such as "foo*" or "foo??bar".
Compile SGLOB into a more efficient representation.
Return true if STR matches PATTERN, a compiled glob pattern as returned by 'compile-sglob'.
Rewrite URL so that the URL path components matching the current VERSION or VERSION-MAJOR.VERSION-MINOR are updated with that of the latest version found by crawling the corresponding URL directories. Alternatively, when TO-VERSION is specified, rewrite version matches directly to it without crawling URL. If TO-VERSION is provided and PARTIAL-VERSION? set to #t, then crawl URL to find the newest compatible release (one that is prefixed by TO-VERSION).
For example, the URL "https://dist.libuv.org/dist/v1.45.0/libuv-v1.45.0.tar.gz" could be rewritten to something like "https://dist.libuv.org/dist/v1.46.0/libuv-v1.46.0.tar.gz".
With TO-VERSION set to "1.49" and PARTIAL-VERSION? set to #t, the URL "https://dist.libuv.org/dist/v1.45.0/libuv-v1.45.0.tar.gz" could be rewritten to something like "https://dist.libuv.org/dist/v1.49.2/libuv-v1.49.2.tar.gz".
Rewrite URI to a mirror:// URI if possible, or return URI unmodified.
Return the <upstream-source> for the latest version of PACKAGE or #f. PACKAGE must be the canonical name of a GNU package. Optionally include a VERSION string to fetch a specific version, which may be marked as partially specified via PARTIAL-VERSION?.
Return the list of <upstream-release> of PROJECT as a list of release name/directory pairs.
Find GNU package called NAME and return it. Return #f if it was not found.