Coverage for aiocoap-client: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.10.6, created at 2025-09-17 13:16 +0000

1#!/usr/bin/env python3 

2# SPDX-FileCopyrightText: Christian Amsüss and the aiocoap contributors 

3# 

4# SPDX-License-Identifier: MIT 

5 

6"""This script can be used to access the aiocoap command line client when its 

7entry points have not been installed (eg. when running from the source 

8directory).""" 

9 

10import asyncio 

11import aiocoap.cli.client 

12 

13asyncio.run(aiocoap.cli.client.main())