Metadata-Version: 2.1
Name: xtracer
Version: 0.6
Summary: Python Multi Tracer Tool
Home-page: https://github.com/ph-fox/xtracer
Author: Anikin Luke Abales
Author-email: abalesluke@gmail.com
Project-URL: Homepage, https://anikinlukeabales.ninja/projects/xtracer
Project-URL: Source, https://github.com/ph-fox/xtracer
Project-URL: Bug Tracker, https://github.com/ph-fox/xtracer/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# X-Tracer
## Multi Tracing Tool
### Example 1 for python3 file or python3 console
#### **`ip_trace()`** Example
```py
>> from xtracer import Tracer
>> trace = Tracer()
>> ip_info = trace.ip_trace('142.250.185.78')
>> print(ip_info)
  IP: 142.250.185.78
  Country: Germany
  country code: DE
  region: HE
  Region Name: Hesse
  City: Frankfurt am Main
  zip code: 60313
  time zone: Europe/Berlin
  ISP: Google LLC
  org: Google LLC
  as: AS15169 Google LLC
  latitude: 50.1109
  longitude: 8.68213
>>
```
.
#### **`mac_trace()`** Example
```py
>> from xtracer import Tracer
>> trace = Tracer()
>> mac_info = trace.mac_trace('00:11:22:33:44:55')
>> print(mac_info)
  Mac: 00:11:22:33:44:55
  Mac Vendor: CIMSYS Inc
  Private: No
>>
```

### Example 2 for terminal/cmd
```console
~$ python3 -m xtracer

=========================
 __  _______             |
 \ \/ /_   _|            |
  >  <  | |              |
 /_/\_\ |_|              |
                         |
X-Tracer By: Anikin Luke |
-------------------------|
Your Ip: 142.250.185.78
=========================|
[1] ==> (IP Tracer)
[2] ==> (MAC Tracer)
[0] ==> (Exit)
=========================
Select~>
```
## Installation
```
python3 -m pip install xtracer
```
or
```
pip3 install xtracer
```
**X-Tracer** only supports python3


## Info
Number of tracers: 2
> Tracers list:
> * ip_trace('<target_ip>')
> * mac_trace('<target_mac>')
