Add random_word & random_phrase

This commit is contained in:
simon987 2020-08-04 18:04:41 -04:00
parent 595fbc71be
commit 30854c7f8b
4 changed files with 466514 additions and 1 deletions

466469
hexlib/data/words.txt Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,6 @@
import os
from io import BytesIO
from tarfile import TarFile, TarInfo
def ftw(path):
@ -6,3 +8,22 @@ def ftw(path):
for file in files:
yield os.path.join(cur, file)
def add_bytes_to_tar(tar: TarFile, filename: str, data: bytes):
buf = BytesIO()
buf.write(data)
buf.flush()
buf.seek(0)
info = TarInfo(name=filename)
info.size = len(data)
tar.addfile(info, buf)
def add_buf_to_tar(tar: TarFile, filename: str, buf: BytesIO):
buf.flush()
buf.seek(0)
info = TarInfo(name=filename)
info.size = len(buf.getvalue())
tar.addfile(info, buf)

View File

@ -1,4 +1,23 @@
import os
import random
from functools import lru_cache
@lru_cache
def _words():
with open(os.path.join(os.path.dirname(__file__), "data/words.txt")) as f:
return [line.strip().lower() for line in f]
def random_word():
return random.choice(_words())
def random_phrase(words=10, capitalize=True, suffix="."):
phrase = " ".join(random_word() for _ in range(words))
if capitalize:
phrase = phrase.capitalize()
return phrase + suffix
def fuzz(buf: bytes, n: int, width: int):

View File

@ -2,11 +2,15 @@ from setuptools import setup
setup(
name="hexlib",
version="1.12",
version="1.13",
description="Misc utility methods",
author="simon987",
author_email="me@simon987.net",
packages=["hexlib"],
include_package_data=True,
package_data={"": [
"data/*"
]},
install_requires=[
"ImageHash", "influxdb", "siphash", "python-dateutil", "redis", "ujson"
]