https://github.com/sourceplusplus/probe-python
Continuous feedback probe for Python applications
https://github.com/sourceplusplus/probe-python
python
Last synced: 11 months ago
JSON representation
Continuous feedback probe for Python applications
- Host: GitHub
- URL: https://github.com/sourceplusplus/probe-python
- Owner: sourceplusplus
- License: apache-2.0
- Created: 2021-10-27T21:20:41.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-06-06T21:44:03.000Z (12 months ago)
- Last Synced: 2025-06-06T22:30:07.292Z (12 months ago)
- Topics: python
- Language: Python
- Homepage:
- Size: 451 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 
[](LICENSE)
[](https://pypi.org/project/sourceplusplus/)
[](https://github.com/sourceplusplus/probe-python/actions/workflows/e2e.yml)
## What is this?
This project provides Python support to the [Source++](https://github.com/sourceplusplus/sourceplusplus) open-source live coding platform.
## Usage
- `pip install sourceplusplus`
### Attach
```python
from sourceplusplus.SourcePlusPlus import SourcePlusPlus
SourcePlusPlus().attach()
```
### Config
Add `spp-probe.yml` to working directory (or set `SPP_PROBE_CONFIG_FILE` env):
```yml
spp:
platform_host: "localhost"
```
Or construct with dict:
```python
from sourceplusplus.SourcePlusPlus import SourcePlusPlus
SourcePlusPlus({
"spp.platform_host": "localhost"
}).attach()
```
## Bugs & Features
Bug reports and feature requests can be created [here](https://github.com/sourceplusplus/sourceplusplus/issues).