Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
This post was edited and submitted for review 10 months ago and failed to reopen the post:
Original close reason(s) were not resolved
Improve this question
I am building an Azure Data Factory pipeline and I would like to know how to get this parameter into the python script.
The python script is located in Databricks (DBFS) and is run from Azure DataFactory. So, in my ADF pipeline, I have some parameters which I'd like to introduce and use them insinde the python script.
Any idea on how does it work?
Post an answer to end this question:
Import argv from sys and then use argv[1] to get the parameter in databricks activity.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 days ago.
Improve this question
I have python service project (old, not written well) to get data from third party using web socket client, which is not stable. In order to improve trouble shooting, I would like convert it c# solution.
convert python source code to c#
find all nudget packages to matches with python library
Thanks.
try to find a easy way to do conversion.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I have, python code with i want to execute from google sheet.Maybe it is possible to do it with containers or it is not possible ?
It's possible using formulas.
Search: https://www.google.com/search?q=can+you+run+code+on+google+sheets
A tutorial:
https://towardsdatascience.com/using-r-and-python-in-google-sheets-formulas-b397b302098?gi=1610c314ad3e
With a bit of setup, you can create spreadsheet formulas for others to use that execute R, Python, or practically any programming language code!
^ excerpt from the tutorial
You could also try seeing if this topic helps: Trigger python code from Google spreadsheets?
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I'm running Node-RED on a raspberry pi. I want to trigger a flow at the end of a python script I'm running on the same rpi. What's the easiest input node to trigger and what would be an example of the python code to use with it? I'd like to pass a string variable back
Taking best to be easiest then the http-in node is probably best
And using something like this will work:
import urllib2
urllib2.urlopen("http://localhost:1880/start").read()
Where the http-in node has been configured to listen on /start
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
Is there any known way to do realtime collaboration stuff (like Google Docs) in Python (not thru the browser)? I'm working on a program, and would like to add said feature to it.
Thanks
You can try Dweet, which is a service that stores JSON data in key values pairs. You can use one of the client libraries listed on their website or you could simply make a request like so:
urllib.urlopen('https://dweet.io/dweet/for/my-thing-name?dweet=awesome')
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm new to Python. This is the code I am trying to use, basically I am trying to start by adding a hosted zone:
http://ijabour.com/myfaceapp/build/boto/bin/route53
The function for this is: create
If I want to add a hosted zone called "test.com", how would I use this library to do this? I want to know how to involve a specific function in this python file and parse an argument to it.
When you want to call the create function in that module, just import the module and call the create function.
import route53
conn = .... # init connection here
route53.create(conn, "test.com")