Socket
Socket
Sign inDemoInstall

ezazure

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ezazure

easy azure interface for uploading & downloading files


Maintainers
1

Readme

################################################################# ezazure: Easy Azure interface for uploading and downloading files #################################################################

Azure's python interface for uploading and downloading files is complicated and unintutive. :code:ezazure provides an easy interface to these functionalities.

To get started, check out the docs <https://lakes-legendaries.github.io/ezazure/>_!

If you will be contributing to this repo, check out the developer's guide <https://lakes-legendaries.github.io/ezazure/dev.html>_.


Quickstart


#. Install this package:

.. code-block:: bash

  pip install ezazure

#. Put your Azure connection string and container name in a :code:.ezazure file:

.. code-block:: yaml

  connection_str: AZURE_CONNECTION_STRING
  container: CONTAINER_NAME

#. Run from the command line either of the following:

.. code-block:: bash

  python -m ezazure --upload FNAME
  python -m ezazure --download FNAME

#. :code:ezazure supports regex pattern matching:

.. code-block:: bash

  python -m ezazure --download --regex FNAME.*
  python -m ezazure --upload --regex PATH/FNAME[0-9]+\.csv

#. You can also use this package as an API:

.. code-block:: python

  from ezazure import Azure


  azure = Azure()
  azure.upload(fname)
  azure.download(fname)

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc