Personal tools
Skip to content. | Skip to navigation
Savitar is a C++ implementation of 3mf loading with SIP Python bindings. 3mf is a 3D printing file format. The Python bindings.
Python job scheduling for humans. Run Python functions (or any other callable) periodically using a friendly syntax. A simple to use API for scheduling jobs, made for humans. In-process scheduler for periodic jobs. No extra processes needed! Very lightweight and no external dependencies. Excellent test coverage. Tested on Python and 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 Usage $ pip install schedule import schedule import time def job(): print("I'm working...") schedule.every(10).seconds.do(job) schedule.every(10).minutes.do(job) schedule.every().hour.do(job) schedule.every().day.at("10:30").do(job) schedule.every(5).to(10).minutes.do(job) schedule.every().monday.do(job) schedule.every().wednesday.at("13:15").do(job) schedule.every().day.at("12:42", "Europe/Amsterdam").do(job) schedule.every().minute.at(":17").do(job) def job_with_argument(name): print(f"I am {name}") schedule.every(10).seconds.do(job_with_argument, name="Peter") while True: schedule.run_pending() time
Python interface for the Linux scheduler sched_{get,set}{affinity,scheduler} functions and friends.
schema is a library for validating Python data structures, such as those obtained from config-files, forms, external services or command-line parsing, converted from JSON/YAML (or something else) to Python data-types. Python 3 version.
scikitbuild .. image:: https://img.shields.io/pypi/v/scikitbuild.svg?maxAge2592000 :target: https://pypi.python.org/pypi/scikitbuild.. image:: https://img.shields.io/pypi/dm/scikitbuild.svg?maxAge2592000 :target: https://pypi.python.org/pypi/scikitbuild.. image:: https://re quires.io/github/scikitbuild/scikitbuild/requirements.svg?branchmaster :target: ...
scikit-build Improved build system generator for CPython C/C++/Fortran/Cython extensions.Better support is available for additional compilers, build systems, cross compilation, and locating dependencies and determining their build requirements.The **scikit-build** package is fundamentally just glue between the setuptools Python module and CMake < get started, see this example < and scikit-...
Improved build system generator for CPython C/C++/Fortran/Cython extensions. Better support is available for additional compilers, build systems, cross compilation, and locating dependencies and determining their build requirements. The scikit-build package is fundamentally just glue between the setup-tools Python module and CMake.