Online Repository for Google App Engine [closed] - python

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I have been writing a web app for some time now for Google App Engine and I just now have gotten a partner on the project. I have been working in Eclipse and writing in Python and I need to share the project with him.
What kind of repository would you suggest or could I use to share the code base with my partner? I have looked at some options like Mercurial or Git but is there anything that I can have directly update my files in the Eclipse development folder?

I recomend you to create a Git repo and use Egit, very nice git plugin for eclipse. You can set up a repo in Google Code or any other website that you like. I have sources in Bean Stalk App and bitbucket. They both work fine with git!

Related

Is there any ways to run python code from google sheets without using GAE? [closed]

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 months ago.
Improve this question
I have a parser written in python that sends some date to google sheets. But I want to trigger it from google sheets/GAS. I've deployed my app to heroku. May be it's possible to run it from heroku by triggering in google sheets. I really new to web, so any ideas will be very usefull.
It's not possible now.
Google Workspace supports only Google Apps Script as an integrated environment for Google Sheets.
You have to call your python as a task on your server or as a hook from Google Apps Script trigger.
About the hook
Create a Google Apps Script project. It's fine if you do it from the Sheet
Add the next function to the project
Install a trigger for this function
function actionTrigger(){
UrlFetchApp.fetch('https://<UR_HEROKU_APP_ENDPOINT>');
}

Running any scripting language from C++ service [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 11 months ago.
Improve this question
We have a C++ web service that helps manage and run scripts for users. We have to offer 2 APIs:
RegisterScript API: Users can register scripts for a variety of languages(Python, Ruby, JavaScript etc.) through this api
RunScript API: Users can run their previously registered scripts through this API
Right now we’re not sure how we would go about this, any pointers would be nice but we’d prefer a solution that:
Doesn’t have to start an OS process for every RunScript invocation
Doesn’t rely on running shell commands from C++
Preferably there’s an open source library/framework with support for multiple languages out of the box?
Thanks!
Jessica

How to deploy a python chatbot [closed]

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 3 years ago.
Improve this question
I am a beginner of chatbot, I have developed python code to do pattern match from an intents.json file. code works fine and can answer questions.
But how to embed this python file and intents.json file into a site as a chatbot widget? Appreciate if any good tutorial for end-to-end chatbot project. Thank you.
Browsers do not run Python, so you would need to write an API. You can use Flask to do so fairly easily. Flask's tutorial is excellent.
An alternative would be to write a Javascript version that can run in the browser. This avoids the Flask server, but then people could easily jack your chatbot.

Ruby on Rails Developed Applications [closed]

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 3 years ago.
Improve this question
I'm looking to develop a desktop (not server) web application and I have been comparing Ruby on Rails vs Django. Question is, with Django the client needs to install Python 2.5, does the client need to install anything to execute a Ruby on Rails application?
Thanks....
You can't use Django and neither Ruby on Rails to develop a desktop app. There might be some projects than can turn these projects to a desktop app but neither of them are built for Desktop App development.
These are web frameworks.
You could simply find these facts by some simple searches on the web.

What is the best way to use git with Django? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I'm starting with python and Django development and I'm creating a project that I want to share it with git. When I started the app I saw folders like "local", "lib", "bin", and "include". Should I ignore this folders or can I commit it?
There's a .gitignore "master" to django files? I found some files on google but any of them mentioned this folders.
When doing Django development in Git you'll typically want to exclude *.db files, *.pyc files, your virtualenv directory, and whatever files your IDE and OS may create (eg: DS_store, *.swp, *.swo)

Categories