for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
#!/usr/bin/python
# -*- coding: utf-8 -*-
class Sorting:
CREATED_AT = "created_at"
PRICE = "price"
class SortingDirection:
DESCENDING = "desc"
ASCENDING = "asc"
class Processor:
PAYPAL = "paypal"
BITCOIN = "bitcoin"
BANK_WIRE = "bank wire"