-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider making the project name PEP-8 compliant and importable #10
Comments
Wat? |
No worries -- PEP-8 defines code style and naming conventions for Python. For context, I'm currently building some software that makes use of this project. In order for Ideally, one would be able to clone this repo and use it as a Python module (this would require a file My suggested solution would be would be to move If this sounds good to you, I can submit a PR in a few days to get that done. |
You can use imp.load_module() :-P No, just kidding. Thanks, understood. Sounds interesting. |
launchpad.py is awesome! Unfortunately, publishing scripts that build on top of it is difficult since users would basically have to clone this repo, and copy the dependent scripts into the
launchpad.py
directory (unless I fork & bundle it).Making the module importable isn't as simple as adding
__init__.py
though, as the namelaunchpad.py
is not importable due to the dot in it.I won't ask that you rename the project, but I did want to point this issue out :)
The text was updated successfully, but these errors were encountered: