Skip to main content

A simple Python module to count words in your given text and many more

Project description

============
Word-Counter
============

A Python Word Counter module

Installation
============

```bash
pip install wordcounter
```

Usage
=====

- Import the module after installation

```python
import wordcounter
```

- Create a object with sentence and delimiter as arguments to WordCounter class. Default value for delimiter is ' ' (a single space)

```python
word_counter = WordCounter('The, quick, brown, fox, jumps, over, the, lazy, dog', delimiter=', ')
```

- Get word count

```python
word_counter.get_word_count()
```

- Get count of specific words

```python
word_counter.count('the') # a case insensitive count

# if you want to have a case sensitive search just set ignore_case=False
word_counter.count('the', ignore_case=False) # a case sensitive count
```

- Get word frequencies

```python
word_counter.get_word_frequencies()
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wordcounter-0.0.2.tar.gz (3.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page