Ongeveer 11.200 resultaten
Koppelingen in nieuw tabblad openen
  1. subprocess — Subprocess management — Python 3.14.2 …

    2 dagen geleden · Source code: Lib/subprocess.py The subprocess module allows you to spawn new processes, connect to their input/output/error pipes, and obtain their return codes.

  2. Subprocesses — Python 3.12.12 documentation

    12 mrt. 2012 · Because all asyncio subprocess functions are asynchronous and asyncio provides many tools to work with such functions, it is easy to execute and monitor multiple …

  3. The Python Standard Library — Python 3.14.2 documentation

    3 dagen geleden · The library contains built-in modules (written in C) that provide access to system functionality such as file I/O that would otherwise be inaccessible to Python …

  4. optparse — Parser for command line options - Python

    2 dagen geleden · click is a third party argument processing library (originally based on optparse), which allows command line applications to be developed as a set of decorated command …

  5. asyncio — Asynchronous I/O — Python 3.14.2 documentation

    asyncio is a library to write concurrent code using the async/await syntax. asyncio is used as a foundation for multiple Python asynchronous frameworks that provide high-performance …

  6. Concurrent Execution — Python 3.14.2 documentation

    3 dagen geleden · Older high-level API Replacing Older Functions with the subprocess Module Replacing /bin/sh shell command substitution Replacing shell pipeline Replacing os.system() …

  7. shlex — Simple lexical analysis — Python 3.14.2 documentation

    3 dagen geleden · While this is short of a full parser for shells (which would be out of scope for the standard library, given the multiplicity of shells out there), it does allow you to perform …

  8. Security Considerations — Python 3.14.2 documentation

    3 dagen geleden · The -I command line option can be used to run Python in isolated mode. When it cannot be used, the -P option or the PYTHONSAFEPATH environment variable can be used to …

  9. multiprocessing — Process-based parallelism — Python 3.14.2 …

    2 dagen geleden · Using a specific context of your own within a library can lead to incompatibilities with the rest of the library user’s application. Always document if your library …

  10. os — Miscellaneous operating system interfaces — Python 3.14.2 ...

    Since Python 3.4, file descriptors created by Python are non-inheritable by default. On UNIX, non-inheritable file descriptors are closed in child processes at the execution of a new program, …