https://github.com/raynardj/doctour
A nasty way to traverse through docs easier
https://github.com/raynardj/doctour
Last synced: 8 months ago
JSON representation
A nasty way to traverse through docs easier
- Host: GitHub
- URL: https://github.com/raynardj/doctour
- Owner: raynardj
- License: mit
- Created: 2020-01-19T15:52:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-11T23:29:58.000Z (about 3 years ago)
- Last Synced: 2025-02-02T05:28:47.358Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://raynardj.github.io/doctour/
- Size: 1.49 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Doc Tour
> An nasty way to parse python knowledge
### Tutorial
#### Installation
Plese install on [anaconda3](https://www.anaconda.com/distribution/)
```shell
python -m pip install doc_tour
```
#### Running
On your terminal, the default port is 8080, Now visit [http://localhost:8080](http://localhost:8080) for web UI
```shell
doctour
```
Or assgin a port
```shell
doctour --port=8001
```
## Exam variable during your coding
eg. while you're doing nlp and using lstm, you wonder what the code in pytorch is, what's its inheritance structure, which of the functions was defined in the lstm code, which other functions are inherited from its ancestors
```python
from torch import nn
import numpy as np
import doctour
```
you can exam class, fuction, module, variable...
```python
doctour.exam(nn.LSTM)
```
please visit http://localhost:8080/doc/read/LSTM_173834/140681093056304/