ingest_random_image.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #/usr/bin/env python
  2. import uuid
  3. import random
  4. import requests
  5. import numpy
  6. import sys
  7. from PIL import Image
  8. host='http://localhost:5000' # Set this
  9. user='' # Set this
  10. password='' # Set this
  11. img_path = '/tmp'
  12. uid=str(uuid.uuid4())[-12:]
  13. ## Update this to include code point ranges to be sampled
  14. #include_ranges = [
  15. # ( 0x0021, 0x0021 ),
  16. # ( 0x0023, 0x0026 ),
  17. # ( 0x0028, 0x007E ),
  18. # ( 0x00A1, 0x00AC ),
  19. # ( 0x00AE, 0x00FF ),
  20. # ( 0x0100, 0x017F ),
  21. # ( 0x0180, 0x024F ),
  22. # ( 0x2C60, 0x2C7F ),
  23. # ( 0x16A0, 0x16F0 ),
  24. # ( 0x0370, 0x0377 ),
  25. # ( 0x037A, 0x037E ),
  26. # ( 0x0384, 0x038A ),
  27. # ( 0x038C, 0x038C ),
  28. #]
  29. #
  30. #def random_utf8_string(length):
  31. # alphabet = [
  32. # chr(code_point) for current_range in include_ranges
  33. # for code_point in range(current_range[0], current_range[1] + 1)
  34. # ]
  35. # return ''.join(random.choice(alphabet) for i in range(length))
  36. def random_image(name, th=8, tv=8, w=256, h=256):
  37. imarray = numpy.random.rand(th, tv, 3) * 255
  38. im = Image.fromarray(imarray.astype('uint8')).convert('RGBA')
  39. im = im.resize((w, h), Image.NEAREST)
  40. fname = '{}/{}.png'.format(img_path, name)
  41. im.save(fname)
  42. return fname
  43. with open(random_image(uid), 'rb') as f:
  44. rsp = requests.post(
  45. '{}/ldp'.format(host),
  46. auth=(user,password) if user or password else None,
  47. data = f.read(),
  48. )
  49. print('Response URL: {}'.format(rsp.url))
  50. print('Response code: {}'.format(rsp.status_code))
  51. print('Response message: {}'.format(rsp.text))