```python
import sys
```
### increase int to str conversion limit
if you get this error:
```python
ValueError: Exceeds the limit (4300) for integer string conversion
```
you can increase the limit by:
```python
import sys
sys.set_int_max_str_digits(0)
```
see: https://docs.python.org/3/library/stdtypes.html#integer-string-conversion-length-limitation
the limit is set to 4300 for security reasons