Metadata-Version: 2.1
Name: flaretool
Version: 0.1.6
Summary: this is flarebrow package
Home-page: https://main.flarebrow.com
Author: flarebrow
License: MIT
Project-URL: Documentation, https://flarebrow.github.io/flaretool/
Project-URL: Source, https://github.com/flarebrow/flaretool
Keywords: flaretool
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: certifi (>=2023.5.7)
Requires-Dist: charset-normalizer (>=3.1.0)
Requires-Dist: future (>=0.18.3)
Requires-Dist: idna (>=3.4)
Requires-Dist: pycodestyle (>=2.10.0)
Requires-Dist: pydantic (>=1.10.7)
Requires-Dist: python-whois (>=0.8.0)
Requires-Dist: requests (>=2.30.0)
Requires-Dist: tomli (>=2.0.1)
Requires-Dist: typing-extensions (>=4.5.0)
Requires-Dist: urllib3 (>=2.0.2)

# flaretool

**flaretool** is flarebrow Library.  

![](https://img.shields.io/badge/python-%3E%3D3.8-blue)

[API Doc](https://flarebrow.github.io/flaretool/flaretool.nettool.html#module-flaretool.nettool)

**Attention**  
This library is under development and may exhibit unexpected behavior. New features will be released soon. Please stay tuned.


## install (dev)
```bash
pip install -i https://test.pypi.org/simple/ flaretool
```

## usage
### NetTool sample
```python
from flaretool import nettool

network_info = nettool.get_global_ipaddr_info()
print("=== Your IP Infomation ===")
print("ip:", network_info.ipaddr)
print("hostname:", network_info.hostname)
print("country:", network_info.country)
```

### NetTool Command sample

```bash
flaretool nettool get_global_ipaddr_info
```

All methods within Netttol can be executed as commands.



