About 66,400 results
Open links in new tab
  1. What is the best project structure for a Python application?

    Doesn't too much matter. Whatever makes you happy will work. There aren't a lot of silly rules because Python projects can be simple. /scripts or /bin for that kind of command-line interface …

  2. Program web applications in python without a framework?

    I am just starting Python and I was wondering how I would go about programming web applications without the need of a framework. I am an experienced PHP developer but I have …

  3. python - Creating projects based on jupyter notebooks - Stack …

    Having learned to program in Python with Jupyter Notebooks, I've found this to be a very practical way of analyzing data, writing simple programs and even interacting with databases. However, …

  4. Best practices for adding .gitignore file for Python projects?

    I'm trying to collect some of my default settings, and one thing I realized I don't have a standard for is .gitignore files. There's a great thread showing a good .gitignore for Visual Studio …

  5. python - ERROR: Failed to build installable wheels for some …

    Jul 2, 2024 · I am trying to install Pyrebase to my NewLoginApp Project using PyCharm IDE and Python. I checked and upgraded the version of the software and I selected the project as my …

  6. Learning Python Exercise - Stack Overflow

    Oct 17, 2010 · I have taken it upon myself to learn python. As it is my second language is has not been that hard to get the hang of. I am looking for some simple python projects to undertake …

  7. How to structure a simple command line based python project

    Oct 25, 2014 · I wrote a command line app in a single file app_name.py and it works. Now I am breaking it into different .py files for easier management and readability. I have placed all …

  8. python - Drawing GUI using Tkinter throws 'NameError' - Stack …

    Python uses whitespace to define scope. You've made a class called Window, but your __init__() and init_window() functions exist outside of it. When you try to create a new Window in: app = …

  9. Newest 'python' Questions - Stack Overflow

    I'm building a simple CLI tool for cryptography using Python's argparse module. One of the features is base64 encoding. However, when I run this command: python crypto.py --encode …

  10. python - How to organize and categorize small projects in GitHub ...

    Dec 21, 2016 · Then, Gists are a fine way to share simple things without adding full repositories to your profile. And you can still clone them (the remote URL is [email protected] :/<gist-id>.git ) …