Metadata-Version: 2.1
Name: nezu
Version: 0.3.27
Summary: Elegant debuging module
License: MIT
Author: Chuck Cartwright
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

## Nezu

[![PyPI version](https://badge.fury.io/py/nezu.svg)](https://pypi.org/project/nezu/)
[![License](https://img.shields.io/badge/license-MIT-teal)](https://opensource.org/license/mit/)
[![Dependencies](https://img.shields.io/badge/dependencies-None-teal)](https://github.com/Nezu-Devs/Nezu/blob/main/nezu/pyproject.toml)

Elegant debug module

- **_Python Code Example_**
  
  ```py
  # file.py
  from nezu import say
  x = 13
  say('x')  # Prints debug info.
  ```
- **_Bash Commands to Debug_**
  
  ```bash
  export NEZU_SEEK=1
  python file.py
      @4 l x:int  =>  13
  ```


### Table of Contents

[NEZU](#nezu)

- [Table of Contents](#table-of-contents)
- [Installation](#installation)
- [Usage](#usage)
    - [Output Interpretation](#output-interpretation)
    - [Function say](#function-say)
- [Config](#config) 
    - [Env Vars Config](#env-vars-config)
    - [JSON Config](#json-config)
    - [Hardcoded Config](#hardcoded-config)
- [Coloring output](#coloring-output)
- [Hiding output](#hiding-output)


### Installation

- **_Pip_**

  ```bash
  python -m pip install nezu
  ```

- **_Poetry_**

  ```bash
  python -m poetry add nezu
  ```

### Usage

- Inspect variable using [function say](#function-say) in your code.
- [Configure](#config) Nezu to show output.
- [Interpret](#output-interpretation) output and debug. 

#### Output Interpretation

  ```
  @7 b print:function  =>  Prints the values to a stream, or to sys...
   │ │ │     │             │
   │ │ │     │             └─ Value of inspected variable
   │ │ │     │
   │ │ │     └─────────────── Type of inspected variable.
   │ │ │
   │ │ └───────────────────── Name of inspected variable.
   │ │
   │ └─────────────────────── Scope of inspected variable.
   │                          l:local, g:global, b:build-in, u:undefined
   |
   └───────────────────────── Line number of inspection.
  ```
#### Function `say`

Inspect scopes and values of given keys (variable names etc.).

- **_Args_**

  - `*keys:str`

    Names of variables to inspect

  - `note:str = None`

    Optional comment. Ignored if equal to None.

  - `hide:int = 1`

    This argument is compared with `nezu.seek`.
    If `nezu.seek >= hide` this debug inspection will be displayed.
    If hide <= 0, this message will be displayed by default.


- **_Python Code Example_**

  ```py
  # file.py
  from nezu import say

  egg = 3
  ham = int()
  spam = {'spam':'bacon'}

  say('egg')          # Works on simple variables.
  say('ham.real')     # Works on attributes.
  say('print')        # Works on functions and build-ins.
  say('spam["spam"]') # DOES NOT work on keys and indexes yet.
  ```

- **_Note_**

  Output of `say` function is hidden by default. If you want to see what nezu has to say you need to configure env var `NEZU_SEEK` with value of `1` or more.

### Config

Module `nezu` creates `nezu` object that has config attributes used by function `say`.

- ***Attributes***
  - `nezu.seek:int = 0`
  Compared to `say` argument`hide`, if `nezu.seek >= hide` then `say` will be printed.
  - `nezu.color:bool = False` 
    Determines if output of `say` function should be colored.
  - `nezu.lock:bool = False`
    If `nezu.lock = True`, this config cannot be changed later, during runtime.

#### Env Vars Config

If you want to use default config method, change your _env vars_ in terminal and run Python script.

- **_Bash_**

  ```bash
  export NEZU_SEEK=1
  export NEZU_COLOR=1
  export NEZU_LOCK=0
  python file.py
  ```

- **_PowerShell_**
  ```powershell
  $env:NEZU_SEEK = 1
  $env:NEZU_COLOR = $True
  $env:NEZU_LOCK = $True
  python file.py
  ```

#### JSON Config

If you don't want to use _env vars_ as config, you can call `nezu.json()` to read config data from json file.
It will search for key `nezu` inside chosen file.

- **_Args_**
  
  - `path:str = 'nezu.json'` - path of config file

- **_Example Python Code_**

  ```python
  from nezu import nezu, say
  nezu.json('my/json/file.json')
  ```

- **_Example Config File_**
  
  ```json
  "nezu": {
    "seek": 1,
    "color": true,
    "locked": false
  }
  ```

---

#### Hardcoded Config

If you don't want to use _env vars_ as config you can also call object `nezu` like function to make hardcoded config.

- **_Args_**
  
  - `seek:int = 0` - debug level
  - `color:bool = False` - output coloring
  - `lock:bool = False` - lock this config
- **_Example_**

  ```py
  # file.py
  from nezu import nezu, say

  nezu(1, True, False)
  ...
  ```

- **_Tip_**

  There is no build-in support for _yaml_, _toml_ or _.env_ in _nezu_
  This is so _nezu_ can stay free of dependencies.
  However you can use hardcoded config to pass data from any config file.



### Coloring output

By default nezu output is monochrome.
If your terminal of choise support coloring you can change that.


- **_Example Bash Command_**
  
  ```bash
  export NEZU_COLOR=1
  python file.py
  ```
- **_Example PowerShell Command_**
  
  ```powershell
  $env:NEZU_COLOR = $True
  python file.py
  ```
  
- **_Example JSON Config File_**
  
  ```json
  "nezu": {
    "color": true,
  }
  ```
  
- **_Example Hardcoded Config_** 

  ```py
  from nezu import nezu, say
  
  nezu(color = True)
  ...
  ```

### Hiding Output

Function `say()` can be hidden more by `hide` parameter. By default only say calls with `hide <= nezu.seek` will be printed. In examples bellow only says hidden up to level 3 are displayed.
- **_Python Code Example_**
  
    ```python
    #file.py
    from nezu import say
    
    say('egg', hide=1)
    say('ham', hide=2)
    say('spam', hide=3)
    say('bacon', hide=4)
    say('lobster', hide=5)
    ```
    
- **_Bash Example_**

    ```bash
    export NEZU_SEEK=3 
    python file.py
          @4 u egg
          @5 u ham
          @6 u spam
    ```
    
- **_PowerShell Example_**

    ```powershell
    $ENV:NEZU_SEEK = 3 
    python file.py
          @4 u egg
          @5 u ham
          @6 u spam
    ```
    
- **_JSON File Example_**

  ```json
  "nezu": {
      "seek": 3
  }
  ```

