brynq-sdk-factorial 1.0.2__tar.gz → 1.0.3__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_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/PKG-INFO +1 -1
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial/__init__.py +1 -0
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial/companies.py +7 -4
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial/compensations.py +7 -4
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial/contracts.py +5 -3
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial/costcenter.py +7 -4
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial/custom_fields.py +7 -4
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial/employees.py +5 -3
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial/files.py +2 -2
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial/locations.py +5 -3
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial/payroll.py +5 -3
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial/teams.py +7 -4
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial/workschedules.py +5 -3
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial.egg-info/PKG-INFO +1 -1
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/setup.py +1 -1
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial.egg-info/SOURCES.txt +0 -0
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial.egg-info/dependency_links.txt +0 -0
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial.egg-info/not-zip-safe +0 -0
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial.egg-info/requires.txt +0 -0
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial.egg-info/top_level.txt +0 -0
- {brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/setup.cfg +0 -0
|
@@ -24,7 +24,8 @@ class Companies:
|
|
|
24
24
|
result_data = pd.DataFrame()
|
|
25
25
|
while has_next_page:
|
|
26
26
|
response = self.factorial.session.get(url=f'{self.factorial.base_url}{self.base_endpoint}',
|
|
27
|
-
params=params
|
|
27
|
+
params=params,
|
|
28
|
+
timeout=self.factorial.timeout)
|
|
28
29
|
response.raise_for_status()
|
|
29
30
|
response_data = response.json()
|
|
30
31
|
result_data = pd.concat([result_data, pd.DataFrame(response_data['data'])])
|
|
@@ -49,7 +50,8 @@ class Companies:
|
|
|
49
50
|
result_data = pd.DataFrame()
|
|
50
51
|
while has_next_page:
|
|
51
52
|
response = self.factorial.session.get(url=f'{self.factorial.base_url}{self.base_endpoint}',
|
|
52
|
-
params=params
|
|
53
|
+
params=params,
|
|
54
|
+
timeout=self.factorial.timeout)
|
|
53
55
|
response.raise_for_status()
|
|
54
56
|
response_data = response.json()
|
|
55
57
|
result_data = pd.concat([result_data, pd.DataFrame(response_data['data'])])
|
|
@@ -60,12 +62,13 @@ class Companies:
|
|
|
60
62
|
|
|
61
63
|
def update(self, company_id: str, data: dict) -> requests.Response:
|
|
62
64
|
response = self.factorial.session.put(url=f'{self.factorial.base_url}{self.base_endpoint}/{company_id}',
|
|
63
|
-
json=data
|
|
65
|
+
json=data,
|
|
66
|
+
timeout=self.factorial.timeout)
|
|
64
67
|
response.raise_for_status()
|
|
65
68
|
return response
|
|
66
69
|
|
|
67
70
|
def delete(self, company_id: str) -> requests.Response:
|
|
68
|
-
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{company_id}')
|
|
71
|
+
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{company_id}', timeout=self.factorial.timeout)
|
|
69
72
|
response.raise_for_status()
|
|
70
73
|
return response
|
|
71
74
|
|
{brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial/compensations.py
RENAMED
|
@@ -22,7 +22,8 @@ class Compensations:
|
|
|
22
22
|
result_data = pd.DataFrame()
|
|
23
23
|
while has_next_page:
|
|
24
24
|
response = self.factorial.session.get(url=f'{self.factorial.base_url}{self.base_endpoint}compensations',
|
|
25
|
-
params=params
|
|
25
|
+
params=params,
|
|
26
|
+
timeout=self.factorial.timeout)
|
|
26
27
|
response.raise_for_status()
|
|
27
28
|
response_data = response.json()
|
|
28
29
|
result_data = pd.concat([result_data, pd.DataFrame(response_data['data'])])
|
|
@@ -52,7 +53,8 @@ class Compensations:
|
|
|
52
53
|
result_data = pd.DataFrame()
|
|
53
54
|
while has_next_page:
|
|
54
55
|
response = self.factorial.session.get(url=f'{self.factorial.base_url}{self.base_endpoint}taxonomies',
|
|
55
|
-
params=params
|
|
56
|
+
params=params,
|
|
57
|
+
timeout=self.factorial.timeout)
|
|
56
58
|
response.raise_for_status()
|
|
57
59
|
response_data = response.json()
|
|
58
60
|
result_data = pd.concat([result_data, pd.DataFrame(response_data['data'])])
|
|
@@ -64,12 +66,13 @@ class Compensations:
|
|
|
64
66
|
|
|
65
67
|
def update(self, compensation_id: str, data: dict) -> requests.Response:
|
|
66
68
|
response = self.factorial.session.put(url=f'{self.factorial.base_url}{self.base_endpoint}/{compensation_id}',
|
|
67
|
-
json=data
|
|
69
|
+
json=data,
|
|
70
|
+
timeout=self.factorial.timeout)
|
|
68
71
|
response.raise_for_status()
|
|
69
72
|
return response
|
|
70
73
|
|
|
71
74
|
def delete(self, compensation_id: str) -> requests.Response:
|
|
72
|
-
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{compensation_id}')
|
|
75
|
+
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{compensation_id}', timeout=self.factorial.timeout)
|
|
73
76
|
response.raise_for_status()
|
|
74
77
|
return response
|
|
75
78
|
|
|
@@ -23,7 +23,8 @@ class Contracts:
|
|
|
23
23
|
result_data = pd.DataFrame()
|
|
24
24
|
while has_next_page:
|
|
25
25
|
response = self.factorial.session.get(url=f'{self.factorial.base_url}{self.base_endpoint}',
|
|
26
|
-
params=params
|
|
26
|
+
params=params,
|
|
27
|
+
timeout=self.factorial.timeout)
|
|
27
28
|
response.raise_for_status()
|
|
28
29
|
response_data = response.json()
|
|
29
30
|
result_data = pd.concat([result_data, pd.DataFrame(response_data['data'])])
|
|
@@ -35,12 +36,13 @@ class Contracts:
|
|
|
35
36
|
|
|
36
37
|
def update(self, contract_id: str, data: dict) -> requests.Response:
|
|
37
38
|
response = self.factorial.session.put(url=f'{self.factorial.base_url}{self.base_endpoint}/{contract_id}',
|
|
38
|
-
json=data
|
|
39
|
+
json=data,
|
|
40
|
+
timeout=self.factorial.timeout)
|
|
39
41
|
response.raise_for_status()
|
|
40
42
|
return response
|
|
41
43
|
|
|
42
44
|
def delete(self, contract_id: str) -> requests.Response:
|
|
43
|
-
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{contract_id}')
|
|
45
|
+
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{contract_id}', timeout=self.factorial.timeout)
|
|
44
46
|
response.raise_for_status()
|
|
45
47
|
return response
|
|
46
48
|
|
|
@@ -25,7 +25,8 @@ class Costcenter:
|
|
|
25
25
|
result_data = pd.DataFrame()
|
|
26
26
|
while has_next_page:
|
|
27
27
|
response = self.factorial.session.get(url=f'{self.factorial.base_url}{self.base_endpoint}',
|
|
28
|
-
params=params
|
|
28
|
+
params=params,
|
|
29
|
+
timeout=self.factorial.timeout)
|
|
29
30
|
response.raise_for_status()
|
|
30
31
|
response_data = response.json()
|
|
31
32
|
result_data = pd.concat([result_data, pd.DataFrame(response_data['data'])])
|
|
@@ -52,7 +53,8 @@ class Costcenter:
|
|
|
52
53
|
result_data = pd.DataFrame()
|
|
53
54
|
while has_next_page:
|
|
54
55
|
response = self.factorial.session.get(url=f'{self.factorial.base_url}/resources/finance/cost_center_memberships',
|
|
55
|
-
params=params
|
|
56
|
+
params=params,
|
|
57
|
+
timeout=self.factorial.timeout)
|
|
56
58
|
response.raise_for_status()
|
|
57
59
|
response_data = response.json()
|
|
58
60
|
result_data = pd.concat([result_data, pd.DataFrame(response_data['data'])])
|
|
@@ -64,12 +66,13 @@ class Costcenter:
|
|
|
64
66
|
|
|
65
67
|
def update(self, costcenter_id: str, data: dict) -> requests.Response:
|
|
66
68
|
response = self.factorial.session.put(url=f'{self.factorial.base_url}{self.base_endpoint}/{costcenter_id}',
|
|
67
|
-
json=data
|
|
69
|
+
json=data,
|
|
70
|
+
timeout=self.factorial.timeout)
|
|
68
71
|
response.raise_for_status()
|
|
69
72
|
return response
|
|
70
73
|
|
|
71
74
|
def delete(self, costcenter_id: str) -> requests.Response:
|
|
72
|
-
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{costcenter_id}')
|
|
75
|
+
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{costcenter_id}', timeout=self.factorial.timeout)
|
|
73
76
|
response.raise_for_status()
|
|
74
77
|
return response
|
|
75
78
|
|
{brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial/custom_fields.py
RENAMED
|
@@ -28,7 +28,8 @@ class CustomFields:
|
|
|
28
28
|
result_data = pd.DataFrame()
|
|
29
29
|
while has_next_page:
|
|
30
30
|
response = self.factorial.session.get(url=f'{self.factorial.base_url}{self.base_endpoint}',
|
|
31
|
-
params=params
|
|
31
|
+
params=params,
|
|
32
|
+
timeout=self.factorial.timeout)
|
|
32
33
|
response.raise_for_status()
|
|
33
34
|
response_data = response.json()
|
|
34
35
|
result_data = pd.concat([result_data, pd.DataFrame(response_data['data'])])
|
|
@@ -39,12 +40,13 @@ class CustomFields:
|
|
|
39
40
|
|
|
40
41
|
def update(self, contract_id: str, data: dict) -> requests.Response:
|
|
41
42
|
response = self.factorial.session.put(url=f'{self.factorial.base_url}{self.base_endpoint}/{self.base_endpoint}',
|
|
42
|
-
json=data
|
|
43
|
+
json=data,
|
|
44
|
+
timeout=self.factorial.timeout)
|
|
43
45
|
response.raise_for_status()
|
|
44
46
|
return response
|
|
45
47
|
|
|
46
48
|
def delete(self, contract_id: str) -> requests.Response:
|
|
47
|
-
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{self.base_endpoint}')
|
|
49
|
+
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{self.base_endpoint}', timeout=self.factorial.timeout)
|
|
48
50
|
response.raise_for_status()
|
|
49
51
|
return response
|
|
50
52
|
|
|
@@ -68,6 +70,7 @@ class CustomFields:
|
|
|
68
70
|
data[param] = value
|
|
69
71
|
|
|
70
72
|
response = self.factorial.session.post(url=f'{self.factorial.base_url}{self.base_endpoint}/{self.base_endpoint}',
|
|
71
|
-
data=data
|
|
73
|
+
data=data,
|
|
74
|
+
timeout=self.factorial.timeout)
|
|
72
75
|
response.raise_for_status()
|
|
73
76
|
return response
|
|
@@ -30,7 +30,8 @@ class Employees:
|
|
|
30
30
|
result_data = pd.DataFrame()
|
|
31
31
|
while has_next_page:
|
|
32
32
|
response = self.factorial.session.get(url=f'{self.factorial.base_url}{self.base_endpoint}',
|
|
33
|
-
params=params
|
|
33
|
+
params=params,
|
|
34
|
+
timeout=self.factorial.timeout)
|
|
34
35
|
response.raise_for_status()
|
|
35
36
|
response_data = response.json()
|
|
36
37
|
result_data = pd.concat([result_data, pd.DataFrame(response_data['data'])])
|
|
@@ -42,12 +43,13 @@ class Employees:
|
|
|
42
43
|
|
|
43
44
|
def update(self, employee_id: str, data: dict) -> requests.Response:
|
|
44
45
|
response = self.factorial.session.put(url=f'{self.factorial.base_url}{self.base_endpoint}/{employee_id}',
|
|
45
|
-
json=data
|
|
46
|
+
json=data,
|
|
47
|
+
timeout=self.factorial.timeout)
|
|
46
48
|
response.raise_for_status()
|
|
47
49
|
return response
|
|
48
50
|
|
|
49
51
|
def delete(self, employee_id: str) -> requests.Response:
|
|
50
|
-
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{employee_id}')
|
|
52
|
+
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{employee_id}', timeout=self.factorial.timeout)
|
|
51
53
|
response.raise_for_status()
|
|
52
54
|
return response
|
|
53
55
|
|
|
@@ -9,12 +9,12 @@ class Files:
|
|
|
9
9
|
self.base_endpoint = '/core/employees'
|
|
10
10
|
|
|
11
11
|
def get(self) -> pd.DataFrame:
|
|
12
|
-
response = requests.get(f'{self.core.factorial.base_url_v1}{self.base_endpoint}')
|
|
12
|
+
response = requests.get(f'{self.core.factorial.base_url_v1}{self.base_endpoint}', timeout=self.factorial.timeout)
|
|
13
13
|
response.raise_for_status()
|
|
14
14
|
return pd.DataFrame(response.json())
|
|
15
15
|
|
|
16
16
|
def update(self, employee_id: str, data: dict) -> requests.Response:
|
|
17
|
-
response = requests.put(f'{self.core.factorial.base_url_v1}{self.base_endpoint}/{employee_id}', json=data)
|
|
17
|
+
response = requests.put(f'{self.core.factorial.base_url_v1}{self.base_endpoint}/{employee_id}', json=data, timeout=self.factorial.timeout)
|
|
18
18
|
response.raise_for_status()
|
|
19
19
|
return response
|
|
20
20
|
|
|
@@ -22,7 +22,8 @@ class Locations:
|
|
|
22
22
|
result_data = pd.DataFrame()
|
|
23
23
|
while has_next_page:
|
|
24
24
|
response = self.factorial.session.get(url=f'{self.factorial.base_url}{self.base_endpoint}',
|
|
25
|
-
params=params
|
|
25
|
+
params=params,
|
|
26
|
+
timeout=self.factorial.timeout)
|
|
26
27
|
response.raise_for_status()
|
|
27
28
|
response_data = response.json()
|
|
28
29
|
result_data = pd.concat([result_data, pd.DataFrame(response_data['data'])])
|
|
@@ -34,12 +35,13 @@ class Locations:
|
|
|
34
35
|
|
|
35
36
|
def update(self, location_id: str, data: dict) -> requests.Response:
|
|
36
37
|
response = self.factorial.session.put(url=f'{self.factorial.base_url}{self.base_endpoint}/{location_id}',
|
|
37
|
-
json=data
|
|
38
|
+
json=data,
|
|
39
|
+
timeout=self.factorial.timeout)
|
|
38
40
|
response.raise_for_status()
|
|
39
41
|
return response
|
|
40
42
|
|
|
41
43
|
def delete(self, location_id: str) -> requests.Response:
|
|
42
|
-
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{location_id}')
|
|
44
|
+
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{location_id}', timeout=self.factorial.timeout)
|
|
43
45
|
response.raise_for_status()
|
|
44
46
|
return response
|
|
45
47
|
|
|
@@ -27,7 +27,8 @@ class Payroll:
|
|
|
27
27
|
result_data = pd.DataFrame()
|
|
28
28
|
while has_next_page:
|
|
29
29
|
response = self.factorial.session.get(url=f'{self.factorial.base_url}{self.base_endpoint}',
|
|
30
|
-
params=params
|
|
30
|
+
params=params,
|
|
31
|
+
timeout=self.factorial.timeout)
|
|
31
32
|
response.raise_for_status()
|
|
32
33
|
response_data = response.json()
|
|
33
34
|
result_data = pd.concat([result_data, pd.DataFrame(response_data['data'])])
|
|
@@ -39,12 +40,13 @@ class Payroll:
|
|
|
39
40
|
|
|
40
41
|
def update(self, supplement_id: str, data: dict) -> requests.Response:
|
|
41
42
|
response = self.factorial.session.put(url=f'{self.factorial.base_url}{self.base_endpoint}/{supplement_id}',
|
|
42
|
-
json=data
|
|
43
|
+
json=data,
|
|
44
|
+
timeout=self.factorial.timeout)
|
|
43
45
|
response.raise_for_status()
|
|
44
46
|
return response
|
|
45
47
|
|
|
46
48
|
def delete(self, supplement_id: str) -> requests.Response:
|
|
47
|
-
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{supplement_id}')
|
|
49
|
+
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{supplement_id}', timeout=self.factorial.timeout)
|
|
48
50
|
response.raise_for_status()
|
|
49
51
|
return response
|
|
50
52
|
|
|
@@ -22,7 +22,8 @@ class Teams:
|
|
|
22
22
|
result_data = pd.DataFrame()
|
|
23
23
|
while has_next_page:
|
|
24
24
|
response = self.factorial.session.get(url=f'{self.factorial.base_url}{self.base_endpoint}teams',
|
|
25
|
-
params=params
|
|
25
|
+
params=params,
|
|
26
|
+
timeout=self.factorial.timeout)
|
|
26
27
|
response.raise_for_status()
|
|
27
28
|
response_data = response.json()
|
|
28
29
|
result_data = pd.concat([result_data, pd.DataFrame(response_data['data'])])
|
|
@@ -48,7 +49,8 @@ class Teams:
|
|
|
48
49
|
result_data = pd.DataFrame()
|
|
49
50
|
while has_next_page:
|
|
50
51
|
response = self.factorial.session.get(url=f'{self.factorial.base_url}{self.base_endpoint}memberships',
|
|
51
|
-
params=params
|
|
52
|
+
params=params,
|
|
53
|
+
timeout=self.factorial.timeout)
|
|
52
54
|
response.raise_for_status()
|
|
53
55
|
response_data = response.json()
|
|
54
56
|
result_data = pd.concat([result_data, pd.DataFrame(response_data['data'])])
|
|
@@ -60,12 +62,13 @@ class Teams:
|
|
|
60
62
|
|
|
61
63
|
def update(self, team_id: str, data: dict) -> requests.Response:
|
|
62
64
|
response = self.factorial.session.put(url=f'{self.factorial.base_url}{self.base_endpoint}teams/{team_id}',
|
|
63
|
-
json=data
|
|
65
|
+
json=data,
|
|
66
|
+
timeout=self.factorial.timeout)
|
|
64
67
|
response.raise_for_status()
|
|
65
68
|
return response
|
|
66
69
|
|
|
67
70
|
def delete(self, team_id: str) -> requests.Response:
|
|
68
|
-
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}teams/{team_id}')
|
|
71
|
+
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}teams/{team_id}', timeout=self.factorial.timeout)
|
|
69
72
|
response.raise_for_status()
|
|
70
73
|
return response
|
|
71
74
|
|
{brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial/workschedules.py
RENAMED
|
@@ -23,7 +23,8 @@ class Workschedules:
|
|
|
23
23
|
result_data = pd.DataFrame()
|
|
24
24
|
while has_next_page:
|
|
25
25
|
response = self.factorial.session.get(url=f'{self.factorial.base_url}{self.base_endpoint}',
|
|
26
|
-
params=params
|
|
26
|
+
params=params,
|
|
27
|
+
timeout=self.factorial.timeout)
|
|
27
28
|
response.raise_for_status()
|
|
28
29
|
response_data = response.json()
|
|
29
30
|
result_data = pd.concat([result_data, pd.DataFrame(response_data['data'])])
|
|
@@ -35,12 +36,13 @@ class Workschedules:
|
|
|
35
36
|
|
|
36
37
|
def update(self, workschedule_id: str, data: dict) -> requests.Response:
|
|
37
38
|
response = self.factorial.session.put(url=f'{self.factorial.base_url}{self.base_endpoint}/{workschedule_id}',
|
|
38
|
-
json=data
|
|
39
|
+
json=data,
|
|
40
|
+
timeout=self.factorial.timeout)
|
|
39
41
|
response.raise_for_status()
|
|
40
42
|
return response
|
|
41
43
|
|
|
42
44
|
def delete(self, workschedule_id: str) -> requests.Response:
|
|
43
|
-
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{workschedule_id}')
|
|
45
|
+
response = self.factorial.session.delete(url=f'{self.factorial.base_url}{self.base_endpoint}/{workschedule_id}', timeout=self.factorial.timeout)
|
|
44
46
|
response.raise_for_status()
|
|
45
47
|
return response
|
|
46
48
|
|
{brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial.egg-info/not-zip-safe
RENAMED
|
File without changes
|
{brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial.egg-info/requires.txt
RENAMED
|
File without changes
|
{brynq_sdk_factorial-1.0.2 → brynq_sdk_factorial-1.0.3}/brynq_sdk_factorial.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|