Skip to content

A stub file with correct signatures and docstrings for the python uwsgi module

License

Notifications You must be signed in to change notification settings

dakra/uwsgi-stub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

uwsgi-stub

This is a stub file for the python uwsgi module with function signatures and docstrings.

Normally if you import uwsgi in your python application your editor highlights it as an error and also doesn't autocomplete any uwsgi.* functions since the module is only made available if you run your app in uwsgi.

You can install this package if you want autocompletion and docstrings for the uwsgi module.

Note that ImportError is still raised when importing the uwsgi stub module so you can savely install it just for autocompletion and still use your

try:
    import uwsgi
    # do stuff with uwsgi module here
except ImportError:
    # do alternative things if not running in uwsgi

Installation

Install from PyPI using pip or easy_install.

$ pip install uwsgi-stub

Usage

Just import uwsgi in your editor and enjoy uwsgi docstrings and autocompletion.

About

A stub file with correct signatures and docstrings for the python uwsgi module

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages