# Private Key To Digibyte

```python
from cryptofuzz import DigiByte
# digibyte class
dgb = DigiByte()
# private key hex
pvk = "db6fae9db7f5314e1249390b8e38a91a6dff98c655f25a6bf01f8619f2b70e65"
# digibyte address
dgb_address = dgb.hex_addr(pvk)
print(dgb_address)
# output : D7X2P2Y8XuPG815KtoJRL62rStvhC8jF82
```

This code snippet demonstrates how to generate a DigiByte address from a given private key using the <mark style="color:yellow;">`cryptofuzz`</mark> library. First, we import the `DigiByte` class from `cryptofuzz`. Then, we instantiate this class and provide a hex-string representation of a private key. The method <mark style="color:orange;">`hex_addr`</mark> is called with this private key as an argument to generate the corresponding DigiByte address. Finally, this address is printed to the console.
