Metadata-Version: 2.1
Name: jax-tools
Version: 1.0.154
Summary: Jax common tools library
Home-page: https://jax-arsenals.com
Download-URL: https://jax-arsenals.com
Author: Jax
Author-email: alvin.wan.cn@hotmail.com
License: MIT Licence
Keywords: jax
Platform: CentOS
Platform: Redhat
Platform: MacOS
Platform: Windows
Requires-Python: >=3.0.0
Description-Content-Type: text/markdown
Provides-Extra: win10
Provides-Extra: openai
Provides-Extra: python

# Jax Tools
Jax common tools

## Install
```shell
pip3 install jax-tools
```

update
```shell
pip3 install jax-tools --upgrade
```


## Usage

### Use network port detection

```shell
nd dest_ip dest_port
```

### Use logger

```python
from jax_tools.logger import logger
logger.info('info')
logger.debug('debug')
logger.warning('warning')
logger.error('error')
logger.critical('critical')
```
### Use ssh

```python
from jax_tools.ssh import SSHClient
ssh_client = SSHClient(host='dest_ip', port=22, username='username', password='password')
print(ssh_client.run_cmd('ls'))
```

