⬅︎ Back to Go vs. Python
That's neat! That's basically what godoc.org is plus your own $GOPATH stuff.
And godoc -http=:8080 is even cooler … simply open http://localhost:8080/pkg/, and you get the documentation for builtin packages like math, external like github.com/russross/blackfriday and $GOPATH/yourcoolstuff in one place, linked nicely :)
Same exact thing on python can be done by `pydoc -p 8080`
Comment
That's neat! That's basically what godoc.org is plus your own $GOPATH stuff.
Parent comment
And godoc -http=:8080 is even cooler … simply open http://localhost:8080/pkg/, and you get the documentation for builtin packages like math, external like github.com/russross/blackfriday and $GOPATH/yourcoolstuff in one place, linked nicely :)
Replies
Same exact thing on python can be done by `pydoc -p 8080`