From 9d16ee0d10fa174a949d04f58032f2b7774f5078 Mon Sep 17 00:00:00 2001 From: Bazen Date: Mon, 8 Jan 2024 22:58:48 +0200 Subject: [PATCH] Update README.md (#182) --- README.md | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/README.md b/README.md index c205bb7..121cd95 100644 --- a/README.md +++ b/README.md @@ -39,21 +39,6 @@ Update-Package Memphis.Client ```c# using Memphis.Client; ``` - -### Quickstart - Producing and Consuming - -The most basic functionaly of memphis is the ability to produce messages to a station and to consume those messages. - -> The Memphis.py SDK uses asyncio for many functions. Make sure to call the following code in an async function: - -```python -async def main(): - ... - -if __name__ == '__main__': - asyncio.run(main()) -``` - First, a connection to Memphis must be made: ```c#