-
I have upgraded my packages to:
flask-2.2.2
injector-0.20.1
Flask-injector-0.14.1
apispec-6.0.2
flask-apispec-0.11.4
I'm using Flask-apispec to auto-generate api documentation, and I'm using …
-
## CKAN version
2.10
## Describe the bug
With a custom license group defined with `licenses_group_url` config option, the custom licenses can cause 500 errors if missing certain attributes.
…
-
Traceback (most recent call last):
File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1997, in __call__
return self.wsgi_app(environ, start_response)
File "/usr/local/lib/pyth…
-
```
import traceback
from flask import Flask, request, jsonify
from solana.rpc.api import Client
from solana.rpc.api import Keypair
from solana.rpc.commitment import Confirmed
from solana.rpc.ty…
-
I am trying to use restx alongside a traditional flask route.
However, I cannot get the default "/" route to work.
Running code below...
- http://localhost:5000/test shows swagger doc
- http://…
-
Traceback (most recent call last):
File "/opt/saltpad/venv/lib/python2.7/site-packages/flask/app.py", line 1836, in **call**
return self.wsgi_app(environ, start_response)
File "/opt/saltpad/ve…
-
The backend is Azure's Cosmos DB using the Mongo API. Not 100% sure if this is a Cosmos DB issue or a Flask Security Issue.
Flask-Security version==1.7.5
ERROR:
mongoengine.errors.FieldDoesNot…
-
Hello, I am getting the following error
```
[nltk_data] Error loading averaged_perceptron_tagger:
* Serving Flask app "imessage2020wrapped.app" (lazy loading)
* Environment: production
WARN…
-
I'm trying to use a JSON schema to generate a model to be used with `marshal_with`. Here's my MWE:
```python
#!/usr/bin/env python3
from flask import Flask, Blueprint
from flask_restplus import Re…
-
```
def test_insert_5_different_todos(flask_app):
from app.app import todos_list
for x in range(ord('a'), ord('e') + 1):
flask_app.post("/todo", json={"title": chr(x), "due_date"…