Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yu9824/executable-package-tutorial
An easy example of executable python package.
https://github.com/yu9824/executable-package-tutorial
Last synced: 10 days ago
JSON representation
An easy example of executable python package.
- Host: GitHub
- URL: https://github.com/yu9824/executable-package-tutorial
- Owner: yu9824
- License: mit
- Created: 2024-05-02T08:50:20.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-05-03T01:20:33.000Z (6 months ago)
- Last Synced: 2024-05-03T08:37:44.781Z (6 months ago)
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# executable-package-tutorial
An easy example of executable python package.
After you install it (e.g. `pip install `), you can execute like;
```bash
% hello-world
Hello world!% python3 -m hello_world
Hello world!
```