About 1,590,000 results
Open links in new tab
  1. python - Make front end GUI for windows desktop app - Stack Overflow

    Jan 22, 2021 · Im currently coding in python , and made 3 projects in tensorflow and openCV. The projects are pure python codes and I want to make a desktop app for them. I have no knowledge of …

  2. Bridging a Python back-end and JavaScript front-end

    Aug 8, 2017 · The workflow would be something like: obtain the file contents from the browser, execute the Python script with the contents, return jsonified objects of computed values, and plot those …

  3. How to create HTML frontend for python - Stack Overflow

    Oct 31, 2018 · I would like to write a simple python application, that generates a HTML "website" as frontend. It is not meant to be hosted online or to consist of multiple pages. The user will simply open …

  4. How do I design a Python API as a backend to a React/JS frontend?

    Jul 1, 2023 · Front End When working with React, a framework that has been very popular for the past few years is NextJS. It acts as an AIO solution for web apps, rendering your frontend, handling …

  5. python - How to remove leading and trailing spaces from a string ...

    May 4, 2012 · Should be noted that strip() method would trim any leading and trailing whitespace characters from the string (if there is no passed-in argument). If you want to trim space character (s), …

  6. How do I remove leading whitespace in Python? - Stack Overflow

    19 The question doesn't address multiline strings, but here is how you would strip leading whitespace from a multiline string using python's standard library textwrap module. If we had a string like:

  7. How to connect my python back end to my HTML front end to create a …

    May 17, 2019 · This is for my mini project which is evaluated..basically i need a GUI to show double hashing implementation. I used html and css to create my front end but i am not able to connect my …

  8. Python (back-end) and Kotlin (front-end) for Android

    Oct 3, 2022 · Ok I was doing some data science in python over the weekend and I got to looking at python for mobile development. I was curious as to if it's possible to use both Python (back-end) and …

  9. python - How to make a Tkinter window jump to the front ... - Stack ...

    Dec 12, 2009 · How do I get a Tkinter application to jump to the front? Currently, the window appears behind all my other windows and doesn't get focus. Is there some method I should be calling?

  10. How to combine javascript/react frontend and python backend?

    Mar 4, 2020 · 11 You can expose your Python scripts on a REST API which will be called by your React frontend. Database connection will be made by this API, and the response is sent to your frontend. …