FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-client/splitio/optional/loaders.py at development · splitio/python-client · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
splitio
/
python-client
Public
Notifications
You must be signed in to change notification settings
Fork
13
Star
19
Code
Issues
4
Pull requests
5
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-client
/
splitio
/
optional
/
loaders.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
30 lines (28 loc) · 1.03 KB
Breadcrumbs
python-client
/
splitio
/
optional
/
loaders.py
Copy path
File metadata and controls
30 lines (28 loc) · 1.03 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import
sys
try
:
import
asyncio
import
aiohttp
import
aiofiles
except
ImportError
:
def
missing_asyncio_dependencies
(
*
_
,
**
__
):
"""Fail if missing dependencies are used."""
raise
NotImplementedError
(
'Missing aiohttp dependency. '
'Please use `pip install splitio_client[asyncio]` to install the sdk with asyncio support'
)
aiohttp
=
missing_asyncio_dependencies
asyncio
=
missing_asyncio_dependencies
aiofiles
=
missing_asyncio_dependencies
try
:
from
requests_kerberos
import
HTTPKerberosAuth
,
OPTIONAL
except
ImportError
:
def
missing_auth_dependencies
(
*
_
,
**
__
):
"""Fail if missing dependencies are used."""
raise
NotImplementedError
(
'Missing kerberos auth dependency. '
'Please use `pip install splitio_client[kerberos]` to install the sdk with kerberos auth support'
)
HTTPKerberosAuth
=
missing_auth_dependencies
OPTIONAL
=
missing_auth_dependencies
async
def
_anext
(
it
):
return
await
it
.
__anext__
()
Back
|
FazBrowse Home
|
New Git URL