Python Runner

  

Latest version

Released:

If your script/program accepts inputs from a user, please enter inputs in the STDIN box above and then run your code. Enter each input on a separate line; Click on the copy button to copy your code; Click on the button to change the theme of an editor; Use this editor to practice Python online with our free Python Exercises.

A judge for your programs, run and test your programs using python

Project description

  • Using setup-python with a self hosted runner. Python distributions are only available for the same environments that GitHub Actions hosted environments are available for. If you are using an unsupported version of Ubuntu such as 19.04 or another Linux distribution such as Fedora.
  • Python Runner is a handy tool for learning Python or running Python script for daily tasks. Simply type Python code and press 'Command-R' to run it, that is all! You don't event need to save the file first!. Type and run Python code instantly. Display output as plain text or HTML.

A judge 👨🏽‍⚖️ for your programs, run and test your programs using Python

Installation

Install using pip from PyPI

or directly from GitHub if you cannot wait to test new features

Usage

Documentation

Development

Prerequisites
  • Python 3.6+
  • virtualenv
  1. Create virtual environment.
  1. Clone the repository.
  1. Install Dependencies.
  1. Run tests.
  1. Lint the project with

đź“ť Changelog

Python

See the CHANGELOG.md file for details.

:fire: Powered By

Judge0 API - Free, robust and scalable open-source online code execution system

Author

đź‘Ą Bhupesh Varshney

  • Twitter: @bhupeshimself
  • DEV: bhupesh

đź“ś License

This project is licensed under the MIT License. See the LICENSE file for details.

đź‘‹ Contributing

Please read the CONTRIBUTING guidelines for the process of submitting pull requests to us.

Release historyRelease notifications | RSS feed

1.0

0.8

0.7

0.6

Code Runner Python

Python

0.5

Python Runner File

0.4

0.3

0.2

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages. Asio driver mac download free.

Files for coderunner, version 1.0
Filename, sizeFile typePython versionUpload dateHashes
Filename, size coderunner-1.0-py3-none-any.whl (6.0 kB) File type Wheel Python version py3 Upload dateHashes
Filename, size coderunner-1.0.tar.gz (6.2 kB) File type Source Python version None Upload dateHashes
Python RunnerClose

Hashes for coderunner-1.0-py3-none-any.whl

Hashes for coderunner-1.0-py3-none-any.whl
AlgorithmHash digest
SHA256d5e4ba49e4324da3e35491395069ad5ecc82280e2a0b79aef6eee6ef3bf3c54f
MD5a7b534d676b792e1c3052b426f264ade
BLAKE2-25643e39a49686655398d6878e9215258e93464bd9fc256ea8668eea17c890f9929
Close

Hashes for coderunner-1.0.tar.gz

Hashes for coderunner-1.0.tar.gz
AlgorithmHash digest
SHA256afaaa5049061a3b2ea924a2c32789913cc00a5ed4e4c55a166073694b4c25972
MD57f207cf1d9753cd650c398fc0b9e6359
BLAKE2-25653007f2aa36bc0a0dfdf1b181b9e7387385218c8e5775cca28ab544a06aa5212

Note

This document assumes you are working from anin-development checkout of Python. If youare not then some things presented here may not work as they may dependon new features not available in earlier versions of Python.

Running¶

The shortest, simplest way of running the test suite is the following commandfrom the root directory of your checkout (after you havebuilt Python):

You may need to change this command as follows throughout this section.On most Mac OS X systems, replace ./pythonwith ./python.exe. On Windows, use python.bat. If usingPython 2.7, replace test with test.regrtest.

If you don’t have easy access to a command line, you can run the test suite froma Python or IDLE shell:

This will run the majority of tests, but exclude a small portion of them; theseexcluded tests use special kinds of resources: for example, accessing theInternet, or trying to play a sound or to display a graphical interface onyour desktop. They are disabled by default so that running the test suiteis not too intrusive. To enable some of these additional tests (and forother flags which can help debug various issues such as reference leaks), readthe help text:

If you want to run a single test file, simply specify the test file name(without the extension) as an argument. You also probably want to enableverbose mode (using -v), so that individual failures are detailed:

To run a single test case, use the unittest module, providing the importpath to the test case:

If you have a multi-core or multi-CPU machine, you can enable parallel testingusing several Python processes so as to speed up things:

If you are running a version of Python prior to 3.3 you must specify the numberof processes to run simultaneously (e.g. -j2).

Finally, if you want to run tests under a more strenuous set of settings, youcan run test as:

The various extra flags passed to Python cause it to be much stricter aboutvarious things (the -Wd flag should be -Werror at some point, but thetest suite has not reached a point where all warnings have been dealt with andso we cannot guarantee that a bug-free Python will properly complete a test runwith -Werror). The -r flag to the test runner causes it to run tests ina more random order which helps to check that the various tests do not interferewith each other. The -w flag causes failing tests to be run again to seeif the failures are transient or consistent.The -uall flag allows the use of all availableresources so as to not skip tests requiring, e.g., Internet access.

Python

To check for reference leaks (only needed if you modified C code), use the-R flag. For example, -R3:2 will first run the test 3 times to settledown the reference count, and then run it 2 more times to verify if there areany leaks.

You can also execute the Tools/scripts/run_tests.py script as found in aCPython checkout. The script tries to balance speed with thoroughness. But ifyou want the most thorough tests you should use the strenuous approach shownabove.

Unexpected Skips¶

Sometimes when running the test suite, you will see “unexpected skips”reported. These represent cases where an entire test module has beenskipped, but the test suite normally expects the tests in that module tobe executed on that platform.

Often, the cause is that an optional module hasn’t been built due to missingbuild dependencies. In these cases, the missing module reported when the testis skipped should match one of the modules reported as failing to build whenCompile and build.

In other cases, the skip message should provide enough detail to help figureout and resolve the cause of the problem (for example, the default securitysettings on some platforms will disallow some tests)

Install Python Interpreter Windows 10

Writing¶

Writing tests for Python is much like writing tests for your own code. Testsneed to be thorough, fast, isolated, consistently repeatable, and as simple aspossible. We try to have tests both for normal behaviour and for errorconditions. Tests live in the Lib/test directory, where every file thatincludes tests has a test_ prefix.

One difference with ordinary testing is that you are encouraged to rely on thetest.support module. It contains various helpers that are tailored toPython’s test suite and help smooth out common problems such as platformdifferences, resource consumption and cleanup, or warnings management.That module is not suitable for use outside of the standard library.

When you are adding tests to an existing test file, it is also recommendedthat you study the other tests in that file; it will teach you which precautionsyou have to take to make your tests robust and portable.

Benchmarks¶

Python Runner Download

Benchmarking is useful to test that a change does not degrade performance.

Python Runner Class

The Python Benchmark Suitehas a collection of benchmarks for all Python implementations. Documentationabout running the benchmarks is in the README.txt of the repo.