8000 Merge pull request #174 from MarshalX/main · MarshalX/python-webrtc@8dc14e6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8dc14e6

Browse files
authored
Merge pull request #174 from MarshalX/main
0.0.8 (dev)
2 parents 59ad61b + 29f340d commit 8dc14e6

File tree

56 files changed

+1359
-168
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+1359
-168
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ project(python_webrtc
77
LANGUAGES C CXX
88
DESCRIPTION "a Python extension that provides bindings to WebRTC"
99
HOMEPAGE_URL "https://github.com/MarshalX/python-webrtc"
10-
VERSION "0.0.0.7"
10+
VERSION "0.0.0.8"
1111
)
1212

1313
include(ExternalProject)

Makefile

+9
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,12 @@ export PYTHONPATH=${PATH_TO_PY_MODULES}
1111

1212
test:
1313
@${RUN_TESTS} ${TESTS_DIR} ${RUN_TESTS_OPTS} $(O)
14+
15+
stub:
16+
python -m "pybind11_stubgen" wrtc --non-stop
17+
18+
doc:
19+
cd docs && make gen && make html
20+
21+
black:
22+
black --config black.toml tests python-webrtc

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ This project follows the [W3C specification](https://w3c.github.io/webrtc-pc/) w
2828

2929
This project is still under development and isn't ready for any serious use. In the current stage, it's possible to establish connection and work with audio, but many interfaces and methods not implemented yet.
3030

31+
You can easily check status of methods and interfaces availability [here](https://github.com/users/MarshalX/projects/1/views/1).
32+
3133
#### Snippet
3234

3335
```python
@@ -150,7 +152,7 @@ The documentation is live at [readthedocs.io](https://wrtc.rtfd.io/).
150152

151153
You can get help in several ways:
152154
- Report bugs, request new features by [creating an issue](https://github.com/MarshalX/python-webrtc/issues/new).
153-
- Ask question by [starting a discussion](https://github.com/MarshalX/python-webrtc/discussions/new).
155+
- Ask questions by [starting a discussion](https://github.com/MarshalX/python-webrtc/discussions/new).
154156

155157
### Contributing
156158

docs/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ MODULEPATH = ../python-webrtc/python/webrtc
77
EXCLUDEPATTERN = ../python-webrtc/python/webrtc/utils/**
88
SOURCEDIR = source
99
BUILDDIR = build
10+
TEMPLATEDIR = source/templates
1011

1112
help:
1213
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
1314

1415
.PHONY: help Makefile
1516

1617
gen:
17-
@$(SPHINXGENERATE) -f -e -M -o "$(SOURCEDIR)" "$(MODULEPATH)" "$(EXCLUDEPATTERN)" $(O)
18+
@$(SPHINXGENERATE) -f -e -M -o "$(SOURCEDIR)" -t "$(TEMPLATEDIR)" "$(MODULEPATH)" "$(EXCLUDEPATTERN)" $(O)
1819

1920
.PHONY: gen Makefile
2021

0 commit comments

Comments
 (0)
0