File: api_config.py

package info (click to toggle)
python-b2sdk 2.10.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,228 kB
  • sloc: python: 32,094; sh: 13; makefile: 8
file content (18 lines) | stat: -rw-r--r-- 476 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
######################################################################
#
# File: b2sdk/v2/api_config.py
#
# Copyright 2025 Backblaze Inc. All Rights Reserved.
#
# License https://www.backblaze.com/using_b2_code.html
#
######################################################################
from b2sdk import v3
from .raw_api import B2RawHTTPApi


class B2HttpApiConfig(v3.B2HttpApiConfig):
    DEFAULT_RAW_API_CLASS = B2RawHTTPApi


DEFAULT_HTTP_API_CONFIG = B2HttpApiConfig()