zenbroker 1.0.0__tar.gz → 1.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: zenbroker
3
- Version: 1.0.0
3
+ Version: 1.1.0
4
4
  Summary: Zenbroker client
5
5
  Home-page: UNKNOWN
6
6
  License: UNKNOWN
@@ -44,20 +44,6 @@ resp = client.publish(
44
44
  )
45
45
  ```
46
46
 
47
- ### Publishing multiple messages
48
-
49
- ```python
50
- for i in range(10000):
51
- resp = client.publish(
52
- channel="testing-channel",
53
- data={
54
- "index": i,
55
- "message": "Hey There"
56
- }
57
- )
58
- print("DONE", i)
59
- ```
60
-
61
47
  ## Notes
62
48
 
63
49
  - Replace `YOUR_APPLICATION_ID` with your actual application ID
@@ -35,20 +35,6 @@ resp = client.publish(
35
35
  )
36
36
  ```
37
37
 
38
- ### Publishing multiple messages
39
-
40
- ```python
41
- for i in range(10000):
42
- resp = client.publish(
43
- channel="testing-channel",
44
- data={
45
- "index": i,
46
- "message": "Hey There"
47
- }
48
- )
49
- print("DONE", i)
50
- ```
51
-
52
38
  ## Notes
53
39
 
54
40
  - Replace `YOUR_APPLICATION_ID` with your actual application ID
@@ -8,7 +8,7 @@ with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
8
8
 
9
9
  setup(
10
10
  name="zenbroker",
11
- version="1.0.0",
11
+ version="1.1.0",
12
12
  description="Zenbroker client",
13
13
  package_dir={"": "zenbroker"},
14
14
  packages=find_packages("zenbroker"),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: zenbroker
3
- Version: 1.0.0
3
+ Version: 1.1.0
4
4
  Summary: Zenbroker client
5
5
  Home-page: UNKNOWN
6
6
  License: UNKNOWN
@@ -44,20 +44,6 @@ resp = client.publish(
44
44
  )
45
45
  ```
46
46
 
47
- ### Publishing multiple messages
48
-
49
- ```python
50
- for i in range(10000):
51
- resp = client.publish(
52
- channel="testing-channel",
53
- data={
54
- "index": i,
55
- "message": "Hey There"
56
- }
57
- )
58
- print("DONE", i)
59
- ```
60
-
61
47
  ## Notes
62
48
 
63
49
  - Replace `YOUR_APPLICATION_ID` with your actual application ID
File without changes