16 lines
170 B
Markdown
16 lines
170 B
Markdown
|
# word-count
|
||
|
|
||
|
## Build
|
||
|
|
||
|
```bash
|
||
|
python setup.py install
|
||
|
```
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
```python
|
||
|
from word_count_cls import WordCounter
|
||
|
|
||
|
WordCounter().search('path/to/file', 'word')
|
||
|
```
|