Skip to content

Commit

Permalink
Expose API functions from top-level (#7)
Browse files Browse the repository at this point in the history
Also update cookiecutter package in cthoyt/cookiecutter-snekpack@fa032ff to have this be a part by default
  • Loading branch information
cthoyt authored May 10, 2022
1 parent 5e1a0cb commit 85d4884
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/torch_ppr/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# -*- coding: utf-8 -*-

"""(Personalized) Page-Rank computation using PyTorch."""

from .api import page_rank, personalized_page_rank

__all__ = [
"page_rank",
"personalized_page_rank",
]

0 comments on commit 85d4884

Please sign in to comment.