Skip to content

Commit

Permalink
add explicit re-export
Browse files Browse the repository at this point in the history
  • Loading branch information
dbatten5 committed Mar 20, 2023
1 parent 31d89c1 commit d7fc976
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ pip install phylm
```python
>>> from phylm import Phylm
>>> p = Phylm("The Matrix")
>>> await p.load_source("imdb")
>>> await p.load_sources(["imdb", "mtc"])
>>> p.imdb.year
1999
>>> p.imdb.rating
8.7
>>> p.mtc.rating
73
```

`phylm` also provides some tools around movie search results and more:
Expand Down
2 changes: 2 additions & 0 deletions src/phylm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
"""Phylm."""
from .phylm import Phylm

__all__ = ["Phylm"]

0 comments on commit d7fc976

Please sign in to comment.