ethancedwards8 / piston-cli

Too lazy to download languages then use this awesome CLI tool to run over 35 languages supporting command line arguments and standard input. Thanks to piston API by Engineer-man.

Home Page:https://pypi.org/project/piston-cli/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Piston CLI

built with nix

A cli tool which uses the piston api, developed by Engineerman and his team to compile over 35 languages instantly. Accepts files, paste.pythondiscord.com links and input.

Installation

With pip

# Installing the package
pip install piston-cli -U
# Help Command
piston -h

With Nix/NixOS

piston-cli is available in nixpkgs through the unstable channels.

You can install it with nix-env, or in a declarative way with configuration.nix or similar.

Flake support

piston-cli is a flake, that means you can easily add it to your flake based configuration: Disclaimer: this also means you're using the development version, you could encounter bugs. If you want to use the stable version, install it from nixpkgs.

{
	inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
	inputs.piston-cli.url = "github:piston-cli/piston-cli";

	outputs = { nixpkgs, piston-cli }:
	let
		pkgs = import nixpkgs { system = "x86_64-linux"; overlays = [ piston-cli.overlay ]; };
	in
	 {
		 # use pkgs.piston-cli-unstable here
	 };
}

For Arch/ArchBased

With yay
yay piston-cli
With paru
paru piston-cli

Or any AUR helper you use with doesn't matter. You get the point.

Example usage

Default

example usage

Shell

example shell usage

File

example file usage

Link

example link usage

Languages

example link usage

Themes

example link usage

How to run it? (Contributing)

# This will install the development and project dependencies.
poetry install

# This will install the pre-commit hooks.
poetry run task precommit

# Optionally: run pre-commit hooks to initialize them.
# You can start working on the feature after this.
poetry run task pre-commit run --all-files

# Run it
poetry run task start --help

Contributing

You can comment on the issues you would like to work on.

About

Too lazy to download languages then use this awesome CLI tool to run over 35 languages supporting command line arguments and standard input. Thanks to piston API by Engineer-man.

https://pypi.org/project/piston-cli/

License:MIT License


Languages

Language:Python 91.1%Language:Nix 4.5%Language:Shell 4.4%