Giter VIP home page Giter VIP logo

py-caller's Introduction

py-caller

Use Streamlit to configure json for path to python or pipenv, and repositories to script locations. Read python file, and run python files.

  1. Exhibit that a streamlit app can use submodule to run python scripts, and results can be shown in the web browser.
    pipenv install streamlit
    pipenv run streamlit run app.py
  1. Edit paths in python_paths and repos.json to your local paths. Can be done from the app, localhost:8501

  2. To test

mkdir caller-test
cd caller-test
touch caller_test.py

Add following to caller_test.py

import argparse

parser = argparse.ArgumentParser(description="Argparse example")
parser.add_argument("-t", "--test", dest="test", action="store_true", default=False, help="it's a boolean")

args = parser.parse_args()
print("You made it into caller_test.py!")
print("\n")
if args.test:
    print("... and you activated it's alternate ending.")
    print("\n")
print("Goodbye.")

Add path to caller-test dir to repos.json, save. Use app to read and / or run caller_test.py. Should work with Python 2 or Python 3. Use optional arguments like -t (--test) or -h (--help) to see help output captured and displayed in the browser.

Removing the import argparse line from the script, the app should display both the import error from the called script, as well as the CalledProcessError for the subprocess.

py-caller's People

Contributors

knurts avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.