Skip to content

Instantly share code, notes, and snippets.

@4OH4
Last active May 11, 2020 15:32
Show Gist options
  • Save 4OH4/e9379673b640785fc5cb46dc3a535ba3 to your computer and use it in GitHub Desktop.
Save 4OH4/e9379673b640785fc5cb46dc3a535ba3 to your computer and use it in GitHub Desktop.
Hypothesis text generation - example output
# Show some generated text examples
from hypothesis.strategies import text
for _ in range(10):
text().example()
# ''
# '\x17\x14'
# '\x1d\x08'
# '(\U000adacd\x0e\x02\x1e'
# '\U00013c7b\x1f\x16\r\U0007433d'
# '0'
# '\U0005cc1b'
# '&\t'
# '\U000bc657\U000740e4'
# '0'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment