-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Requirement: Python SDK for Windows Azure #17
Comments
you will actually need Windows Azure Command-Line Tools for Mac and Linux to make this work http://www.windowsazure.com/en-us/develop/nodejs/how-to-guides/command-line-tools/#Download |
I do not think that this assessment is correct. if you do a pip install either on osx, linux or other computer of azure (do it in virtual env) you can find under site packages the azure dir. if you go in it you find several pure python functions that can be used to access azure directly from python. The reason way you used the command line toll is a) it is well documented here is evidence that python can most likely be used without the use of the command line tools. I took those from the service management service in azure SDK: def create_virtual_machine_deployment(self, service_name, deployment_name, deployment_slot, label, role_name, system_config, os_virtual_hard_disk, network_config=None, availability_set_name=None, data_virtual_hard_disks=None, role_size=None, role_type='PersistentVMRole'): def list_os_images(self): On Apr 4, 2013, at 6:34 PM, ppnewaskar [email protected] wrote:
|
Just following up on the installing Azure Command-Line Tools for Linux, I was guided to install nodejs and npm (nodejs package manager) from here: Node.js HOWTO: Install Node+NPM as user (not root) under Unix OSes |
with virtualenv sudo is not needed |
i think i put a try except around it so we do not need azure to be present. we may want to do this with the other cloud libs also. |
We are using Windows Azure in flask cm.
Go and download SDKs in your local machine to execute 'azure' command tool on linux shell.
Downloads sdk
Without the installation of the SDK, users will face the following errors:
We probably are able to use client libraries by downloading it.
pip install azure
supports client libraries. Please refer: Install Python and the SDKThe text was updated successfully, but these errors were encountered: