brynq-sdk-task-scheduler 2.0.3__tar.gz → 2.0.5__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq_sdk_task_scheduler
3
- Version: 2.0.3
3
+ Version: 2.0.5
4
4
  Summary: Code to execute tasks in BrynQ.com with the task scheduler
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -0,0 +1 @@
1
+ from brynq_sdk.task_scheduler.task_scheduler import TaskScheduler
@@ -9,11 +9,11 @@ import pandas as pd
9
9
  import json
10
10
  import pymysql
11
11
  import requests
12
- from brynq_sdk_mandrill import MailClient
13
- from brynq_sdk_functions import Functions
14
- from brynq_sdk_mysql import MySQL
15
- from brynq_sdk_elastic import Elastic
16
- from brynq_sdk_brynq import BrynQ
12
+ from brynq_sdk.mandrill import MailClient
13
+ from brynq_sdk.functions import Functions
14
+ from brynq_sdk.mysql import MySQL
15
+ from brynq_sdk.elastic import Elastic
16
+ from brynq_sdk.brynq import BrynQ
17
17
  import warnings
18
18
  import re
19
19
  LOGGING_OPTIONS = Literal['MYSQL', 'ELASTIC']
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq-sdk-task-scheduler
3
- Version: 2.0.3
3
+ Version: 2.0.5
4
4
  Summary: Code to execute tasks in BrynQ.com with the task scheduler
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -2,7 +2,7 @@ from setuptools import setup, find_namespace_packages
2
2
 
3
3
  setup(
4
4
  name='brynq_sdk_task_scheduler',
5
- version='2.0.3',
5
+ version='2.0.5',
6
6
  description='Code to execute tasks in BrynQ.com with the task scheduler',
7
7
  long_description='Code to execute tasks in the BrynQ.com platform with the task scheduler',
8
8
  author='BrynQ',
@@ -1 +0,0 @@
1
- from brynq_sdk_task_scheduler.brynq_sdk.task_scheduler.task_scheduler import TaskScheduler