Skip to main content

Questions tagged [python]

Python is a dynamically typed, high-level interpreted programming language. Its design focuses on clear syntax, an intuitive approach to object-oriented programming, and making the right way to do things obvious. Python supports modules and exceptions, and has an extensive standard module library. Python is general-purpose and thus used widely, from the web to embedded systems.

Question list filters

Filter by
Sorted by
Tagged with
Score of 15
4 answers
2380 views

I am a beginner in Docker and just learning to integrate it into data science projects. From the information online, I see that Docker is advertised as a way to capture the libraries and dependencies ...
Score of 0
2 answers
550 views

I'm working on an e-commerce startup using an Open Source based core as the main ERP (for references, it is based on Odoo 18 Community). I want to build an internal AI assistant that allows non-...
Score of 5
6 answers
924 views

I am trying to partition some code that scans input in a nontrivial way, from the code that consumes pieces of that input, but also want to support generation/iteration, and I wonder what is the most ...
Score of 4
2 answers
290 views

I am trying to automate an old GUI tool which requires filling in some data from a CSV and selecting appropriate tree item values based on it. I need to do this in multiple instances of the ...
Score of 0
2 answers
298 views

I have a Python class called FunctionsManager; its __init__() method is the following: class FunctionsManager: def __init__(self, instance_class1, instance_class2, ..., instance_classN): ...
Score of 2
1 answer
291 views

I'm working on a web-based app that uses Django and Angular. This app uses several external APIs to fetch environmental data from different monitoring networks. We then use these data to perform ...
Score of 2
2 answers
334 views

I am a beginner programmer with little experience in building complex applications. Currently I'm making a messenger using Python's FastAPI for the back-end. The main thing that I am trying to achieve ...
Score of 3
6 answers
802 views

I'm currently drafting a Python coding standard for internal enterprise use, primarily targeting business applications that involve heavy data access, reporting, and transactional logic. In this ...
Score of 0
2 answers
447 views

im kind of a newbie so take me easy i face a problem every time i make a project specially Client projects, which is Global State i always struggle to do it for example, here is the structure of one ...
Score of 4
2 answers
310 views

I am developing a python package that needs to be able to read/write from/to multiple formats. E.g. foo format and bar format. I am trying to contain the functions relating to each format in a single ...
Score of 1
1 answer
155 views

I'm looking for a method to map the content of a structured text file to a nested dictionary (dictionary tree). The text file consists of (nested) sections with each section starting with the pattern ...
Score of 4
2 answers
559 views

I am trying to write a backend for use with a completely text based UI for one shot operations (eg. python scriptname arg, executes that argument and exits) and a GUI using the curses library for some ...
Score of 3
1 answer
392 views

I'm having trouble with managing the working directory in Jupyter Notebook. For example, I have a .py script that requires me to change the working directory to its directory to run it properly. I've ...
Score of 0
2 answers
814 views

I have a game server implemented in Python to which clients can connect and play against each other. I'd like to be able to reload configuration from a config file without restarting the server (as ...
Score of 5
2 answers
1858 views

Say I am making a pdf editor app with the following structure: ├── main.py ├── 📂 drawing_functions/ ├── 📂 util/ ├── 📂 GUI/ └── 📂 document_handling/ Each of these folders have a collection of ...

15 30 50 per page
1
2 3 4 5
136