Skip to content

Commit e90c757

Browse files
author
avc
committed
stable version
1 parent 1dd138f commit e90c757

Some content is hidden

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

42 files changed

+16182
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
venv
2+
__pycache__
3+
tmp.py
4+
*.egg-info
5+
dist/
6+
*.pyc

.idea/.gitignore

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

+22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/sas32kd.iml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.rst

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
SAS 32 KD Library
2+
=================
3+
4+
A library to simplify communication with TCP/IP Server Module for Sierra Automated Systems audio routers SAS 32KD.
5+
6+
Communication protocol description is available here: http://www3.sasaudio.com/downloads/SAS%20Documentation/USI_Protocol_32KD_Rev_13.pdf.
7+
8+
Source Code
9+
-----------
10+
https://github.com/dgalus/sas32kd
11+
12+
PyPI package
13+
------------
14+
https://pypi.org/project/sas32kd/
15+
16+
Documentation
17+
-------------
18+
https://sas32kd.rtfd.io
19+
20+
Documentation can be also found in the `docs/` directory as reStructuredText files. Build the docs by running `make` in the `docs/` directory, then viewing `docs/_build/html/index.html`.
21+
22+
Author
23+
------
24+
dgalus / avc <[email protected]>

docs/Makefile

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Minimal makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
SPHINXBUILD ?= sphinx-build
8+
SOURCEDIR = .
9+
BUILDDIR = _build
10+
11+
# Put it first so that "make" without argument is like "make help".
12+
help:
13+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14+
15+
.PHONY: help Makefile
16+
17+
# Catch-all target: route all unknown targets to Sphinx using the new
18+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19+
%: Makefile
20+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
13.5 KB
Binary file not shown.

docs/_build/doctrees/index.doctree

4.73 KB
Binary file not shown.
7.23 KB
Binary file not shown.

docs/_build/html/.buildinfo

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Sphinx build info version 1
2+
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3+
config: a77547f4a3f8aacec57b35f42a0bd7b2
4+
tags: 645f666f9bcd5a90fca523b33c5a78b7
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
.. sas32kd documentation master file, created by
2+
sphinx-quickstart on Thu Feb 4 22:03:00 2021.
3+
You can adapt this file completely to your liking, but it should at least
4+
contain the root `toctree` directive.
5+
6+
Welcome to sas32kd's documentation!
7+
===================================
8+
9+
.. toctree::
10+
:maxdepth: 2
11+
:caption: Contents:
12+
13+
pages/quickstart.rst
14+
15+
Indices and tables
16+
==================
17+
18+
* :ref:`genindex`
19+
* :ref:`modindex`
20+
* :ref:`search`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
SAS 32 KD Library
2+
=================
3+
4+
A library to simplify communication with TCP/IP Server Module for Sierra Automated Systems audio routers SAS 32KD.
5+
6+
Communication protocol description is available here: http://www3.sasaudio.com/downloads/SAS%20Documentation/USI_Protocol_32KD_Rev_13.pdf.
7+
8+
Source Code
9+
-----------
10+
https://github.com/dgalus/sas32kd
11+
12+
PyPI package
13+
------------
14+
https://pypi.org/project/sas32kd/
15+
16+
Documentation
17+
-------------
18+
https://sas32kd.rtfd.io
19+
20+
Documentation can be also found in the `docs/` directory as reStructuredText files. Build the docs by running `make` in the `docs/` directory, then viewing `docs/_build/html/index.html`.
21+
22+
Installation
23+
------------
24+
python -m pip install sas32kd
25+
26+
Installing as Debian package
27+
----------------------------
28+
sudo dpkg -i lib-sas32kd-py-1.0.0.deb
29+
30+
Author
31+
------
32+
dgalus / avc <[email protected]>

0 commit comments

Comments
 (0)