amalgam-lang 12.4.4__py3-none-any.whl → 13.0.1__py3-none-any.whl

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.

Potentially problematic release.


This version of amalgam-lang might be problematic. Click here for more details.

Files changed (35) hide show
  1. amalgam/api.py +86 -60
  2. amalgam/lib/darwin/amd64/amalgam-mt-noavx.dylib +0 -0
  3. amalgam/lib/darwin/amd64/amalgam-mt.dylib +0 -0
  4. amalgam/lib/darwin/amd64/amalgam-omp.dylib +0 -0
  5. amalgam/lib/darwin/amd64/amalgam-st.dylib +0 -0
  6. amalgam/lib/darwin/amd64/docs/version.json +1 -1
  7. amalgam/lib/darwin/arm64/amalgam-mt.dylib +0 -0
  8. amalgam/lib/darwin/arm64/amalgam-omp.dylib +0 -0
  9. amalgam/lib/darwin/arm64/amalgam-st.dylib +0 -0
  10. amalgam/lib/darwin/arm64/docs/version.json +1 -1
  11. amalgam/lib/linux/amd64/amalgam-mt-afmi.so +0 -0
  12. amalgam/lib/linux/amd64/amalgam-mt-noavx.so +0 -0
  13. amalgam/lib/linux/amd64/amalgam-mt.so +0 -0
  14. amalgam/lib/linux/amd64/amalgam-omp.so +0 -0
  15. amalgam/lib/linux/amd64/amalgam-st-afmi.so +0 -0
  16. amalgam/lib/linux/amd64/amalgam-st.so +0 -0
  17. amalgam/lib/linux/amd64/docs/version.json +1 -1
  18. amalgam/lib/linux/arm64/amalgam-mt.so +0 -0
  19. amalgam/lib/linux/arm64/amalgam-omp.so +0 -0
  20. amalgam/lib/linux/arm64/amalgam-st.so +0 -0
  21. amalgam/lib/linux/arm64/docs/version.json +1 -1
  22. amalgam/lib/linux/arm64_8a/amalgam-st.so +0 -0
  23. amalgam/lib/linux/arm64_8a/docs/version.json +1 -1
  24. amalgam/lib/version.json +3 -3
  25. amalgam/lib/windows/amd64/amalgam-mt-noavx.dll +0 -0
  26. amalgam/lib/windows/amd64/amalgam-mt.dll +0 -0
  27. amalgam/lib/windows/amd64/amalgam-omp.dll +0 -0
  28. amalgam/lib/windows/amd64/amalgam-st.dll +0 -0
  29. amalgam/lib/windows/amd64/docs/version.json +1 -1
  30. {amalgam_lang-12.4.4.dist-info → amalgam_lang-13.0.1.dist-info}/METADATA +1 -1
  31. amalgam_lang-13.0.1.dist-info/RECORD +35 -0
  32. {amalgam_lang-12.4.4.dist-info → amalgam_lang-13.0.1.dist-info}/WHEEL +1 -1
  33. amalgam_lang-12.4.4.dist-info/RECORD +0 -35
  34. {amalgam_lang-12.4.4.dist-info → amalgam_lang-13.0.1.dist-info}/LICENSE.txt +0 -0
  35. {amalgam_lang-12.4.4.dist-info → amalgam_lang-13.0.1.dist-info}/top_level.txt +0 -0
amalgam/api.py CHANGED
@@ -6,6 +6,7 @@ from ctypes import (
6
6
  )
7
7
  from datetime import datetime
8
8
  import gc
9
+ import json as json_lib
9
10
  import logging
10
11
  from pathlib import Path
11
12
  import platform
@@ -698,12 +699,11 @@ class Amalgam:
698
699
  def load_entity(
699
700
  self,
700
701
  handle: str,
701
- amlg_path: str,
702
+ file_path: str,
702
703
  *,
704
+ file_type: str = "",
703
705
  persist: bool = False,
704
- load_contained: bool = False,
705
- escape_filename: bool = False,
706
- escape_contained_filenames: bool = True,
706
+ json_file_params: str = "",
707
707
  write_log: str = "",
708
708
  print_log: str = ""
709
709
  ) -> LoadEntityStatus:
@@ -714,18 +714,17 @@ class Amalgam:
714
714
  ----------
715
715
  handle : str
716
716
  The handle to assign the entity.
717
- amlg_path : str
718
- The path to the filename.amlg/caml file.
717
+ file_path : str
718
+ The path of the file name to load.
719
+ file_type : str, default ""
720
+ If set to a nonempty string, will represent the type of file to load.
719
721
  persist : bool, default False
720
- If set to true, all transactions will trigger the entity to be
721
- saved over the original source.
722
- load_contained : bool, default False
723
- If set to true, contained entities will be loaded.
724
- escape_filename : bool, default False
725
- If set to true, the filename will be aggressively escaped.
726
- escape_contained_filenames : bool, default True
727
- If set to true, the filenames of contained entities will be
728
- aggressively escaped.
722
+ If set to true, all transactions that update the entity will also be
723
+ written to the files.
724
+ json_file_params : str, default ""
725
+ Either empty string or a string of json specifying a set of key-value pairs
726
+ which are parameters specific to the file type. See Amalgam documentation
727
+ for details of allowed parameters.
729
728
  write_log : str, default ""
730
729
  Path to the write log. If empty string, the write log is
731
730
  not generated.
@@ -739,29 +738,32 @@ class Amalgam:
739
738
  Status of LoadEntity call.
740
739
  """
741
740
  self.amlg.LoadEntity.argtypes = [
742
- c_char_p, c_char_p, c_bool, c_bool, c_bool, c_bool, c_char_p, c_char_p]
741
+ c_char_p, c_char_p, c_char_p, c_bool, c_char_p, c_char_p, c_char_p]
743
742
  self.amlg.LoadEntity.restype = _LoadEntityStatus
744
743
  handle_buf = self.str_to_char_p(handle)
745
- amlg_path_buf = self.str_to_char_p(amlg_path)
744
+ file_path_buf = self.str_to_char_p(file_path)
745
+ file_type_buf = self.str_to_char_p(file_type)
746
+ json_file_params_buf = self.str_to_char_p(json_file_params)
746
747
  write_log_buf = self.str_to_char_p(write_log)
747
748
  print_log_buf = self.str_to_char_p(print_log)
748
749
 
749
750
  load_command_log_entry = (
750
751
  f"LOAD_ENTITY \"{self.escape_double_quotes(handle)}\" "
751
- f"\"{self.escape_double_quotes(amlg_path)}\" {str(persist).lower()} "
752
- f"{str(load_contained).lower()} {str(escape_filename).lower()} "
753
- f"{str(escape_contained_filenames).lower()} \"{write_log}\" "
754
- f"\"{print_log}\""
752
+ f"\"{self.escape_double_quotes(file_path)}\" "
753
+ f"\"{self.escape_double_quotes(file_type)}\" {str(persist).lower()} "
754
+ f"{json_lib.dumps(json_file_params)} "
755
+ f"\"{write_log}\" \"{print_log}\""
755
756
  )
756
757
  self._log_execution(load_command_log_entry)
757
758
  result = LoadEntityStatus(self, self.amlg.LoadEntity(
758
- handle_buf, amlg_path_buf, persist, load_contained,
759
- escape_filename, escape_contained_filenames,
760
- write_log_buf, print_log_buf))
759
+ handle_buf, file_path_buf, file_type_buf, persist,
760
+ json_file_params_buf, write_log_buf, print_log_buf))
761
761
  self._log_reply(result)
762
762
 
763
763
  del handle_buf
764
- del amlg_path_buf
764
+ del file_path_buf
765
+ del file_type_buf
766
+ del json_file_params_buf
765
767
  del write_log_buf
766
768
  del print_log_buf
767
769
  self.gc()
@@ -770,14 +772,14 @@ class Amalgam:
770
772
 
771
773
  def verify_entity(
772
774
  self,
773
- amlg_path: str
775
+ file_path: str
774
776
  ) -> LoadEntityStatus:
775
777
  """
776
778
  Verify an entity from an amalgam source file.
777
779
 
778
780
  Parameters
779
781
  ----------
780
- amlg_path : str
782
+ file_path : str
781
783
  The path to the filename.amlg/caml file.
782
784
 
783
785
  Returns
@@ -787,13 +789,13 @@ class Amalgam:
787
789
  """
788
790
  self.amlg.VerifyEntity.argtypes = [c_char_p]
789
791
  self.amlg.VerifyEntity.restype = _LoadEntityStatus
790
- amlg_path_buf = self.str_to_char_p(amlg_path)
792
+ file_path_buf = self.str_to_char_p(file_path)
791
793
 
792
- self._log_execution(f"VERIFY_ENTITY \"{self.escape_double_quotes(amlg_path)}\"")
793
- result = LoadEntityStatus(self, self.amlg.VerifyEntity(amlg_path_buf))
794
+ self._log_execution(f"VERIFY_ENTITY \"{self.escape_double_quotes(file_path)}\"")
795
+ result = LoadEntityStatus(self, self.amlg.VerifyEntity(file_path_buf))
794
796
  self._log_reply(result)
795
797
 
796
- del amlg_path_buf
798
+ del file_path_buf
797
799
  self.gc()
798
800
 
799
801
  return result
@@ -803,8 +805,10 @@ class Amalgam:
803
805
  handle: str,
804
806
  clone_handle: str,
805
807
  *,
806
- amlg_path: str = "",
808
+ file_path: str = "",
809
+ file_type: str = "",
807
810
  persist: bool = False,
811
+ json_file_params: str = "",
808
812
  write_log: str = "",
809
813
  print_log: str = ""
810
814
  ) -> bool:
@@ -817,11 +821,17 @@ class Amalgam:
817
821
  The handle of the amalgam entity to clone.
818
822
  clone_handle : str
819
823
  The handle to clone the entity into.
820
- amlg_path : str, default ""
821
- The path to store the filename.amlg/caml file. Only relevant if persist is True.
824
+ file_path : str, default ""
825
+ The path of the file name to load.
826
+ file_type : str, default ""
827
+ If set to a nonempty string, will represent the type of file to load.
822
828
  persist : bool, default False
823
- If set to true, all transactions will trigger the entity to be
824
- saved over the original source.
829
+ If set to true, all transactions that update the entity will also be
830
+ written to the files.
831
+ json_file_params : str, default ""
832
+ Either empty string or a string of json specifying a set of key-value pairs
833
+ which are parameters specific to the file type. See Amalgam documentation
834
+ for details of allowed parameters.
825
835
  write_log : str, default ""
826
836
  Path to the write log. If empty string, the write log is
827
837
  not generated.
@@ -835,28 +845,34 @@ class Amalgam:
835
845
  True if cloned successfully, False if not.
836
846
  """
837
847
  self.amlg.CloneEntity.argtypes = [
838
- c_char_p, c_char_p, c_char_p, c_bool, c_char_p, c_char_p]
848
+ c_char_p, c_char_p, c_char_p, c_char_p, c_bool, c_char_p, c_char_p, c_char_p]
839
849
  handle_buf = self.str_to_char_p(handle)
840
850
  clone_handle_buf = self.str_to_char_p(clone_handle)
841
- amlg_path_buf = self.str_to_char_p(amlg_path)
851
+ file_path_buf = self.str_to_char_p(file_path)
852
+ file_type_buf = self.str_to_char_p(file_type)
853
+ json_file_params_buf = self.str_to_char_p(json_file_params)
842
854
  write_log_buf = self.str_to_char_p(write_log)
843
855
  print_log_buf = self.str_to_char_p(print_log)
844
856
 
845
857
  clone_command_log_entry = (
846
858
  f'CLONE_ENTITY "{self.escape_double_quotes(handle)}" '
847
859
  f'"{self.escape_double_quotes(clone_handle)}" '
848
- f'"{self.escape_double_quotes(amlg_path)}" {str(persist).lower()} '
849
- f'"{write_log}" "{print_log}"'
860
+ f"\"{self.escape_double_quotes(file_path)}\" "
861
+ f"\"{self.escape_double_quotes(file_type)}\" {str(persist).lower()} "
862
+ f"{json_lib.dumps(json_file_params)} "
863
+ f"\"{write_log}\" \"{print_log}\""
850
864
  )
851
865
  self._log_execution(clone_command_log_entry)
852
866
  result = self.amlg.CloneEntity(
853
- handle_buf, clone_handle_buf, amlg_path_buf, persist,
854
- write_log_buf, print_log_buf)
867
+ handle_buf, clone_handle_buf, file_path_buf, file_type_buf, persist,
868
+ json_file_params_buf, write_log_buf, print_log_buf)
855
869
  self._log_reply(result)
856
870
 
857
871
  del handle_buf
858
872
  del clone_handle_buf
859
- del amlg_path_buf
873
+ del file_path_buf
874
+ del file_type_buf
875
+ del json_file_params_buf
860
876
  del write_log_buf
861
877
  del print_log_buf
862
878
  self.gc()
@@ -866,43 +882,53 @@ class Amalgam:
866
882
  def store_entity(
867
883
  self,
868
884
  handle: str,
869
- amlg_path: str,
885
+ file_path: str,
870
886
  *,
871
- update_persistence_location: bool = False,
872
- store_contained: bool = False
887
+ file_type: str = "",
888
+ persist: bool = False,
889
+ json_file_params: str = "",
873
890
  ):
874
891
  """
875
- Store entity to the file type specified within amlg_path.
892
+ Store entity to the file type specified within file_path.
876
893
 
877
894
  Parameters
878
895
  ----------
879
896
  handle : str
880
897
  The handle of the amalgam entity.
881
- amlg_path : str
882
- The path to the filename.amlg/caml file.
883
- update_persistence_location : bool
884
- If set to true, updates location entity is persisted to.
885
- store_contained : bool
886
- If set to true, contained entities will be stored.
898
+ file_path : str
899
+ The path of the file name to load.
900
+ file_type : str, default ""
901
+ If set to a nonempty string, will represent the type of file to load.
902
+ persist : bool, default False
903
+ If set to true, all transactions that update the entity will also be
904
+ written to the files.
905
+ json_file_params : str, default ""
906
+ Either empty string or a string of json specifying a set of key-value pairs
907
+ which are parameters specific to the file type. See Amalgam documentation
908
+ for details of allowed parameters.
887
909
  """
888
910
  self.amlg.StoreEntity.argtypes = [
889
- c_char_p, c_char_p, c_bool, c_bool]
911
+ c_char_p, c_char_p, c_char_p, c_bool, c_char_p]
890
912
  handle_buf = self.str_to_char_p(handle)
891
- amlg_path_buf = self.str_to_char_p(amlg_path)
913
+ file_path_buf = self.str_to_char_p(file_path)
914
+ file_type_buf = self.str_to_char_p(file_type)
915
+ json_file_params_buf = self.str_to_char_p(json_file_params)
892
916
 
893
917
  store_command_log_entry = (
894
918
  f"STORE_ENTITY \"{self.escape_double_quotes(handle)}\" "
895
- f"\"{self.escape_double_quotes(amlg_path)}\" "
896
- f"{str(update_persistence_location).lower()} "
897
- f"{str(store_contained).lower()}"
919
+ f"\"{self.escape_double_quotes(file_path)}\" "
920
+ f"\"{self.escape_double_quotes(file_type)}\" {str(persist).lower()} "
921
+ f"{json_lib.dumps(json_file_params)} "
898
922
  )
899
923
  self._log_execution(store_command_log_entry)
900
924
  self.amlg.StoreEntity(
901
- handle_buf, amlg_path_buf, update_persistence_location, store_contained)
925
+ handle_buf, file_path_buf, file_type_buf, persist, json_file_params_buf)
902
926
  self._log_reply(None)
903
927
 
904
928
  del handle_buf
905
- del amlg_path_buf
929
+ del file_path_buf
930
+ del file_type_buf
931
+ del json_file_params_buf
906
932
  self.gc()
907
933
 
908
934
  def destroy_entity(
Binary file
Binary file
Binary file
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "54.7.1"
2
+ "version": "55.1.0"
3
3
  }
Binary file
Binary file
Binary file
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "54.7.1"
2
+ "version": "55.1.0"
3
3
  }
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "54.7.1"
2
+ "version": "55.1.0"
3
3
  }
Binary file
Binary file
Binary file
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "54.7.1"
2
+ "version": "55.1.0"
3
3
  }
Binary file
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "54.7.1"
2
+ "version": "55.1.0"
3
3
  }
amalgam/lib/version.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "version": {
3
- "amalgam": "54.7.1",
4
- "amalgam_sha": "42ebdba9dcfde2c4942ac4a2a21f3c38fbbae950",
5
- "amalgam_url": "https://github.com/howsoai/amalgam/releases/tag/54.7.1",
3
+ "amalgam": "55.1.0",
4
+ "amalgam_sha": "e17f52b8baf84757d2e312725fe2f62368fcee53",
5
+ "amalgam_url": "https://github.com/howsoai/amalgam/releases/tag/55.1.0",
6
6
  "amalgam_build_date": "",
7
7
  "amalgam_display_title": ""
8
8
  }
Binary file
Binary file
Binary file
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "54.7.1"
2
+ "version": "55.1.0"
3
3
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: amalgam-lang
3
- Version: 12.4.4
3
+ Version: 13.0.1
4
4
  Summary: A direct interface with Amalgam compiled DLL, dylib, or so.
5
5
  Author: Howso Incorporated
6
6
  Author-email: support@howso.com
@@ -0,0 +1,35 @@
1
+ amalgam/__init__.py,sha256=oHu7Zr4eGDUqj93pLwz8t7gLa8lpAx6Q-xbGiJ3nJx0,18
2
+ amalgam/api.py,sha256=32K9fOdTJTiJYHqs3mX2q9dqxkLCA72POQ5Ri958Tzk,38164
3
+ amalgam/lib/version.json,sha256=FaQDg5wx8SQmhHrUeyodj186RQP9cpMc6to4gfSh0Ws,250
4
+ amalgam/lib/darwin/amd64/amalgam-mt-noavx.dylib,sha256=vSD3Vapk7_ZkWuTInyjWj89Z98vqucQIWWGoLbTDbbg,3483752
5
+ amalgam/lib/darwin/amd64/amalgam-mt.dylib,sha256=QgcgIa3KwrkM8V6MoqJr0JidJ9N0x8BZQ9fewHrU_04,3838488
6
+ amalgam/lib/darwin/amd64/amalgam-omp.dylib,sha256=Lv3uc7x6r_D1PAkF_uuEDie7geQxD5nCtsRO2Evm_aM,4229760
7
+ amalgam/lib/darwin/amd64/amalgam-st.dylib,sha256=gbQUCQ98Zv-Hh_F-TNKyODp6Yo9qjJwhOXUfyWZoIME,3692560
8
+ amalgam/lib/darwin/amd64/docs/version.json,sha256=kyZUKu0oBwEegnU7s4FgFSpfKKT-Kc9Yiuc3rQauh-o,25
9
+ amalgam/lib/darwin/arm64/amalgam-mt.dylib,sha256=4B87Ky9L0jESECh9o_AyqUOG-jdXzy_b-wA2nzAQlGk,2867536
10
+ amalgam/lib/darwin/arm64/amalgam-omp.dylib,sha256=JdEadyW1VXSdY9_LiH8lYa06cYywTpIfJlM01HTMt0Q,3290096
11
+ amalgam/lib/darwin/arm64/amalgam-st.dylib,sha256=E0Wi080U4cjmwkhBDmuUIZ9QhX5oLe7wpccrsxXGaV0,2759744
12
+ amalgam/lib/darwin/arm64/docs/version.json,sha256=kyZUKu0oBwEegnU7s4FgFSpfKKT-Kc9Yiuc3rQauh-o,25
13
+ amalgam/lib/linux/amd64/amalgam-mt-afmi.so,sha256=Uf6ueUyx76giPXBZYx2gCknODpi7St-ekXbzvuZ1M4U,74317768
14
+ amalgam/lib/linux/amd64/amalgam-mt-noavx.so,sha256=qreJnwC9ShDFRXP08ht0XdHHQPUB34ew5S492a-6ei8,4163128
15
+ amalgam/lib/linux/amd64/amalgam-mt.so,sha256=MFq_BcQSQLk-UjH4hgO5K3fkFA8RCKB7WynWvYKkPVk,4191752
16
+ amalgam/lib/linux/amd64/amalgam-omp.so,sha256=2vDcVkOrjUIlTRLAE6FSYjRTNIp5ufL_jVVLk4dsLGg,4040032
17
+ amalgam/lib/linux/amd64/amalgam-st-afmi.so,sha256=Z80wPMLfXo0mx5Xnyh15AH1_Ykd5dVnyg1fBrOLXD0k,71067504
18
+ amalgam/lib/linux/amd64/amalgam-st.so,sha256=eM_R44hDLcZjVcnziZVmA7A3hXS7lCALK3N_KgRsvI8,4029128
19
+ amalgam/lib/linux/amd64/docs/version.json,sha256=kyZUKu0oBwEegnU7s4FgFSpfKKT-Kc9Yiuc3rQauh-o,25
20
+ amalgam/lib/linux/arm64/amalgam-mt.so,sha256=CKTzO2RDD_pWP1mTCLS1ZGqdcNeJmnTI6wYCXABKDQ8,3597744
21
+ amalgam/lib/linux/arm64/amalgam-omp.so,sha256=8GL84LW2fzsvqlYvZx64IclLJp8DzpyGo5lr4hMICo4,3453168
22
+ amalgam/lib/linux/arm64/amalgam-st.so,sha256=W4Xo4lzm9lmg17nugrrnDOby2jf4vkujwPYvgVPmffo,3462936
23
+ amalgam/lib/linux/arm64/docs/version.json,sha256=kyZUKu0oBwEegnU7s4FgFSpfKKT-Kc9Yiuc3rQauh-o,25
24
+ amalgam/lib/linux/arm64_8a/amalgam-st.so,sha256=9zGcm1U1Pd39AFmt7yaMg7_auvPbc-Ker62IeYv2JbM,3457080
25
+ amalgam/lib/linux/arm64_8a/docs/version.json,sha256=kyZUKu0oBwEegnU7s4FgFSpfKKT-Kc9Yiuc3rQauh-o,25
26
+ amalgam/lib/windows/amd64/amalgam-mt-noavx.dll,sha256=jVhD5z24vltxhtAvYyz3xWjQEcMB7lRjzd0j42HC0lg,2765312
27
+ amalgam/lib/windows/amd64/amalgam-mt.dll,sha256=ZfaJvdjlhG50Xagy9EQIlsZATnzCeBKseqKhogo7J_4,2689536
28
+ amalgam/lib/windows/amd64/amalgam-omp.dll,sha256=26LgKwZMZxT73R4ck_QYoyerQqFAACpEvl-O7NMVyYA,2619904
29
+ amalgam/lib/windows/amd64/amalgam-st.dll,sha256=TPkjuxTi_2RtBQp2_KvY6fx38gMG9RHkUURBtQdfy_w,2608640
30
+ amalgam/lib/windows/amd64/docs/version.json,sha256=XF1QCnrIVUhTLbuYEQVeYV0wY03soakQ34KGNhlYgSk,27
31
+ amalgam_lang-13.0.1.dist-info/LICENSE.txt,sha256=2xqHuoHohba7gpcZZKtOICRjzeKsQANXG8WoV9V35KM,33893
32
+ amalgam_lang-13.0.1.dist-info/METADATA,sha256=4KZ0hKDwdm9xJH-8h4ksWVifGzYMG2uZg-0Tj5FVBfk,43814
33
+ amalgam_lang-13.0.1.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
34
+ amalgam_lang-13.0.1.dist-info/top_level.txt,sha256=rmPHU144SyaB25u5-FAQyECAQnJ39NvuJEcKXMRcdBo,8
35
+ amalgam_lang-13.0.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.1.0)
2
+ Generator: setuptools (75.2.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,35 +0,0 @@
1
- amalgam/__init__.py,sha256=oHu7Zr4eGDUqj93pLwz8t7gLa8lpAx6Q-xbGiJ3nJx0,18
2
- amalgam/api.py,sha256=IWS--0NCnhsadMYSna2gLllNxG_i3HpymY3eXbugwDU,36796
3
- amalgam/lib/version.json,sha256=YUvyuI1u1VNGsViFkBaVkyjSQCJFGEeS-pjO1bXKgbg,250
4
- amalgam/lib/darwin/amd64/amalgam-mt-noavx.dylib,sha256=I8nWZn72w8cyYG_b6lRx_Wib2BHi3m_RRERw-0rS6eQ,3481848
5
- amalgam/lib/darwin/amd64/amalgam-mt.dylib,sha256=Emr-DyggMiFuQ9YDoHen96yt5oIzc2zMWlOv5BabiE4,3852960
6
- amalgam/lib/darwin/amd64/amalgam-omp.dylib,sha256=Ihgckc6sROG8R_JPFwekxzJfEKf2Y_nQD73vxCONaZM,4244328
7
- amalgam/lib/darwin/amd64/amalgam-st.dylib,sha256=h-Iq2yWHbypI7UdOCzwle5olC8hja_tlO61ZvqRa_vI,3723560
8
- amalgam/lib/darwin/amd64/docs/version.json,sha256=iFB5iMUd5KXilFjyNpKKAPuGfeR5wj7jYdEeg8AQCWI,25
9
- amalgam/lib/darwin/arm64/amalgam-mt.dylib,sha256=HbLYBAmKoEheqxQzX2khW03cJ7cg_xlQTwZuz4a0i4c,2881168
10
- amalgam/lib/darwin/arm64/amalgam-omp.dylib,sha256=peNWhzaTV4EWjzUDGqoUpdFP8cVEgH-8DZEw5Ds1u_Y,3303856
11
- amalgam/lib/darwin/arm64/amalgam-st.dylib,sha256=4xkohdKoQEFWFJWF77r2fDWqhssb3v8r0quSyUEKaWU,2756944
12
- amalgam/lib/darwin/arm64/docs/version.json,sha256=iFB5iMUd5KXilFjyNpKKAPuGfeR5wj7jYdEeg8AQCWI,25
13
- amalgam/lib/linux/amd64/amalgam-mt-afmi.so,sha256=G3qhMW5dr9or3g_m3QUMN1BCSZw129mKol6VBKWiNWc,74241992
14
- amalgam/lib/linux/amd64/amalgam-mt-noavx.so,sha256=jCUzs4ubgTgWia-FqLlNil4S5ZxSG7U5Rh7y8nPWcdc,4178128
15
- amalgam/lib/linux/amd64/amalgam-mt.so,sha256=-lFAiLyXAWR8jwn-wzaCnZ3zOYuwGzWD2eSo234phZ0,4206760
16
- amalgam/lib/linux/amd64/amalgam-omp.so,sha256=uMJXdo867XNylb2hLaRgj9sZBP3czk-stVwZ2hSKyZY,4050776
17
- amalgam/lib/linux/amd64/amalgam-st-afmi.so,sha256=FfB8z_j5GbqRalBI7KoV9FtoJWL6E-R4IOEAsWLFoMk,70919832
18
- amalgam/lib/linux/amd64/amalgam-st.so,sha256=rBUch4RoVx_HH_CgnCKY22XSMn5GmtlesxTFt2i_vlU,4043936
19
- amalgam/lib/linux/amd64/docs/version.json,sha256=iFB5iMUd5KXilFjyNpKKAPuGfeR5wj7jYdEeg8AQCWI,25
20
- amalgam/lib/linux/arm64/amalgam-mt.so,sha256=c6CNkaFUPUMwbawKV9CEkdj4l87exr7cZ4LEEsNmRIw,3612800
21
- amalgam/lib/linux/arm64/amalgam-omp.so,sha256=1ojzi1Tu2c5GYox4U0_PNKCqP__-eetDhsxUx_m1Low,3458768
22
- amalgam/lib/linux/arm64/amalgam-st.so,sha256=DQ_B7A67OWeX9CuDcEHcd5pyaKHfcVEyAGd1NOad94Y,3452008
23
- amalgam/lib/linux/arm64/docs/version.json,sha256=iFB5iMUd5KXilFjyNpKKAPuGfeR5wj7jYdEeg8AQCWI,25
24
- amalgam/lib/linux/arm64_8a/amalgam-st.so,sha256=saItbssOhl7iwG-SP9plUHJHBxO8Qb-1GxMAAbZ3Q8g,3458800
25
- amalgam/lib/linux/arm64_8a/docs/version.json,sha256=iFB5iMUd5KXilFjyNpKKAPuGfeR5wj7jYdEeg8AQCWI,25
26
- amalgam/lib/windows/amd64/amalgam-mt-noavx.dll,sha256=4Jw89S872dwxN_D2Adt5B9jaUsi1-g_cOWUCe0ikYVQ,2777088
27
- amalgam/lib/windows/amd64/amalgam-mt.dll,sha256=7WpSrZyAd48t_N9-XsAdGe8gwFd0al3HU5Sp845B8NQ,2701312
28
- amalgam/lib/windows/amd64/amalgam-omp.dll,sha256=5mc8yf83OUWfWRakc2bOq5WmOxMUY2kTN2mQaBMmlzs,2631680
29
- amalgam/lib/windows/amd64/amalgam-st.dll,sha256=2rDBvNDAUOrhZSpibimXBe40yVFV2s835c9besFUIpk,2620416
30
- amalgam/lib/windows/amd64/docs/version.json,sha256=b5iSVNDqWaRBNtwDhhd1BuXfLCBhHSPgOT-_kXIhpgg,27
31
- amalgam_lang-12.4.4.dist-info/LICENSE.txt,sha256=2xqHuoHohba7gpcZZKtOICRjzeKsQANXG8WoV9V35KM,33893
32
- amalgam_lang-12.4.4.dist-info/METADATA,sha256=Qy0sURSJz_nql2f0xXwsydhHSAHEMdHRs4Kbbos4pQo,43814
33
- amalgam_lang-12.4.4.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
34
- amalgam_lang-12.4.4.dist-info/top_level.txt,sha256=rmPHU144SyaB25u5-FAQyECAQnJ39NvuJEcKXMRcdBo,8
35
- amalgam_lang-12.4.4.dist-info/RECORD,,