Questions tagged [python]

Python is a dynamic and strongly typed programming language designed to emphasize usability.

Python is a dynamic and strongly typed programming language that is used for a wide range of applications. It is a general-purpose, high-level programming language that is designed to emphasize usability.

80 questions
3
votes
0 answers

Dependency vulnerability scanner for Conda?

Python's pip dependency manager is supported by a number of vulnerability scanners (e.g., Snyk, Gitlab's gemnasium, PyUp), but I have not found such a service for scanning dependencies defined in Conda's environment.yml. Is there a service out there…
JosephSlote
  • 131
  • 3
0
votes
1 answer

Why flask is returning a default login page instead mine, custom one

I have an issue with my app, since I was adding the feature "users roles" I am getting a strange page content on login page looks like default login page instead of my custom login page and I cannot explain why is happening because I did not change…
alex
  • 11
  • 5
0
votes
1 answer

Vscode/pytest gives me an error when importing

I asked this question on the regular stackoverflow but i think you guys will be much more competent about this topic. My guess is that is some sort of python setup issue. When I write an import line like this from mypackage import something and run…