Metadata-Version: 2.1
Name: code-parser
Version: 0.0.2
Summary: UNKNOWN
Home-page: https://github.com/ilearnToday/FirstOtusHomework
Author: Viatcheslav ilearnToday
Author-email: goodeitime@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Code_parser
Code parser is a first Otus homework.
It'll give some stats on your project: total number of unique words, most common word, functions and most common word in functions.
##Installation
Use the package manager [pip](https://pip.pypa.io/en/stable/) to install Code parser.

```pip install code_parser```
##Usage
```python3 -m code_parser [-p PROJECT_PATH] [-e EXCLUDET_DIRS]```
##Example
```python3 -m code_parser -p /User/myproject/new_project -e venv,some_lib,other_lib```

```
Found 22 functions
Most common is get, used 6 times
Found 309 words, unique 55
Most common is names, used 44 times
```
##Requirements
```nltk==3.4.1```
```six==1.12.0```




