Skip to main content

Import python code from anywhere.

Project description

banner

importit

importit downloads badge importit version badge importit python versions badge

Import python code from anywhere.

importit is a python code import helper. Using it, you can dynamically import python code from different sources (like gists, python files on the internet, local python files). You don't need to copy python code snippets from project to project.

Some of use cases can be:

  • Reusing python code snippets in multiple places and projects
  • Dynamically reloading python code on live environments
  • You tell me, what will you use it for?

From where do you want to import?

Github Gist

Find the gist id from the gist url: https://gist.github.com/<username>/<gist id>

Using this gist as an exmaple:

from importit import import_gist

imported_gist = import_gist("imported_gist", "51dcf067f4e445c3f837d26efd2c138e")

imported_gist.first_file.some_function()
imported_gist.second_file.some_other_function()

Note: The gist will be imported in the form of module, with each python file in the gist as a submodule.

Remote File

Use any valid python file url (for example, http://bit.ly/aPythonFile)

from importit import import_remote_file

imported_file = import_remote_file("imported_file", "http://bit.ly/aPythonFile")

imported_file.some_function()
Local File
from importit import import_remote_file

imported_file = import_remote_file("imported_file", "/home/divykj/aPythonFile.py")

imported_file.some_function()
Code Snippet
from importit import import_code

python_code = """
def some_function():
    # do some crazy things
    pass
"""

imported_code = import_code("imported_code", python_code)
imported_code.some_function()

Planning to add Github, Gitlab, Bitbucket (and other git repository services) and maybe PyPI support soon.


How to install?

 pip install importit

Want to contribute?

To get more information on contributing, go to the CONTRIBUTING.md.

Also read the CODE_OF_CONDUCT.md.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

importit-0.1.3.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

importit-0.1.3-py3-none-any.whl (5.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page