stringutils.py 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2014-2016 OpenMarket Ltd
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. import random
  16. import string
  17. _string_with_symbols = (
  18. string.digits + string.ascii_letters + ".,;:^&*-_+=#~@"
  19. )
  20. def random_string(length):
  21. return ''.join(random.choice(string.ascii_letters) for _ in xrange(length))
  22. def random_string_with_symbols(length):
  23. return ''.join(
  24. random.choice(_string_with_symbols) for _ in xrange(length)
  25. )
  26. def is_ascii(s):
  27. try:
  28. s.encode("ascii")
  29. except UnicodeEncodeError:
  30. return False
  31. except UnicodeDecodeError:
  32. return False
  33. else:
  34. return True