Need help write new data in remote storage with APIs exposed from dvc

Is there any way, git terminal dependency can be reduced or terminal usage can be minimised or dvc.api exposes some api which can contribute to data writing process also?

Could you elaborate on your use case please? What do you mean by “data writing”?

Suppose you have stored some data into S3 and then have to do versioning on it but instead of using terminal for commiting and pushing data version changes, we use dvc APIs to perform this operations. Is this clear?

While they can be used together, they serve different purposes.

Reducing Git Terminal Dependency:

Git GUI Clients: Git has several graphical user interface (GUI) clients available that can reduce your reliance on the command-line interface. These clients provide a more visual way to interact with Git repositories. Examples include GitHub Desktop, GitKraken, and Sourcetree.

Aliases: You can create Git aliases to shorten frequently used commands. This makes it easier to interact with Git via the terminal. For example, you can create an alias to replace a long Git command with a shorter abbreviation.

Shell Customization: Customize your shell prompt to display information about the current branch and Git status. This can provide visual feedback without needing to run Git commands explicitly.

Git Integrations: Many integrated development environments (IDEs) and code editors have built-in Git integrations. You can use these tools to perform Git operations without leaving your coding environment.

Reducing DVC Terminal Dependency:

DVC GUI: DVC also offers a graphical user interface called DVC Studio, which provides a visual way to manage data versioning and pipelines. It can reduce your reliance on the terminal for DVC-related tasks.

DVC API: While DVC doesn’t have a native API for data writing, you can interact with DVC programmatically using its Python library. You can write custom scripts or use DVC’s Python API to automate data versioning and pipeline management. However, this would still involve some degree of scripting or programming.

Scripting: You can write scripts or automation workflows in Python or other programming languages to interact with DVC and perform data-related tasks. This allows you to encapsulate DVC commands within scripts and execute them as needed.

In summary, while you can reduce your reliance on the terminal for Git and DVC tasks through GUI tools, aliases, and integrations, there may still be situations where you need to use the command line for more advanced operations or automation. Additionally, DVC does offer a Python API that can be used for programmatic data versioning, but you would need to write scripts or code to utilize it effectively.