1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 01:03:24 +00:00

Adding json serializer

This commit is contained in:
shu zOMG chen
2013-08-18 21:43:14 -10:00
committed by Kevin McCarthy
parent 3e247a2efb
commit 51f0f1bacd
10 changed files with 134 additions and 55 deletions

View File

@@ -2,5 +2,5 @@
from .cassette import Cassette
# Also, make a 'load' function available
def use_cassette(path):
return Cassette.load(path)
def use_cassette(path, **kwargs):
return Cassette.load(path, **kwargs)