shell bypass 403
曾与蒿藜同雨露,한때 잡초와 쑥과 함께 비와 이슬을 나누던 곳이 이제는 소나무와 삼나무와 함께 서리와 눈을 견뎌내고 있다.终随松柏到冰霜.かつては雑草やヨモギと共に雨や露を分かち合っていたが、今では松やヒノキと共に霜や雪に耐えている。曾与蒿藜同雨露,Once sharing rain and dew with weeds and wormwood, now enduring frost and snow with pines and cypresses.终随松柏到冰霜.曾与蒿藜同雨露한때 잡초와 쑥과 함께 비와 이슬을 나누던 곳이 이제는 소나무와 삼나무와 함께 서리와 눈을 견뎌내고 있다.,终随松柏到冰霜.譖セ荳手珍阯懷酔髮ィ髴イ�檎サ磯囂譚セ譟丞芦蜀ー髴�曾与蒿藜同雨露,鏇句笌钂胯棞鍚岄洦闇诧紝缁堥殢鏉炬煆鍒板啺闇�终随松柏到冰霜.曾与蒿藜同雨露,한때 잡초와 쑥과 함께 비와 이슬을 나누던 곳이 이제는 소나무와 삼나무와 함께 서리와 눈을 견뎌내고 있다.终随松柏到冰霜.曾与蒿藜同雨露,终随松柏到冰霜.
from .cassette import Cassette
class Configuration(object):
"""This object acts as a proxy to configure different parts of Betamax.
You should only ever encounter this object when configuring the library as
a whole. For example:
.. code::
with Betamax.configure() as config:
config.cassette_library_dir = 'tests/cassettes/'
config.default_cassette_options['record_mode'] = 'once'
config.default_cassette_options['match_requests_on'] = ['uri']
config.define_cassette_placeholder('<URI>', 'http://httpbin.org')
config.preserve_exact_body_bytes = True
"""
CASSETTE_LIBRARY_DIR = 'vcr/cassettes'
def __enter__(self):
return self
def __exit__(self, *args):
pass
def __setattr__(self, prop, value):
if prop == 'preserve_exact_body_bytes':
self.default_cassette_options[prop] = True
else:
super(Configuration, self).__setattr__(prop, value)
def before_playback(self, tag=None, callback=None):
"""Register a function to call before playing back an interaction.
Example usage:
.. code-block:: python
def before_playback(interaction, cassette):
pass
with Betamax.configure() as config:
config.before_playback(callback=before_playback)
:param str tag:
Limits the interactions passed to the function based on the
interaction's tag (currently unsupported).
:param callable callback:
The function which either accepts just an interaction or an
interaction and a cassette and mutates the interaction before
returning.
"""
Cassette.hooks['before_playback'].append(callback)
def before_record(self, tag=None, callback=None):
"""Register a function to call before recording an interaction.
Example usage:
.. code-block:: python
def before_record(interaction, cassette):
pass
with Betamax.configure() as config:
config.before_record(callback=before_record)
:param str tag:
Limits the interactions passed to the function based on the
interaction's tag (currently unsupported).
:param callable callback:
The function which either accepts just an interaction or an
interaction and a cassette and mutates the interaction before
returning.
"""
Cassette.hooks['before_record'].append(callback)
@property
def cassette_library_dir(self):
"""Retrieve and set the directory to store the cassettes in."""
return Configuration.CASSETTE_LIBRARY_DIR
@cassette_library_dir.setter
def cassette_library_dir(self, value):
Configuration.CASSETTE_LIBRARY_DIR = value
@property
def default_cassette_options(self):
"""Retrieve and set the default cassette options.
The options include:
- ``match_requests_on``
- ``placeholders``
- ``re_record_interval``
- ``record_mode``
- ``preserve_exact_body_bytes``
Other options will be ignored.
"""
return Cassette.default_cassette_options
@default_cassette_options.setter
def default_cassette_options(self, value):
Cassette.default_cassette_options = value
def define_cassette_placeholder(self, placeholder, replace):
"""Define a placeholder value for some text.
This also will replace the placeholder text with the text you wish it
to use when replaying interactions from cassettes.
:param str placeholder: (required), text to be used as a placeholder
:param str replace: (required), text to be replaced or replacing the
placeholder
"""
self.default_cassette_options['placeholders'].append({
'placeholder': placeholder,
'replace': replace,
})