fixcore-engine 0.1.7__tar.gz → 0.1.9__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.
- {fixcore_engine-0.1.7/fixcore_engine.egg-info → fixcore_engine-0.1.9}/PKG-INFO +2 -2
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/README.md +1 -1
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/session/session.py +3 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9/fixcore_engine.egg-info}/PKG-INFO +2 -2
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/pyproject.toml +1 -1
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/LICENSE +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/__init__.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/application.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/gui.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/gui_ui/app.js +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/gui_ui/fixcore_logo.svg +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/gui_ui/index.html +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/gui_ui/style.css +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/log/__init__.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/log/base.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/log/factory.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/log/file_log.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/log/screen.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/message/__init__.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/message/cracker.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/message/data_dictionary.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/message/exceptions.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/message/field.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/message/message.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/session/__init__.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/session/session_id.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/session/session_settings.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/session/state.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/store/__init__.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/store/base.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/store/factory.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/store/file_store.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/store/memory.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/transport/__init__.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/transport/acceptor.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/transport/framer.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore/transport/initiator.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore_engine.egg-info/SOURCES.txt +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore_engine.egg-info/dependency_links.txt +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore_engine.egg-info/entry_points.txt +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore_engine.egg-info/requires.txt +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/fixcore_engine.egg-info/top_level.txt +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/setup.cfg +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/tests/test_cracker.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/tests/test_data_dictionary.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/tests/test_file_log.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/tests/test_file_store.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/tests/test_framer.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/tests/test_integration.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/tests/test_message.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/tests/test_session.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/tests/test_session_id.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/tests/test_store.py +0 -0
- {fixcore_engine-0.1.7 → fixcore_engine-0.1.9}/tests/test_transport.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fixcore-engine
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.9
|
|
4
4
|
Summary: Pure Python FIX protocol engine
|
|
5
5
|
Author-email: Aidan Chisholm <aidan.chisholm@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -45,7 +45,7 @@ Provides-Extra: gui
|
|
|
45
45
|
Requires-Dist: aiohttp>=3.9; extra == "gui"
|
|
46
46
|
Dynamic: license-file
|
|
47
47
|
|
|
48
|
-
<img src="fixcore_logo.svg" alt="FIXcore" width="340" />
|
|
48
|
+
<img src="https://raw.githubusercontent.com/aidan-chisholm/fixcore/main/fixcore_logo.svg" alt="FIXcore" width="340" />
|
|
49
49
|
|
|
50
50
|
Pure Python FIX protocol engine — mirrors the QuickFIX architecture (QuickFIX/n, QuickFIX/J).
|
|
51
51
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<img src="fixcore_logo.svg" alt="FIXcore" width="340" />
|
|
1
|
+
<img src="https://raw.githubusercontent.com/aidan-chisholm/fixcore/main/fixcore_logo.svg" alt="FIXcore" width="340" />
|
|
2
2
|
|
|
3
3
|
Pure Python FIX protocol engine — mirrors the QuickFIX architecture (QuickFIX/n, QuickFIX/J).
|
|
4
4
|
|
|
@@ -248,6 +248,7 @@ class Session:
|
|
|
248
248
|
# Acceptor: respond with Logon
|
|
249
249
|
await self._send_logon()
|
|
250
250
|
|
|
251
|
+
self._app.from_admin(msg, self._id)
|
|
251
252
|
self._state = SessionState.LOGGED_ON
|
|
252
253
|
self._app.on_logon(self._id)
|
|
253
254
|
self._log.on_event("Logon complete")
|
|
@@ -256,6 +257,8 @@ class Session:
|
|
|
256
257
|
text = msg.get_field_or(TAG_TEXT, "")
|
|
257
258
|
self._log.on_event(f"Received Logout{': ' + text if text else ''}")
|
|
258
259
|
|
|
260
|
+
self._app.from_admin(msg, self._id)
|
|
261
|
+
|
|
259
262
|
if self._state == SessionState.LOGOUT_TIMEOUT:
|
|
260
263
|
# We sent Logout first; counterparty confirmed — clean disconnect
|
|
261
264
|
self._state = SessionState.DISCONNECTED
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fixcore-engine
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.9
|
|
4
4
|
Summary: Pure Python FIX protocol engine
|
|
5
5
|
Author-email: Aidan Chisholm <aidan.chisholm@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -45,7 +45,7 @@ Provides-Extra: gui
|
|
|
45
45
|
Requires-Dist: aiohttp>=3.9; extra == "gui"
|
|
46
46
|
Dynamic: license-file
|
|
47
47
|
|
|
48
|
-
<img src="fixcore_logo.svg" alt="FIXcore" width="340" />
|
|
48
|
+
<img src="https://raw.githubusercontent.com/aidan-chisholm/fixcore/main/fixcore_logo.svg" alt="FIXcore" width="340" />
|
|
49
49
|
|
|
50
50
|
Pure Python FIX protocol engine — mirrors the QuickFIX architecture (QuickFIX/n, QuickFIX/J).
|
|
51
51
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|