8 lines
135 B
Markdown
8 lines
135 B
Markdown
# Generating codes
|
|
|
|
## API_ENCRYPTION_KEY
|
|
|
|
```python
|
|
from cryptography.fernet import Fernet;
|
|
print(Fernet.generate_key().decode())
|
|
``` |