fixcore-engine 0.1.9__tar.gz → 0.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.
- {fixcore_engine-0.1.9/fixcore_engine.egg-info → fixcore_engine-0.2.0}/PKG-INFO +2 -2
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/README.md +1 -1
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0/fixcore_engine.egg-info}/PKG-INFO +2 -2
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/pyproject.toml +1 -1
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/LICENSE +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/__init__.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/application.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/gui.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/gui_ui/app.js +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/gui_ui/fixcore_logo.svg +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/gui_ui/index.html +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/gui_ui/style.css +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/log/__init__.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/log/base.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/log/factory.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/log/file_log.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/log/screen.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/message/__init__.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/message/cracker.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/message/data_dictionary.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/message/exceptions.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/message/field.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/message/message.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/session/__init__.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/session/session.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/session/session_id.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/session/session_settings.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/session/state.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/store/__init__.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/store/base.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/store/factory.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/store/file_store.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/store/memory.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/transport/__init__.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/transport/acceptor.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/transport/framer.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore/transport/initiator.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore_engine.egg-info/SOURCES.txt +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore_engine.egg-info/dependency_links.txt +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore_engine.egg-info/entry_points.txt +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore_engine.egg-info/requires.txt +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/fixcore_engine.egg-info/top_level.txt +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/setup.cfg +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/tests/test_cracker.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/tests/test_data_dictionary.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/tests/test_file_log.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/tests/test_file_store.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/tests/test_framer.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/tests/test_integration.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/tests/test_message.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/tests/test_session.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/tests/test_session_id.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/tests/test_store.py +0 -0
- {fixcore_engine-0.1.9 → fixcore_engine-0.2.0}/tests/test_transport.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fixcore-engine
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
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="https://raw.githubusercontent.com/aidan-chisholm/fixcore/main/fixcore_logo.
|
|
48
|
+
<img src="https://raw.githubusercontent.com/aidan-chisholm/fixcore/main/fixcore_logo.png" 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="https://raw.githubusercontent.com/aidan-chisholm/fixcore/main/fixcore_logo.
|
|
1
|
+
<img src="https://raw.githubusercontent.com/aidan-chisholm/fixcore/main/fixcore_logo.png" alt="FIXcore" width="340" />
|
|
2
2
|
|
|
3
3
|
Pure Python FIX protocol engine — mirrors the QuickFIX architecture (QuickFIX/n, QuickFIX/J).
|
|
4
4
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fixcore-engine
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
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="https://raw.githubusercontent.com/aidan-chisholm/fixcore/main/fixcore_logo.
|
|
48
|
+
<img src="https://raw.githubusercontent.com/aidan-chisholm/fixcore/main/fixcore_logo.png" 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
|
|
File without changes
|