Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README_pypi.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<p align="center"><a href="https://www.youtube.com/watch?v=NFe0aGO9-TE">Inspired by this video.</a></p>

## Command Line Usage
After installing the module, run `binary-waterfall`.
After installing the module, run `binary-waterfall` or `python -m binary_waterfall`.

## Attribution
If you use this program to make a video or other project, you must provide attribution. Attribution is required regardless of whether your project is for-profit or not. Please reproduce the following attribution statement in full in your video description or otherwise include it in the references for your project:
Expand All @@ -27,4 +27,4 @@ https://github.com/nimaid/binary-waterfall
- **Mute / Unmute:** `M`

## Showcase Video
[<img src="https://i.ytimg.com/vi/gZRWbv_aob0/maxresdefault.jpg" width="300px">](https://www.youtube.com/watch?v=gZRWbv_aob0 "Microsoft Paint Remix")
[<img src="https://i.ytimg.com/vi/gZRWbv_aob0/maxresdefault.jpg" width="300px">](https://www.youtube.com/watch?v=gZRWbv_aob0 "Microsoft Paint Remix")
5 changes: 5 additions & 0 deletions src/binary_waterfall/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from . import run


if __name__ == "__main__":
run()