Metadata-Version: 2.1
Name: shaonutil
Version: 0.0.0.24.1
Summary: UNKNOWN
Home-page: https://github.com/ShaonMajumder/shaonutil
Author: Shaon Majumder
Author-email: smazoomder@gmail.com
License: UNKNOWN
Download-URL: https://github.com/ShaonMajumder/shaonutil/archive/0.0.0.24.1.tar.gz
Keywords: shaon,utility,statistics
Platform: UNKNOWN
Description-Content-Type: text/markdown

# Utility Functions for developers
Author: Shaon Majumder

## Utilities
- stats
- network
- image
- string
- file

## Installation
	pip install shaonutil

## Function Usages

### file

get_all_functions - shaonutil.file.get_all_functions(object/file/class)

### image

### network

url_encoding_to_utf_8 - url_encoding_to_utf_8(url)

### stats

mean - Avearage or mean of elements - shaonutil.stats.mean(list of numbers)

median - Median of elements - shaonutil.stats.median(list of numbers)

mode - Mode of elements - shaonutil.stats.mode(list of numbers)

### strings

nicely_print - Prints the nicely formatted dictionary - shaonutil.strings.nicely_print(object)

randomString - Generate a random string of fixed length 



Function Usages End

## Versioning

 *major.minor[.maintenance[.build]]* (example: *1.4.3.5249*) 

adoption: major.minor.patch.maintenance.status.trials_for_success

The last position 

- 0 for alpha (status)
- 1 for beta (status)
- 2 for release candidate
- 3 for (final) release

For instance: 

- 1.2.0.1 instead of 1.2-a1
- 1.2.1.2 instead of 1.2-b2 (beta with some bug fixes)
- 1.2.2.3 instead of 1.2-rc3 (release candidate)
- 1.2.3.0 instead of 1.2-r (commercial distribution)
- 1.2.3.5 instead of 1.2-r5 (commercial distribution with many bug fixes)

