Importd

Latest version: v0.4.3

Safety actively analyzes 681866 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 4 of 4

0.2.0

------------------

There is a backward incompatible change in this release. importd has removed
atexit magic, which means a call to d.main() must be included somewhere.

.. code-block:: python

from importd import d

d("/")
def hello(request):
return d.HttpResponse("hello world")

if __name__ == "__main__":
d.main() NOTE THIS

* BACKWARD INCOMPATIBLE: remove atexit magic, d.main() is the replacement
* gunicorn cleanly exits now
* tests, support django 1.4.3 and 1.5.1 for each of python 2.6, 2.7 and 3.3
* less magic, no more sys.modules tweaking
* runserver now reloads when any file changes
* added auto generated MANIFEST.in (using check-manifest)
* added support for mounting urls to custom locations

0.1.4

-------------------

* setup.py was buggy

0.1.3

-------------------

* setup.py was buggy

0.1.2

-------------------

* few bug fixes, APP_DIR was calculated incorrectly
* automatically configure databases if DATABASES is not passed
* auto import .views and .forms of each installed app to give all
d("pattern") decorators visibility
* auto import .signals in each app to allow signals to register themselve,
better than import them from models.py explicitly and fighting the circular
imports issue

0.1.1

------------------

* refactored out smarturls into a separate project

0.1.0

------------------

Initial release.

Page 4 of 4

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.