We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe.
In libpysal/__init__.py, you have the following import.
libpysal/__init__.py,
from . import examples
and inside the __init__.py of the examples package, it is loading the examples every time, which is time-consuming.
__init__.py
Describe the solution you'd like
I was wondering if loading the examples could be optional since it is time-consuming because always loads the examples from the internet.
Describe alternatives you've considered
We have considered creating a Fork and avoiding loading the examples every time, but it is not desirable.
Additional context Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
xref #522
Sorry, something went wrong.
sjsrey
No branches or pull requests
Is your feature request related to a problem? Please describe.
In
libpysal/__init__.py,
you have the following import.from . import examples
and inside the
__init__.py
of the examples package, it is loading the examples every time, which is time-consuming.Describe the solution you'd like
I was wondering if loading the examples could be optional since it is time-consuming because always loads the examples from the internet.
Describe alternatives you've considered
We have considered creating a Fork and avoiding loading the examples every time, but it is not desirable.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: