Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I want to create a functional POS system with python, I just don't know where to begin. I am fluent in the language, but I have never done any web development with python. Can someone point me in the right direction, how to incorporate python into html and mysql?
Not sure what POS means, is that Point of Sale?
For web development, people in Python land tend to go with Django and Flask as they are the most popular.
https://www.djangoproject.com/
and
http://flask.pocoo.org/
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I'm making a POS system using Tkinter for my Computing Programming Project and for the program analysis we have to talk about the proposed solution and how we'll go about carrying out the program. For this, it's recommended to talk about system requirements needed to run the program but I'm not very experienced in talking about system requirements so I'm not sure what numbers to mention in terms of RAM, CPU, storage, etc.
Could you give me some basic numbers that you'd expect a computer to have in order to run a POS program similar to this one?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have a small piece of coding that I would like to use to play either mp3 files or wave files. Im not sure how to do this.
By the way I am fairly new to programming and am using python 3.2.
All help would be much appreciated. Thanks
You could use http://www.pygame.org/news.html
Then something like this using pygame.mixer.music:
import pygame
pygame.mixer.init()
pygame.mixer.music.load("myfile.mp3")
pygame.mixer.music.play()
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for a way to test python programmers as part of my hiring process.
I can understand python and follow the flow but have no idea how to technically challenge someone.
Can someone recommend an online test?
Thanks
There's been plenty of such discussions over at /r/Python. Here's one:
http://www.reddit.com/r/Python/comments/1knw7z/python_interview_questions/
What do specifically want to check?
Their algorithm skills?
Knowledge of specific python technologies (such as django)?
Python pit falls compered to other 3 generation language?
For the first one any interview question can be ok (like how to reverse a linked list, or sort an sorted binary tree and so on) you can find more here http://programmerinterview.com/index.php/data-structures/introduction
For the second ones it more depends on what are you looking for (web developer, server side and so on).
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Just wondering how can you send JSON data to the front end of a web app using Flask. Don't have that much experience with it, just looking for some ideas?
Create a dictionary Dict.
If Dict is your dictionary, you can just do
return flask.jsonify(**Dict)
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
The only references I can find state that it's theoretically possible to write iOS apps using python. Does anyone know of any examples of apps that were written this way?
Looks like the iOS PyObjC hasn't really been maintained:
Python Hello World in PyObjC on iPhone?
This is the best project I have ever seen related with the topic
http://pyzia.com
Unfortunatelly, you can't download it yet.
Without it, I think you're left with PyObjC.
You have a good introductory tutorial here.