brynq-sdk-google-drive 0.2.0__tar.gz → 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {brynq_sdk_google_drive-0.2.0 → brynq_sdk_google_drive-1.0.0}/PKG-INFO +1 -1
- brynq_sdk_google_drive-1.0.0/brynq_sdk_google_drive/__init__.py +1 -0
- {brynq_sdk_google_drive-0.2.0/brynq_sdk/google_drive → brynq_sdk_google_drive-1.0.0/brynq_sdk_google_drive}/google_drive.py +1 -2
- {brynq_sdk_google_drive-0.2.0 → brynq_sdk_google_drive-1.0.0}/brynq_sdk_google_drive.egg-info/PKG-INFO +1 -1
- {brynq_sdk_google_drive-0.2.0 → brynq_sdk_google_drive-1.0.0}/brynq_sdk_google_drive.egg-info/SOURCES.txt +2 -2
- {brynq_sdk_google_drive-0.2.0 → brynq_sdk_google_drive-1.0.0}/brynq_sdk_google_drive.egg-info/requires.txt +1 -1
- brynq_sdk_google_drive-1.0.0/brynq_sdk_google_drive.egg-info/top_level.txt +1 -0
- {brynq_sdk_google_drive-0.2.0 → brynq_sdk_google_drive-1.0.0}/setup.py +4 -5
- brynq_sdk_google_drive-0.2.0/brynq_sdk/google_drive/__init__.py +0 -1
- brynq_sdk_google_drive-0.2.0/brynq_sdk_google_drive.egg-info/top_level.txt +0 -1
- {brynq_sdk_google_drive-0.2.0 → brynq_sdk_google_drive-1.0.0}/brynq_sdk_google_drive.egg-info/dependency_links.txt +0 -0
- {brynq_sdk_google_drive-0.2.0 → brynq_sdk_google_drive-1.0.0}/brynq_sdk_google_drive.egg-info/not-zip-safe +0 -0
- {brynq_sdk_google_drive-0.2.0 → brynq_sdk_google_drive-1.0.0}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .google_drive import GoogleDrive
|
|
@@ -6,8 +6,7 @@ from io import BytesIO
|
|
|
6
6
|
import typing
|
|
7
7
|
from googleapiclient.discovery import build
|
|
8
8
|
from googleapiclient.http import MediaFileUpload
|
|
9
|
-
from
|
|
10
|
-
|
|
9
|
+
from brynq_sdk_brynq import BrynQ
|
|
11
10
|
|
|
12
11
|
class GoogleDrive(BrynQ):
|
|
13
12
|
def __init__(self, label: Union[str, List], debug: bool = False):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
setup.py
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
brynq_sdk_google_drive/__init__.py
|
|
3
|
+
brynq_sdk_google_drive/google_drive.py
|
|
4
4
|
brynq_sdk_google_drive.egg-info/PKG-INFO
|
|
5
5
|
brynq_sdk_google_drive.egg-info/SOURCES.txt
|
|
6
6
|
brynq_sdk_google_drive.egg-info/dependency_links.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
brynq_sdk_google_drive
|
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
from setuptools import setup
|
|
2
|
-
|
|
1
|
+
from setuptools import setup, find_namespace_packages
|
|
3
2
|
|
|
4
3
|
setup(
|
|
5
4
|
name='brynq_sdk_google_drive',
|
|
6
|
-
version='0.
|
|
5
|
+
version='1.0.0',
|
|
7
6
|
description='Google Drive wrapper from BrynQ',
|
|
8
7
|
long_description='Groogle Drive wrapper from BrynQ',
|
|
9
8
|
author='BrynQ',
|
|
10
9
|
author_email='support@brynq.com',
|
|
11
|
-
packages=[
|
|
10
|
+
packages=find_namespace_packages(include=['brynq_sdk*']),
|
|
12
11
|
license='BrynQ License',
|
|
13
12
|
install_requires=[
|
|
14
|
-
'brynq-sdk-brynq>=
|
|
13
|
+
'brynq-sdk-brynq>=2',
|
|
15
14
|
'google-api-python-client>=2,<3',
|
|
16
15
|
'requests>=2,<=3'
|
|
17
16
|
],
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from brynq_sdk.google_drive.google_drive import GoogleDrive
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
brynq_sdk
|
|
File without changes
|
|
File without changes
|
|
File without changes
|