├── .github └── workflows │ ├── build_tests.yml │ └── license_tests.yml ├── LICENSE.md ├── baresipy ├── __init__.py ├── config.py ├── contacts.py └── utils │ ├── __init__.py │ └── log.py ├── examples ├── contact_list.py ├── events.py └── scripted_call.py ├── logo.png ├── readme.md ├── requirements.txt ├── setup.py └── test └── license_tests.py /.github/workflows/build_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJarbas/baresipy/HEAD/.github/workflows/build_tests.yml -------------------------------------------------------------------------------- /.github/workflows/license_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJarbas/baresipy/HEAD/.github/workflows/license_tests.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJarbas/baresipy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /baresipy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJarbas/baresipy/HEAD/baresipy/__init__.py -------------------------------------------------------------------------------- /baresipy/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJarbas/baresipy/HEAD/baresipy/config.py -------------------------------------------------------------------------------- /baresipy/contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJarbas/baresipy/HEAD/baresipy/contacts.py -------------------------------------------------------------------------------- /baresipy/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJarbas/baresipy/HEAD/baresipy/utils/__init__.py -------------------------------------------------------------------------------- /baresipy/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJarbas/baresipy/HEAD/baresipy/utils/log.py -------------------------------------------------------------------------------- /examples/contact_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJarbas/baresipy/HEAD/examples/contact_list.py -------------------------------------------------------------------------------- /examples/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJarbas/baresipy/HEAD/examples/events.py -------------------------------------------------------------------------------- /examples/scripted_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJarbas/baresipy/HEAD/examples/scripted_call.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJarbas/baresipy/HEAD/logo.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJarbas/baresipy/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJarbas/baresipy/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJarbas/baresipy/HEAD/setup.py -------------------------------------------------------------------------------- /test/license_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenJarbas/baresipy/HEAD/test/license_tests.py --------------------------------------------------------------------------------