- Core rate limiting with multiple algorithms (sliding window, token bucket, etc.) - SQLite and memory backends - Decorator and dependency injection patterns - Middleware support - Example usage files
7 lines
93 B
Python
7 lines
93 B
Python
def main():
|
|
print("Hello from fastapi-traffic!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|