antipackage icon indicating copy to clipboard operation
antipackage copied to clipboard

Automagically import single file Python modules from GitHub.

Results 4 antipackage issues
Sort by recently updated
recently updated
newest added

Importing my [module](https://github.com/retep-mathwizard/leaderlib/blob/master/leaderlib.py) gives me an error. ``` import antipackage from github.retep-mathwizard.leaderlib import leaderlib ``` Are dashes allowed in imports for antipackage? ``` from github.retep-mathwizard.leaderlib import leaderlib ^ SyntaxError: invalid...

That's a Python 3 no-no as that removes the built-in importer, frozen module importer, and the sys.path importer. :) Better to append to sys.meta_path.

I was searching in google and I found that we are doing the same! check it out here: https://github.com/llazzaro/packyou let me know if you have any idea on how we...

Just for dependency management matters. For being usable on real work, I prefer to depend on a frozen version, not just pull from the latest available since it may introduce...