Personal tools
Skip to content. | Skip to navigation
***************** Simple Salesforce ***************** Simple Salesforce is a basic Salesforce.com REST API client built for Python 3.6, 3.7 and 3.8. The goal is to provide a very low-level interface to the REST Resource and APEX API, returning a dictionary of the API JSON response.
The simpleaudio module provides asynchronous, cross-platform, dependency-free audio playback capability for Python 3.
An short, easy to use, safe and reasonably extensible expression evaluator. Designed for things like in a website where you want to allow the user to generate a string, or a number from some other input, without allowing full eval() or other unsafe or needlessly complex linguistics.
simplejson is a simple, fast, complete, correct and extensible JSON <http://json.org> encoder and decoder for Python. It is pure Python code with no dependencies, but includes an optional C extension for a serious speed boost. The encoder may be subclassed to provide serialization in any kind of situation, without any special support by the objects to be serialized (somewhat like pickle). The decoder can handle incoming JSON strings of any specified encoding (UTF-8 by default). simplejson is the externally maintained development version of the JSON library included with Python. It gets updated more regularly than the JSON module in the Python stdlib.
simplejson is a simple, fast, complete, correct and extensible JSON <http://json.org> encoder and decoder for Python 2.5+ and python3.3+ It is pure Python code with no dependencies, but includes an optional C extension for a serious speed boost. The encoder may be subclassed to provide serialization in any kind of situation, without any special support by the objects to be serialized (somewhat like pickle). The decoder can handle incoming JSON strings of any specified encoding (UTF-8 by default). simplejson is the externally maintained development version of the json library included with Python 2.6 and Python 3.0, but maintains backwards compatibility with Python 2.5. It gets updated more regularly than the json module in the python stdlib.
Simpleline is a Python3 library for creating text UI. It is designed to be used with line-based machines and tools (e.g. serial console) so that every new line is appended to the bottom of the screen. Printed lines are never rewritten!
Single-source: There is only one truth single-source helps to reduce the entropy in your Python project by keeping single source of truth. The targets of this library are modern Python projects which want to have one source of truth for version, name and etc. At the moment, the library provides the single point for a package version. It supports Python 3.6+. Quick start from pathlib import Path from single_source import get_version __version__ = get_version(__name__, Path(__file__).parent.parent) Root of the problem You use modern pyproject.toml and want to keep the version of your package here: [tool.poetry] name = "modern-project" version = "0.1.0" Let's imagine the version of your package is required in some place of the code. Since you need the version in your Python code, you may want to duplicate the version by putting it as a string variable to some python file: __version__ = "0.1.0"
PEP 443 proposed to expose a mechanism in the functools standard library module in Python 3.4 that provides a simple form of generic programming known as single-dispatch generic functions. This library is a backport of this functionality to Python 2.6 - 3.3.
:target: PyPI link_ :target: PyPI link_.. _PyPI link: .. .. :target: