PyLint extensions for PeeWee
Project description
# pylint-peewee
## Foreward
Do you use PeeWee? Do you also use PyLint? And the PeeWee flask_util?
Are you tired of getting PyLint errors like:
` ************* Module application.models.base E: 32,15: Class 'BaseModel' has no 'get' member (no-member) E: 45,16: Class 'BaseModel' has no 'select' member (no-member) ************* Module application.models.client_settings E: 40,19: Class 'Settings' has no 'create' member (no-member) E: 53,12: Class 'Settings' has no 'select' member (no-member) E: 68,23: Class 'Settings' has no 'select' member (no-member) E: 81,17: Class 'Settings' has no 'select' member (no-member) `
Just because you’re using flask_util?
If so, this is the plugin for you!
## How it Works
This plugin works very simply by hooking into ASTroid’s Class Parser, seeing if the current class has a base of: db.Model (the standard for flask_util) and, if so, it stubs out all the missing methods of: ‘create’, ‘select’, ‘update’, etc.
The methods are stubbed out by returning a class with the proper members, which are all functions with a pass implementation.
## TODO
Make the base class configurable, so you can use Model, MyModel, peewee.Model, what have you.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pylint-peewee-0.2.0.tar.gz
.
File metadata
- Download URL: pylint-peewee-0.2.0.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cf239f98b894d5c947da49485183b10000c17b8c5d1bfca3cab82287362e07e |
|
MD5 | 8c14d67987c2166361cee56c81f8e6d8 |
|
BLAKE2b-256 | 706461134da8cd7cefb1cbb11f01eafac690a6d93081183078fc6491aa9065fb |