Metadata-Version: 2.1
Name: oracle-to-python
Version: 0.0.2
Summary: Oracle NULL functions equivalent in Oracle
Home-page: https://github.com/pypa/sampleproject
Author: Arun Jaiswal
Author-email: arrrsh@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# oracle_to_python

This package has equivalent NULL functions in Python as are there in Oracle

## This package oracle_to_python.nulls has below functions.

* nvl(value,return_if_value_None)
* nvl2(expr1, value_if_expr1_not_null, value_if_expr1_null) 
* nullif(value1, value2) returns None if value1 and value2 are same else value1
* coalesce(list_of_values) returns first not None value, if all values in list are False, then will return None

pip install oracle_to_python

## Module name

nulls



