La til slabbedasker.py, ett kort lite script som finner ut hvem som har negativ kreditt.
(\ /) (^.^) (> <) Bunny happy, good change.
This commit is contained in:
9
slabbedasker.py
Executable file
9
slabbedasker.py
Executable file
@@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
from db import *
|
||||||
|
# Start an SQL session
|
||||||
|
session=Session()
|
||||||
|
# Let's find all users with a negative credit
|
||||||
|
slabbedasker=session.query(User).filter(User.credit<0).all()
|
||||||
|
|
||||||
|
for slubbert in slabbedasker:
|
||||||
|
print "%s, %s" % (slubbert.name, slubbert.credit)
|
Reference in New Issue
Block a user