Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A CLI for PyScript

License

NotificationsYou must be signed in to change notification settings

pyscript/pyscript-cli

Repository files navigation

A command-line interface forPyScript.

VersionTestcodecovpre-commit.ci statusChecked with mypy

Quickly wrap Python scripts into a HTML template, pre-configured withPyScript.

❯ pyscript Usage: pyscript [OPTIONS] COMMAND [ARGS]... Command Line Interfacefor PyScript.╭─ Options ──────────────────────────────────────────────────────────────────────────────────────╮│ --version          Show project version and exit.                                              ││ --help             Show this message and exit.                                                 │╰────────────────────────────────────────────────────────────────────────────────────────────────╯╭─ Commands ─────────────────────────────────────────────────────────────────────────────────────╮│ create  Create a new pyscript project with the passedin name, creating a new directoryin the ││         current directory. Alternatively, use`--wrap` so as to embed a python file instead.   ││ run     Creates alocal server to run the app on the path and port specified.                  │╰────────────────────────────────────────────────────────────────────────────────────────────────╯

Installation

Using Pip

$ pip install pyscript

Installing the developer setup from the a repository clone

see the Developer setup section on CONTRIBUTING page

Usage

run

Spin up a local server to run on the path and specified port

$ pyscript run<path_of_folder>

This will serve the folderpath_of_folder atlocalhost:8000 by defaultand will open the URL in a browser window. Default is current directory ifpath_of_folder is not supplied.

To use a different port, use--port option.

$ pyscript run<path_of_folder> --port 9000

To avoid opening a browser window, use--no-view option.

$ pyscript run<path_of_folder> --no-view

create

Create a new pyscript project with the passed in name, creating a new directory

$ pyscript create<name_of_app>

This will create a new directory namedname_of_app under the current directory.

The interactive prompts will further ask for information such asdescription of the app,name of the author,email of the author, etc. These of course can be provided viaoptions such as--author-name etc. Usepyscript create --help for more information.

The following files will be created:

  • index.html: start page for the project
  • pyscript.toml: project metadata and config file
  • main.py: a "Hello world" python starter module

Use --wrap to embed a python file OR a command string

  • Embed a Python script into a PyScript HTML file
$ pyscript create --wrap<filename.py>

This will generate a project i.e. a new directory namedfilename under the current directory.

Similar to the above, interactive prompts will further ask for metadata information.

The following files will be created:

  • index.html: start page for the project
  • pyscript.toml: project metadata and config file
  • main.py: contains code offilename.py

This can be overridden with the-o or--output option:

$ pyscript create --wrap<filename.py> -o<another_filename.html>

i.e. the HTML file created in the above directory will now be namedanother_filename.html

  • Very simple command examples with--command option

The-c or--command option can be used to demo very simple cases.

By default, the name of the project folder created will bepyscript-command-app with the HTML file namedindex.html.

-o/--output option can be used with the-c/--command option to configure name of the project folder as wellas the name of the resulting HTML file.

$ pyscript create --wrap -c'print("Hello World!")' -o<output_filename.html>

This will generate a project i.e. a new directory namedoutput_filename under the current directory.

Similar to the above, interactive prompts will further ask for metadata information.

The following files will be created:

  • output_filename.html: start page for the project
  • pyscript.toml: project metadata and config file
  • main.py: contains code of the command string passed via-c/--command

About

A CLI for PyScript

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors11


[8]ページ先頭

©2009-2025 Movatter.jp