2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-08-12 10:10:52 -04:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2014-08-12 22:14:34 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
import random
|
|
|
|
import string
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2018-04-28 07:57:00 -04:00
|
|
|
from six.moves import range
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2015-03-13 11:23:37 -04:00
|
|
|
_string_with_symbols = (
|
|
|
|
string.digits + string.ascii_letters + ".,;:^&*-_+=#~@"
|
|
|
|
)
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def random_string(length):
|
2018-04-28 07:57:00 -04:00
|
|
|
return ''.join(random.choice(string.ascii_letters) for _ in range(length))
|
2015-03-13 11:23:37 -04:00
|
|
|
|
|
|
|
|
|
|
|
def random_string_with_symbols(length):
|
|
|
|
return ''.join(
|
2018-04-28 07:57:00 -04:00
|
|
|
random.choice(_string_with_symbols) for _ in range(length)
|
2015-03-13 11:23:37 -04:00
|
|
|
)
|
2015-06-30 05:31:59 -04:00
|
|
|
|
|
|
|
|
|
|
|
def is_ascii(s):
|
|
|
|
try:
|
|
|
|
s.encode("ascii")
|
2015-08-26 11:26:37 -04:00
|
|
|
except UnicodeEncodeError:
|
|
|
|
return False
|
2015-06-30 05:31:59 -04:00
|
|
|
except UnicodeDecodeError:
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
2017-04-25 09:38:51 -04:00
|
|
|
|
|
|
|
|
|
|
|
def to_ascii(s):
|
|
|
|
"""Converts a string to ascii if it is ascii, otherwise leave it alone.
|
|
|
|
|
|
|
|
If given None then will return None.
|
|
|
|
"""
|
|
|
|
if s is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
try:
|
|
|
|
return s.encode("ascii")
|
|
|
|
except UnicodeEncodeError:
|
|
|
|
return s
|