Skip to content

Commit

Permalink
Merge pull request #31 from skumar951/patch-1
Browse files Browse the repository at this point in the history
Upgrade default client url's to https
  • Loading branch information
newgene authored Nov 9, 2023
2 parents a66a9a3 + 19a3c80 commit 83daf6e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions biothings_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
MYGENE_KWARGS = copy(COMMON_KWARGS)
MYGENE_KWARGS.update(
{
"_default_url": "http://mygene.info/v3",
"_default_url": "https://mygene.info/v3",
"_annotation_endpoint": "/gene/",
"_optionally_plural_object_type": "gene(s)",
"_default_cache_file": "mygene_cache",
Expand All @@ -83,7 +83,7 @@
MYVARIANT_KWARGS = copy(COMMON_KWARGS)
MYVARIANT_KWARGS.update(
{
"_default_url": "http://myvariant.info/v1",
"_default_url": "https://myvariant.info/v1",
"_annotation_endpoint": "/variant/",
"_optionally_plural_object_type": "variant(s)",
"_default_cache_file": "myvariant_cache",
Expand All @@ -95,7 +95,7 @@
MYCHEM_KWARGS = copy(COMMON_KWARGS)
MYCHEM_KWARGS.update(
{
"_default_url": "http://mychem.info/v1",
"_default_url": "https://mychem.info/v1",
"_annotation_endpoint": "/chem/",
"_optionally_plural_object_type": "chem(s)",
"_entity": "chem",
Expand All @@ -106,7 +106,7 @@
MYDISEASE_KWARGS = copy(COMMON_KWARGS)
MYDISEASE_KWARGS.update(
{
"_default_url": "http://mydisease.info/v1",
"_default_url": "https://mydisease.info/v1",
"_annotation_endpoint": "/disease/",
"_optionally_plural_object_type": "disease(s)",
"_entity": "disease",
Expand All @@ -116,7 +116,7 @@
MYTAXON_KWARGS = copy(COMMON_KWARGS)
MYTAXON_KWARGS.update(
{
"_default_url": "http://t.biothings.io/v1",
"_default_url": "https://t.biothings.io/v1",
"_annotation_endpoint": "/taxon/",
"_optionally_plural_object_type": "taxon/taxa",
"_entity": "taxon",
Expand Down

0 comments on commit 83daf6e

Please sign in to comment.