Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Trkaga
/
King
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
King
/
api
/
billing.py
Trkaga
Create api/billing.py
4109384
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
169 Bytes
users = {
"demo"
: {
"credits"
:
10
}
}
def
use_credit
(
user
):
if
users[user][
"credits"
] <=
0
:
return
False
users[user][
"credits"
] -=
1
return
True