explicit-python-kafka 1.1.2__tar.gz → 1.2.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.
- {explicit_python_kafka-1.1.2/src/explicit_python_kafka.egg-info → explicit_python_kafka-1.2.0}/PKG-INFO +10 -2
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/src/explicit/kafka/adapters/messaging.py +4 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0/src/explicit_python_kafka.egg-info}/PKG-INFO +10 -2
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/version.conf +5 -5
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/MANIFEST.in +0 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/README.md +0 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/requirements/base.txt +0 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/requirements/prod.txt +0 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/setup.cfg +0 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/setup.py +0 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/src/explicit/kafka/__init__.py +0 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/src/explicit/kafka/adapters/__init__.py +0 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/src/explicit/kafka/domain/__init__.py +0 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/src/explicit/kafka/domain/model/__init__.py +0 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/src/explicit/kafka/domain/model/auth.py +0 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/src/explicit/kafka/domain/model/config.py +0 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/src/explicit/kafka/py.typed +0 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/src/explicit_python_kafka.egg-info/SOURCES.txt +0 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/src/explicit_python_kafka.egg-info/dependency_links.txt +0 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/src/explicit_python_kafka.egg-info/requires.txt +0 -0
- {explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/src/explicit_python_kafka.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: explicit-python-kafka
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.0
|
|
4
4
|
Summary: Набор компонентов для интеграции explicit с kafka
|
|
5
5
|
Author: BARS Group
|
|
6
6
|
Author-email: education_dev@bars-open.ru
|
|
@@ -18,6 +18,14 @@ Classifier: Development Status :: 5 - Production/Stable
|
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
Requires-Dist: explicit-python<3,>=2
|
|
20
20
|
Requires-Dist: confluent_kafka
|
|
21
|
+
Dynamic: author
|
|
22
|
+
Dynamic: author-email
|
|
23
|
+
Dynamic: classifier
|
|
24
|
+
Dynamic: description
|
|
25
|
+
Dynamic: description-content-type
|
|
26
|
+
Dynamic: license
|
|
27
|
+
Dynamic: requires-dist
|
|
28
|
+
Dynamic: summary
|
|
21
29
|
|
|
22
30
|
# Explicit-Kafka
|
|
23
31
|
## Набор компонентов для интеграции explicit с kafka.
|
{explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/src/explicit/kafka/adapters/messaging.py
RENAMED
|
@@ -156,6 +156,10 @@ class Adapter(AbstractAdapter):
|
|
|
156
156
|
|
|
157
157
|
yield from self._poll_subscriber(subscriber)
|
|
158
158
|
|
|
159
|
+
def commit(self, message: KafkaMessage, *topics: str):
|
|
160
|
+
subscriber: Subscriber = self._ensure_subscriber(*topics)
|
|
161
|
+
subscriber.commit(message)
|
|
162
|
+
|
|
159
163
|
def list_topics(self, timeout=30.0):
|
|
160
164
|
admin = self._get_admin_client()
|
|
161
165
|
return list(admin.list_topics(timeout=timeout).topics.keys())
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: explicit-python-kafka
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.0
|
|
4
4
|
Summary: Набор компонентов для интеграции explicit с kafka
|
|
5
5
|
Author: BARS Group
|
|
6
6
|
Author-email: education_dev@bars-open.ru
|
|
@@ -18,6 +18,14 @@ Classifier: Development Status :: 5 - Production/Stable
|
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
Requires-Dist: explicit-python<3,>=2
|
|
20
20
|
Requires-Dist: confluent_kafka
|
|
21
|
+
Dynamic: author
|
|
22
|
+
Dynamic: author-email
|
|
23
|
+
Dynamic: classifier
|
|
24
|
+
Dynamic: description
|
|
25
|
+
Dynamic: description-content-type
|
|
26
|
+
Dynamic: license
|
|
27
|
+
Dynamic: requires-dist
|
|
28
|
+
Dynamic: summary
|
|
21
29
|
|
|
22
30
|
# Explicit-Kafka
|
|
23
31
|
## Набор компонентов для интеграции explicit с kafka.
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
# нормальной установки обновлений.
|
|
5
5
|
|
|
6
6
|
[version]
|
|
7
|
-
BRANCH = tags/1.
|
|
8
|
-
VERSION = 1.
|
|
9
|
-
REVISION =
|
|
10
|
-
VERSION_DATE =
|
|
11
|
-
REVISION_DATE =
|
|
7
|
+
BRANCH = tags/1.2.0^0
|
|
8
|
+
VERSION = 1.2.0
|
|
9
|
+
REVISION = a18d6d394386874a905127020e927172b37a3222
|
|
10
|
+
VERSION_DATE = 19.05.2025
|
|
11
|
+
REVISION_DATE = 19.05.2025
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/src/explicit/kafka/adapters/__init__.py
RENAMED
|
File without changes
|
{explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/src/explicit/kafka/domain/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{explicit_python_kafka-1.1.2 → explicit_python_kafka-1.2.0}/src/explicit/kafka/domain/model/auth.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|