bw-essentials-core 0.1.1__tar.gz → 0.1.2__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.
Potentially problematic release.
This version of bw-essentials-core might be problematic. Click here for more details.
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/PKG-INFO +1 -1
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/data_loch/data_loch.py +16 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials_core.egg-info/PKG-INFO +1 -1
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/setup.py +1 -1
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/README.md +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/__init__.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/constants/__init__.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/constants/services.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/data_loch/__init__.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/email_client/__init__.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/email_client/email_client.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/notifications/__init__.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/notifications/teams_notification_schemas.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/notifications/teams_notifications.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/s3_utils/__init__.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/s3_utils/s3_utils.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/services/__init__.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/services/api_client.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/services/broker.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/services/market_pricer.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/services/master_data.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/services/model_portfolio_reporting.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/services/notification.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/services/trade_placement.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/services/user_app.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/services/user_portfolio.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/services/user_portfolio_reporting.py +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials_core.egg-info/SOURCES.txt +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials_core.egg-info/dependency_links.txt +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials_core.egg-info/requires.txt +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials_core.egg-info/top_level.txt +0 -0
- {bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/setup.cfg +0 -0
|
@@ -279,3 +279,19 @@ class DataLoch:
|
|
|
279
279
|
prefix = f"{branch}/{server_path}"
|
|
280
280
|
self.s3.delete_files_by_prefix(repository, prefix)
|
|
281
281
|
logger.info(f"Deleted all files under prefix {prefix}")
|
|
282
|
+
|
|
283
|
+
def delete_single_file(self, repository: str, branch: str, server_path: str) -> None:
|
|
284
|
+
"""
|
|
285
|
+
Delete a single file at the specified path in a LakeFS branch.
|
|
286
|
+
|
|
287
|
+
Args:
|
|
288
|
+
repository (str): The name of the LakeFS repository.
|
|
289
|
+
branch (str): The name of the branch within the repository.
|
|
290
|
+
server_path (str): The file path (relative to the branch) to delete.
|
|
291
|
+
"""
|
|
292
|
+
full_path = f"{branch}/{server_path}"
|
|
293
|
+
logger.info(f"Attempting to delete file at path: {full_path} in repository: {repository}")
|
|
294
|
+
|
|
295
|
+
self.s3.delete_file(repository, full_path)
|
|
296
|
+
|
|
297
|
+
logger.info(f"Successfully deleted file: {full_path} from repository: {repository}")
|
|
@@ -10,7 +10,7 @@ from setuptools import setup, find_packages
|
|
|
10
10
|
|
|
11
11
|
setup(
|
|
12
12
|
name="bw-essentials-core",
|
|
13
|
-
version="0.1.
|
|
13
|
+
version="0.1.2",
|
|
14
14
|
author="InvestorAI",
|
|
15
15
|
author_email="support+tech@investorai.in",
|
|
16
16
|
description="Reusable utilities for S3, email, Data Loch, Microsoft Teams Notifications and more.",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/email_client/__init__.py
RENAMED
|
File without changes
|
{bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/email_client/email_client.py
RENAMED
|
File without changes
|
{bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/notifications/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/services/market_pricer.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/services/notification.py
RENAMED
|
File without changes
|
{bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/services/trade_placement.py
RENAMED
|
File without changes
|
|
File without changes
|
{bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials/services/user_portfolio.py
RENAMED
|
File without changes
|
|
File without changes
|
{bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials_core.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials_core.egg-info/requires.txt
RENAMED
|
File without changes
|
{bw_essentials_core-0.1.1 → bw_essentials_core-0.1.2}/bw_essentials_core.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|