All Questions
Tagged with python web-applications
41 questions
1
vote
1
answer
621
views
Deciding between logic on the front-end or back-end
Before I begin, I want to say I am very new to this and I am a junior but also solo developer with no seniors to ask for guidance. Please feel free to explain to me that I am not approaching it ...
0
votes
1
answer
94
views
Am I making this web app right?
I am currently making a newsletter website that will send you a email with the top ten manga for that week. Currently I have a web scraper that retrieves the top ten along with descriptions and other ...
0
votes
0
answers
286
views
How to store multiple-users authorization tokens from a single service if I can't use a persistent storage?
I'm new to "web development" so I don't know much about ways to store data.
I'm trying to build a web app using Python-Django which accesses private data from multiple accounts. The data ...
1
vote
1
answer
578
views
Is bytes as request parameters as rest endpoint a security risk?
I am working on an application where user can send in an absolute path of an image or URL as string in API endpoint. My code is able to handle that.
Now I have been asked to add the code which can ...
2
votes
1
answer
1k
views
Best approach for developing a stateful computation-heavy application with a rest-api interface using python?
I want to develop an end-to-end machine learning application where data will be in GPU-memory and computations will run on the GPU. A stateless RESTfull service with a database is not desirable since ...
-1
votes
1
answer
397
views
Is Python's Django WebFramework good to design Expert System as a Web App?
I hope everyone is good. Well, I am at the end of my degree BS (Software Engineering), and in the third Phase of my Final Year Project named as 'Test Phase'.
My Project is to build an Expert System ...
2
votes
1
answer
231
views
Access control to Django App running on private server
I am a self-learning programmer (with a fair share of python knowledge), and currently a company asked to develop a simple application so that they can track employee expenses (and I thought of using ...
0
votes
1
answer
334
views
Combining web app and CLI to python package
I'm writing a program in Python that has two different entry points. There's a CLI that processes some data and needs to be installed to run hourly on a server, this populates a database. There's also ...
4
votes
2
answers
130
views
Pandas based visual data cleaning tool
I am looking to build an web-application which would allow user to upload csv file - see preview of few rows in the file and then apply different cleansing and standardisation rules.
For example the ...
0
votes
1
answer
1k
views
Should I access the backend directly or through an API layer?
Please allow me to ask my question using an example where we have a database with flight data and I want to make a web app where users can search, select, and book a flight.
I wrote some classes ...
2
votes
1
answer
4k
views
Best practices for calling multiple APIs and manipulating data before showing it to user?
I am building a web application that makes use of multiple API's (Google Maps, Weather APIs, and more). I am using Python + Flask on the backend, and Javascript (probably with React, I have not ...
-1
votes
2
answers
316
views
OOP Design Choices in a Web App
I am about to start coding for a school project that requires me to demonstrate good OO practices in a web app. Now, I have built a few web apps and have never felt the need to define my own classes ...
4
votes
1
answer
1k
views
Advice needed on approach to log raw request/response body from APIs
I need some advice on an approach to log raw request/response data from a few webapps, for all operations and hits on all APIS accessed via HTTP methods (mostly HTTP POSTs), that I have hosted.
...
4
votes
2
answers
6k
views
Commercial usage of AGPLv3 python web framework
There's shuup django based e-commerce web-framework which is licensed AGPL-3.0
I would like to use it in my commercial project, which ultimately means that I'll want to modify a thing or two in the ...
4
votes
2
answers
5k
views
Can I use Python with JavaScript as a UI?
First of all I am not a professional programmer, but a student with a programming hobby so I am sorry if my question is stupid.
I want to write a chess engine to be used on the web and had already ...