bioversions 0.8.1__py3-none-any.whl → 0.8.3__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.
@@ -107,6 +107,8 @@ def _update(force: bool): # noqa:C901
107
107
  text += f"## {t.name}\n\nUsing class: `{t.clstype}`\n\n"
108
108
  text += f"```python-traceback\n{t.trace}\n```\n\n"
109
109
  FAILURES_PATH.write_text(text.rstrip() + "\n")
110
+ else:
111
+ FAILURES_PATH.write_text("# No Errors :)\n")
110
112
 
111
113
 
112
114
  def _log_update(bv) -> None:
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "annotations": {
3
- "revision": 991,
4
- "date": "2025-05-07",
3
+ "revision": 993,
4
+ "date": "2025-05-08",
5
5
  "author": "runner"
6
6
  },
7
7
  "database": [
@@ -533,6 +533,11 @@
533
533
  "retrieved": "2025-05-07",
534
534
  "version": "2025-05-06",
535
535
  "homepage": "https://antibodyregistry.org/"
536
+ },
537
+ {
538
+ "retrieved": "2025-05-07",
539
+ "version": "2025-05-07",
540
+ "homepage": "https://antibodyregistry.org/"
536
541
  }
537
542
  ],
538
543
  "name": "Antibody Registry",
@@ -4141,6 +4146,12 @@
4141
4146
  "version": "113",
4142
4147
  "homepage": "https://www.ensembl.org",
4143
4148
  "date": "2024-10-01"
4149
+ },
4150
+ {
4151
+ "retrieved": "2025-05-07",
4152
+ "version": "114",
4153
+ "homepage": "https://www.ensembl.org",
4154
+ "date": "2025-05-01"
4144
4155
  }
4145
4156
  ],
4146
4157
  "name": "Ensembl",
@@ -10572,6 +10583,10 @@
10572
10583
  {
10573
10584
  "retrieved": "2025-05-07",
10574
10585
  "version": "2025-05-05"
10586
+ },
10587
+ {
10588
+ "retrieved": "2025-05-07",
10589
+ "version": "2025-05-06"
10575
10590
  }
10576
10591
  ],
10577
10592
  "name": "Online Mendelian Inheritance in Man",
@@ -17125,6 +17140,10 @@
17125
17140
  {
17126
17141
  "retrieved": "2025-05-07",
17127
17142
  "version": "2025-05-07"
17143
+ },
17144
+ {
17145
+ "retrieved": "2025-05-08",
17146
+ "version": "2025-05-08"
17128
17147
  }
17129
17148
  ],
17130
17149
  "name": "SwissLipids",
@@ -22677,6 +22696,10 @@
22677
22696
  {
22678
22697
  "retrieved": "2025-05-07",
22679
22698
  "version": "2025-05-05"
22699
+ },
22700
+ {
22701
+ "retrieved": "2025-05-07",
22702
+ "version": "2025-05-06"
22680
22703
  }
22681
22704
  ],
22682
22705
  "name": "Zebrafish Information Network",
@@ -1,6 +1,8 @@
1
1
  """A getter for Rfam."""
2
2
 
3
- from bioversions.utils import Getter, VersionType, _get_ftp_version
3
+ import requests
4
+
5
+ from bioversions.utils import Getter, VersionType
4
6
 
5
7
  __all__ = [
6
8
  "RfamGetter",
@@ -12,12 +14,17 @@ class RfamGetter(Getter):
12
14
 
13
15
  bioregistry_id = "rfam"
14
16
  name = "Rfam"
15
- homepage_fmt = "ftp://ftp.ebi.ac.uk/pub/databases/Rfam/{version}/"
17
+ homepage_fmt = "https://ftp.ebi.ac.uk/pub/databases/Rfam/{version}/"
16
18
  version_type = VersionType.semver_minor
17
19
 
18
- def get(self):
20
+ def get(self) -> str:
19
21
  """Get the latest Rfam version number."""
20
- return _get_ftp_version("ftp.ebi.ac.uk", "pub/databases/Rfam/")
22
+ res = requests.get("https://ftp.ebi.ac.uk/pub/databases/Rfam/CURRENT/README", timeout=15)
23
+ for line in res.iter_lines():
24
+ line = line.decode("utf8").strip()
25
+ if line.startswith("Release "):
26
+ return line[len("Release ") :]
27
+ raise ValueError
21
28
 
22
29
 
23
30
  if __name__ == "__main__":
bioversions/version.py CHANGED
@@ -8,7 +8,7 @@ __all__ = [
8
8
  "get_git_hash",
9
9
  ]
10
10
 
11
- VERSION = "0.8.1"
11
+ VERSION = "0.8.3"
12
12
 
13
13
 
14
14
  def get_git_hash() -> str:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bioversions
3
- Version: 0.8.1
3
+ Version: 0.8.3
4
4
  Summary: Get the current version for biological databases
5
5
  Keywords: snekpack,cookiecutter,databases,biological databases,biomedical databases
6
6
  Author: Charles Tapley Hoyt
@@ -1,81 +1,81 @@
1
- bioversions/py.typed,sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855,0
2
- bioversions/cli.py,sha256=75eaa237668bef45ef6f16b5c5a20036aef228995b872dda224a54dcb30ad2d5,1639
3
- bioversions/templates/base.html,sha256=00a07a693dfd53d56d38cdb3bd6fd49b922060ef4acbe08ba41cb1cb95d73b93,713
4
- bioversions/templates/home.html,sha256=cfdf054ac94244fd8adfdc5b1e948f824d7d8fb676d4f49b44602d69723431dd,2756
5
1
  bioversions/__init__.py,sha256=0fc58200e829534318812aa56075dc5a716d8b9343f60f1580c27cc3e91eea62,354
6
- bioversions/charts.py,sha256=be29a2fde227a4bd02611112f1cbe58a00e261e435fc8f00e82104a15dadbdfe,2457
7
2
  bioversions/__main__.py,sha256=0e97cd1eac70162293fb809292e2cba2464218394244001f3f9e0c74b8f71351,128
8
- bioversions/resources/versions.json,sha256=ee58f4ec7a2c610433b927a45fc8dce44b7b6639d80eb4f8428dcf258cf0a06e,555806
9
- bioversions/resources/update.py,sha256=339d2963c35d6b5e03e6fb97894bd90ea39cc94376aaee9ab8d0ccf23b1ff0c5,3530
3
+ bioversions/charts.py,sha256=be29a2fde227a4bd02611112f1cbe58a00e261e435fc8f00e82104a15dadbdfe,2457
4
+ bioversions/cli.py,sha256=75eaa237668bef45ef6f16b5c5a20036aef228995b872dda224a54dcb30ad2d5,1639
5
+ bioversions/py.typed,sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855,0
10
6
  bioversions/resources/__init__.py,sha256=371c3ac3afe0442e01fc9c2f6c000aa4d476ac8a6435167952404831d36a95d6,1659
11
- bioversions/utils.py,sha256=f83a7ac31bc688117b31c5297d4d9bce8ffd5b63ecc32e6c531bf075952d5e25,10715
12
- bioversions/version.py,sha256=6d98ad6197cd2b61f0b02cdce7ce2bb78eefc2229a7ea823218cb1ef812da0d3,605
13
- bioversions/sources/interpro.py,sha256=1fa75923bd60517a3b2f661e7c24e2243e2ab90440bf2621e670c36e1da2baf1,1238
14
- bioversions/sources/oncotree.py,sha256=69b039f07e37800fd3b623816b00595333caede9403d8a9620fee515de8aa8ee,1032
7
+ bioversions/resources/update.py,sha256=847565839bacfe2d0fea36202e428cb98e33476b6f13398f950f10386583c473,3593
8
+ bioversions/resources/versions.json,sha256=f487e80d183abfb4caf23f78943979f7c2fe97fc019d65a191d2ac9736895286,556395
9
+ bioversions/slack_client.py,sha256=bda7d71401bc03f7dc19fec98d7d5abad5083285cb5c97b5b575b1f9459a1285,1293
10
+ bioversions/sources/__init__.py,sha256=6926e85147f955777cdc9e2ea59295183c06e328b410a458d6c30543c15d558c,7628
11
+ bioversions/sources/antibodyregistry.py,sha256=5c29963e1d7bd40780582ce9539d6120bd593d0cda6f3b763b08af876a2bef8f,713
12
+ bioversions/sources/bigg.py,sha256=895af1caf2a2108517b3a14cd8088b0d86bec980cd18c38d9a222ffd1e8a060e,661
13
+ bioversions/sources/biogrid.py,sha256=df37707dbc42423111e9be6a98c7b866312430d042712d392170a8f2cf8b2daf,742
14
+ bioversions/sources/cellosaurus.py,sha256=d17ae067aade4a433c0f350b26d681dda881603d1057734750b67ef19950ee01,975
15
+ bioversions/sources/chebi.py,sha256=53b5cdbb8810bb790027764284d97efa01ee12f7c259902e381ac3d3f7615616,833
16
+ bioversions/sources/chembl.py,sha256=35cfa0149a5eac1c8efe2577b43aa47e359874558ef48ce227022d7bd0b60932,1513
17
+ bioversions/sources/chemidplus.py,sha256=cc93605ba1d416c5939fdfcf62e01f1449d999284b1af7beee0185696b231702,1194
18
+ bioversions/sources/civic.py,sha256=321967e8b7c7a7aecf896b49e6ad4520d0b00a114103a71f71a49c775291f11e,1086
19
+ bioversions/sources/complexportal.py,sha256=1adea98029a1aef5e13d7038812734ed37bfa2c9e8f6038cb3c8216b4eff1d19,671
20
+ bioversions/sources/daily.py,sha256=501fcf689d9b11035b08255c208c5bca0bb631f79e9a8fee3d268f85d07b4033,256
21
+ bioversions/sources/depmap.py,sha256=00b9fb914b27902ef2023f5c2d899a4235829b6b20d3045643e4fbe8deea4168,641
15
22
  bioversions/sources/dgi.py,sha256=8b613bedea979b8bbadfcbe4b2fd539e4d29deccf329d936c83a72626d8808bc,940
16
- bioversions/sources/kegg.py,sha256=24574e015a28f77f77451a3b48dbb54b740ff36e7e310bbdf434ee4f63adb094,1014
17
- bioversions/sources/icf.py,sha256=2cf0e779aec4a03845ad091e5ab4fea91aaa10bbd91b5ede9f771c828a8d3771,946
23
+ bioversions/sources/disgenet.py,sha256=3c02c84643c1913d9cb2b37e1679fe019cc273d67633685e904fbf16ba84f8bc,739
24
+ bioversions/sources/drugbank.py,sha256=599c215452b5e8219e2c31423c2c6d1c7c867848309696c834b9b5f3af1f3f16,994
25
+ bioversions/sources/drugcentral.py,sha256=c07db12fe096a5e54fdb4e360a75a6d57fb0dd826fda6e458a04f0d61b7570b8,1116
26
+ bioversions/sources/ensembl.py,sha256=8d220ffc1bf54d5832cc76c18e922493c689385a2ba930df454fc0afc38293ca,734
27
+ bioversions/sources/expasy.py,sha256=625d33571c58d40584ac5ad572da0999e6bec4db7327c0860b9f017836034f9e,767
28
+ bioversions/sources/flybase.py,sha256=fe455283cb073637a2468748740d6a9813a2f17a19bb0e93bbab2faf3b13bdf4,1113
29
+ bioversions/sources/gtdb.py,sha256=7063122d9ade9ab743d85f833729664d4bbcc0f0591fe31a10a61ebbb5742dab,1177
30
+ bioversions/sources/guidetopharmacology.py,sha256=7864d5d2b74f25d3baa4a91f9a24caec4777a19c442e0055112d2f790998b0e0,1523
31
+ bioversions/sources/hgnc.py,sha256=5b2d0cf1a4fe48ab0c2945b111d3e95acdf64a32fb519ca200d2ed0900b85a9d,1099
32
+ bioversions/sources/homologene.py,sha256=4da5b4037dcf2d2e3cd38ceb45664a0e6a3fcf01332bd6f15ffcc089a526779c,622
33
+ bioversions/sources/icd10.py,sha256=ef9ec91178149d2e9b8dc6ef63bfd74211ada63768046dfc75c02b53828f0ac4,929
18
34
  bioversions/sources/icd11.py,sha256=00b75086f6ecd8e81444665944cd6139725fcee36b0d817b54506b0cc91bc580,996
35
+ bioversions/sources/icf.py,sha256=2cf0e779aec4a03845ad091e5ab4fea91aaa10bbd91b5ede9f771c828a8d3771,946
36
+ bioversions/sources/intact.py,sha256=06e67eda7e8eededc74f63eb1c73db0648665dae78323d7d92625c76ff4f7c05,596
37
+ bioversions/sources/interpro.py,sha256=1fa75923bd60517a3b2f661e7c24e2243e2ab90440bf2621e670c36e1da2baf1,1238
38
+ bioversions/sources/itis.py,sha256=99a480060d52ac6e06404be347080c28af56e984e80cc4763f0a98266212a1df,582
39
+ bioversions/sources/kegg.py,sha256=24574e015a28f77f77451a3b48dbb54b740ff36e7e310bbdf434ee4f63adb094,1014
40
+ bioversions/sources/mesh.py,sha256=5ea8cf53950980e1d5736f1cffa37b46225dd45f51a1418f5c69a621a368a6f3,971
41
+ bioversions/sources/mgi.py,sha256=4d7f95d3171616692db2c8d195d8d86f9f751c2b6885e63df70d054c7d9c2199,841
19
42
  bioversions/sources/mirbase.py,sha256=ab70baf82cbebc42f22424029e9838a6f7a846b9587ea81be37d779871b90a9e,996
20
- bioversions/sources/omim.py,sha256=7aad8a3615748f5171db47098a1cdbec36b1e8596e0e857fe360dc5320748a65,916
21
- bioversions/sources/drugcentral.py,sha256=c07db12fe096a5e54fdb4e360a75a6d57fb0dd826fda6e458a04f0d61b7570b8,1116
43
+ bioversions/sources/moalmanac.py,sha256=2f314cc81d89e0e604514217ed5346508dab890603eb6a20f4fb9d3c97144801,781
44
+ bioversions/sources/msigdb.py,sha256=8689c6234a84ae6e70b19b2bd21c165e2c37d83de7e71c47e605f7c54121de9a,778
45
+ bioversions/sources/ncit.py,sha256=887238481b9cd61f525019541624d03f455f4e0c4465d4ba40fbcf704aac231b,832
46
+ bioversions/sources/npass.py,sha256=5426aa5caf240e9ec8ece16b58ac90bc18ee5414c6667665ef6219da9152e4a3,888
47
+ bioversions/sources/obo.py,sha256=727b7470ba4cf30b421b5e1eebe758bbadeac57e9801df4fceb13948a27ff0b7,1713
22
48
  bioversions/sources/ols.py,sha256=35e49f5841e26161ebb063e2bba5f58754031b98128ac132532ef528346f69ac,2929
23
- bioversions/sources/mgi.py,sha256=4d7f95d3171616692db2c8d195d8d86f9f751c2b6885e63df70d054c7d9c2199,841
49
+ bioversions/sources/omim.py,sha256=7aad8a3615748f5171db47098a1cdbec36b1e8596e0e857fe360dc5320748a65,916
50
+ bioversions/sources/oncotree.py,sha256=69b039f07e37800fd3b623816b00595333caede9403d8a9620fee515de8aa8ee,1032
24
51
  bioversions/sources/pathbank.py,sha256=ad5a8a277ab673881cb6a520fe78bd7d29b6273d2882475ec07fb2b0f762003b,704
25
- bioversions/sources/itis.py,sha256=99a480060d52ac6e06404be347080c28af56e984e80cc4763f0a98266212a1df,582
26
- bioversions/sources/silva.py,sha256=e677f3502f516b48977191274ad08d593e4c683442281043a819dde028157274,984
27
- bioversions/sources/moalmanac.py,sha256=2f314cc81d89e0e604514217ed5346508dab890603eb6a20f4fb9d3c97144801,781
28
- bioversions/sources/rxnorm.py,sha256=abb4a225e16e57c6f59102558c41504711ba81cdb5e07bf557c70ceab552c541,1040
52
+ bioversions/sources/pathwaycommons.py,sha256=34b6bc0f44d87fa4a4abf7ee4adf8a350117b5623786feeff187987c9bc947f6,686
29
53
  bioversions/sources/pfam.py,sha256=a2509a19315b2524a4974101d2215794c639b2ede25832449819524f4c3efff8,975
30
- bioversions/sources/biogrid.py,sha256=df37707dbc42423111e9be6a98c7b866312430d042712d392170a8f2cf8b2daf,742
54
+ bioversions/sources/pombase.py,sha256=e65348dc0aaed5f9c35049c5d117ee7103abf8714f620afbfa5e084eded1c986,766
55
+ bioversions/sources/pr.py,sha256=6c440e95057d35b7d0273d9c26bc2e0dec45cfe22f541e44b5645ebe66f4ddd6,876
56
+ bioversions/sources/pubchem.py,sha256=57e6f33479eef0935322abde994efe3292f91c7c6bb1889c5724c99ebd7d72f9,526
31
57
  bioversions/sources/reactome.py,sha256=12ae2e1cc763c323eaab9d90ec4f6cbdcea1cd9645b40e6d32d93c76333006f7,596
32
- bioversions/sources/ncit.py,sha256=887238481b9cd61f525019541624d03f455f4e0c4465d4ba40fbcf704aac231b,832
33
- bioversions/sources/stringdb.py,sha256=9afd81dd24d02469cce66e246cb6f696e4a501ba3e7e8dc7aff0f022563a37b2,787
58
+ bioversions/sources/rfam.py,sha256=c6c0695b8975324ce12a11351c36258b241644d611cb23ee4d70e7c2cc2aa082,775
34
59
  bioversions/sources/rgd.py,sha256=64f6cfd7bff88004699b00832560ef033f14f2977e70684ebef546b431a04d23,766
35
- bioversions/sources/__init__.py,sha256=6926e85147f955777cdc9e2ea59295183c06e328b410a458d6c30543c15d558c,7628
36
- bioversions/sources/civic.py,sha256=321967e8b7c7a7aecf896b49e6ad4520d0b00a114103a71f71a49c775291f11e,1086
37
- bioversions/sources/daily.py,sha256=501fcf689d9b11035b08255c208c5bca0bb631f79e9a8fee3d268f85d07b4033,256
38
- bioversions/sources/zfin.py,sha256=dcea33de50f1f09e36380a3253c78923e7d19cc46263250c723e1f0c4e4354b4,683
39
60
  bioversions/sources/rhea.py,sha256=ddcb28b84fa2a76520ecc123703e785ff3d4bccb93638af442d3883f54fbd57e,806
40
- bioversions/sources/signor.py,sha256=f0a0bd043c1344027e31fe8fc4e5922f44e86044ca16370e6d66368161f05c83,969
41
- bioversions/sources/intact.py,sha256=06e67eda7e8eededc74f63eb1c73db0648665dae78323d7d92625c76ff4f7c05,596
42
- bioversions/sources/guidetopharmacology.py,sha256=7864d5d2b74f25d3baa4a91f9a24caec4777a19c442e0055112d2f790998b0e0,1523
43
- bioversions/sources/expasy.py,sha256=625d33571c58d40584ac5ad572da0999e6bec4db7327c0860b9f017836034f9e,767
44
- bioversions/sources/depmap.py,sha256=00b9fb914b27902ef2023f5c2d899a4235829b6b20d3045643e4fbe8deea4168,641
45
- bioversions/sources/complexportal.py,sha256=1adea98029a1aef5e13d7038812734ed37bfa2c9e8f6038cb3c8216b4eff1d19,671
61
+ bioversions/sources/rxnorm.py,sha256=abb4a225e16e57c6f59102558c41504711ba81cdb5e07bf557c70ceab552c541,1040
46
62
  bioversions/sources/sgd.py,sha256=3e05c0bf0aa5c78f10b869e75473a5d2e034323b84ec89748e2055e1f69835d0,1084
47
- bioversions/sources/chemidplus.py,sha256=cc93605ba1d416c5939fdfcf62e01f1449d999284b1af7beee0185696b231702,1194
48
- bioversions/sources/pathwaycommons.py,sha256=34b6bc0f44d87fa4a4abf7ee4adf8a350117b5623786feeff187987c9bc947f6,686
49
- bioversions/sources/disgenet.py,sha256=3c02c84643c1913d9cb2b37e1679fe019cc273d67633685e904fbf16ba84f8bc,739
50
- bioversions/sources/drugbank.py,sha256=599c215452b5e8219e2c31423c2c6d1c7c867848309696c834b9b5f3af1f3f16,994
51
- bioversions/sources/wikipathways.py,sha256=493c3c062bdcdc864b608c7e2b0a711cb526453a8d7c79b4c10cb00e68bed30b,798
63
+ bioversions/sources/signor.py,sha256=f0a0bd043c1344027e31fe8fc4e5922f44e86044ca16370e6d66368161f05c83,969
64
+ bioversions/sources/silva.py,sha256=e677f3502f516b48977191274ad08d593e4c683442281043a819dde028157274,984
65
+ bioversions/sources/slm.py,sha256=84fe81b16cf8cb3cdc817f4ed56482364bb46a9d3af1f01c3726273b26d106d6,766
66
+ bioversions/sources/stringdb.py,sha256=9afd81dd24d02469cce66e246cb6f696e4a501ba3e7e8dc7aff0f022563a37b2,787
52
67
  bioversions/sources/umls.py,sha256=276513c45b33d31f5eaa1395ef176b9ed5ae8013c4ecd4332b4f627880115146,803
53
- bioversions/sources/chembl.py,sha256=35cfa0149a5eac1c8efe2577b43aa47e359874558ef48ce227022d7bd0b60932,1513
54
- bioversions/sources/pr.py,sha256=6c440e95057d35b7d0273d9c26bc2e0dec45cfe22f541e44b5645ebe66f4ddd6,876
55
- bioversions/sources/pubchem.py,sha256=57e6f33479eef0935322abde994efe3292f91c7c6bb1889c5724c99ebd7d72f9,526
56
68
  bioversions/sources/uniprot.py,sha256=c3e16b68fc8a65e12d9a3b3288fedbd9a8e0e7b47f0a69f0fb032fb072c68a1b,924
57
- bioversions/sources/bigg.py,sha256=895af1caf2a2108517b3a14cd8088b0d86bec980cd18c38d9a222ffd1e8a060e,661
58
- bioversions/sources/rfam.py,sha256=3c8de33a8920baac6789fd07160da00752f524ed25ad045b3b48a24716eda5a8,540
59
69
  bioversions/sources/unversioned.py,sha256=c2f328c3bca5b9bbd0ede38ce93bd5a8d1cd079757902865f6c83c3ed05794f4,53
60
- bioversions/sources/icd10.py,sha256=ef9ec91178149d2e9b8dc6ef63bfd74211ada63768046dfc75c02b53828f0ac4,929
61
- bioversions/sources/npass.py,sha256=5426aa5caf240e9ec8ece16b58ac90bc18ee5414c6667665ef6219da9152e4a3,888
62
- bioversions/sources/pombase.py,sha256=e65348dc0aaed5f9c35049c5d117ee7103abf8714f620afbfa5e084eded1c986,766
63
- bioversions/sources/gtdb.py,sha256=7063122d9ade9ab743d85f833729664d4bbcc0f0591fe31a10a61ebbb5742dab,1177
64
- bioversions/sources/obo.py,sha256=727b7470ba4cf30b421b5e1eebe758bbadeac57e9801df4fceb13948a27ff0b7,1713
65
- bioversions/sources/mesh.py,sha256=5ea8cf53950980e1d5736f1cffa37b46225dd45f51a1418f5c69a621a368a6f3,971
66
- bioversions/sources/hgnc.py,sha256=5b2d0cf1a4fe48ab0c2945b111d3e95acdf64a32fb519ca200d2ed0900b85a9d,1099
67
- bioversions/sources/flybase.py,sha256=fe455283cb073637a2468748740d6a9813a2f17a19bb0e93bbab2faf3b13bdf4,1113
68
- bioversions/sources/homologene.py,sha256=4da5b4037dcf2d2e3cd38ceb45664a0e6a3fcf01332bd6f15ffcc089a526779c,622
69
- bioversions/sources/cellosaurus.py,sha256=d17ae067aade4a433c0f350b26d681dda881603d1057734750b67ef19950ee01,975
70
- bioversions/sources/chebi.py,sha256=53b5cdbb8810bb790027764284d97efa01ee12f7c259902e381ac3d3f7615616,833
71
- bioversions/sources/antibodyregistry.py,sha256=5c29963e1d7bd40780582ce9539d6120bd593d0cda6f3b763b08af876a2bef8f,713
72
- bioversions/sources/msigdb.py,sha256=8689c6234a84ae6e70b19b2bd21c165e2c37d83de7e71c47e605f7c54121de9a,778
73
- bioversions/sources/ensembl.py,sha256=8d220ffc1bf54d5832cc76c18e922493c689385a2ba930df454fc0afc38293ca,734
74
- bioversions/sources/slm.py,sha256=84fe81b16cf8cb3cdc817f4ed56482364bb46a9d3af1f01c3726273b26d106d6,766
70
+ bioversions/sources/wikipathways.py,sha256=493c3c062bdcdc864b608c7e2b0a711cb526453a8d7c79b4c10cb00e68bed30b,798
71
+ bioversions/sources/zfin.py,sha256=dcea33de50f1f09e36380a3253c78923e7d19cc46263250c723e1f0c4e4354b4,683
72
+ bioversions/templates/base.html,sha256=00a07a693dfd53d56d38cdb3bd6fd49b922060ef4acbe08ba41cb1cb95d73b93,713
73
+ bioversions/templates/home.html,sha256=cfdf054ac94244fd8adfdc5b1e948f824d7d8fb676d4f49b44602d69723431dd,2756
74
+ bioversions/utils.py,sha256=f83a7ac31bc688117b31c5297d4d9bce8ffd5b63ecc32e6c531bf075952d5e25,10715
75
+ bioversions/version.py,sha256=34e562f0d46b3ef7beae627221a3ced97e4afcff93521c5ae5b333a68392c34b,605
75
76
  bioversions/wsgi.py,sha256=b611913189165699cd67480f3d17308344ac935e31c693017aabea89bd0ba8ab,825
76
- bioversions/slack_client.py,sha256=bda7d71401bc03f7dc19fec98d7d5abad5083285cb5c97b5b575b1f9459a1285,1293
77
- bioversions-0.8.1.dist-info/licenses/LICENSE,sha256=41c80964a1b1956e41c013670812fc5592d5b51bd7b3cd4287d949450488a498,1076
78
- bioversions-0.8.1.dist-info/WHEEL,sha256=1c77bbda0b527f376a68ced20cbc1aac3efc7bc4d7c10cc4323a905ef79ae8db,78
79
- bioversions-0.8.1.dist-info/entry_points.txt,sha256=4cdd92beb5155987fe3fa990cbaa0268658f0e30d27ed349fada88c48b97484e,54
80
- bioversions-0.8.1.dist-info/METADATA,sha256=d56eab0f3e7193d4593e57a5b9a2e07d8e1b3638496fdf4de6ec28900e16e671,18672
81
- bioversions-0.8.1.dist-info/RECORD,,
77
+ bioversions-0.8.3.dist-info/licenses/LICENSE,sha256=41c80964a1b1956e41c013670812fc5592d5b51bd7b3cd4287d949450488a498,1076
78
+ bioversions-0.8.3.dist-info/WHEEL,sha256=65f6765ba93534713730ff2172cd912ef280aa42867625a73f77c2fef0639dae,78
79
+ bioversions-0.8.3.dist-info/entry_points.txt,sha256=4cdd92beb5155987fe3fa990cbaa0268658f0e30d27ed349fada88c48b97484e,54
80
+ bioversions-0.8.3.dist-info/METADATA,sha256=f5a5206ca891aa926ea5d4f2603ffb49c53bb3a114beb8c8d1e19263f2f203c2,18672
81
+ bioversions-0.8.3.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: uv 0.7.2
2
+ Generator: uv 0.7.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any