Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nkottary/Help.jl

Query documentation from Julia prompt.
https://github.com/nkottary/Help.jl

Last synced: 3 months ago
JSON representation

Query documentation from Julia prompt.

Awesome Lists containing this project

README

        

# Help.jl

Search through readme and documentation of packages and functions based on a query. Unlike `apropos`, Help uses TF-IDF instead of sub-string search.

Run `update()` first to build the data needed for search.

## Example

```julia
julia> using Help
julia> help("Gray scale an image")
Help Results
---------
1. Images
2. ImageView
3. TestImages
4. ImageRegistration
5. SloanDigitalSkySurvey

julia> using MySQL
julia> help(MySQL, "get the last inserted id")
Help Results
---------
1. mysql_insert_id

julia> help(Base, "convert pointer to array")
Help Results
---------
1. pointer_to_array
2. oftype
3. bitpack
```