Tagged Questions
0
votes
2answers
18 views
is it possible to unzip a .apk file(or generally any zipped file) into memory instead of writing it to fs
I am doing research with mobile apps and need to analyze their code after unzipping the .apk file. However, the process of unzipping naturally involves lots of IO, which doesn't make it scalable, I am ...
-1
votes
0answers
22 views
MongoDB document organization structure for a comic book database [closed]
I am trying to architect a comic book database for a website (www.longboxed.com).
I have implemented a basic design in MongoDB. I have a 'comics' collection that has a flat structure containing all ...
0
votes
2answers
40 views
Where to begin with saving user input in Python
I am building a basic app in python in which the user inputs data being used for the task. I found how to write to a table using mysql, but I'm not sure if that's what I want. I'd like them to be ...
-4
votes
1answer
63 views
How to pratically start programming [closed]
I've just started getting into programming (python), but I'm looking for a practical way of programming where I can build an application or something alike. What should I code? Or should I just learn ...
-1
votes
0answers
50 views
IOS Development in Python [closed]
I'm thinking about downloading the Xcode IDE in order to develop IOS applications mainly because it now supports Python. How does one get started in learning how to develop apps for IOS using python ...
-2
votes
1answer
44 views
standalone Python application [closed]
I need some simple examples and tutorials for creating stand-alone python application. I've never do such a thing, so any help is needed.
More precisely, I have one class - SVGViewer, with one ...
0
votes
1answer
48 views
Django smart/chained select manytomanyfield
here is the deal, this is my model:
class Health_plan(models.Model):
a = models.IntegerField ()
b = models.IntegerField ()
c = models.IntegerField ()
class Doctors_list(models.Model):
...
0
votes
1answer
68 views
Create standalone applications with py2app by not using the system installation of Python on Mac?
I am using py2app to package a Python application to be used on other Mac computers. I am currently running OSX 10.7.5 and the system Python installation on my computer is Python 2.7.1. When I ...
0
votes
1answer
27 views
listproperty GAE to string method
So my problem below is that when it sends the json object lets say I have multiple items in the lists? well it sends that many objects except changing that field once in the dict that i created above. ...
3
votes
4answers
71 views
django structure for multiple modules
I'm very new to django and python as well. I want to try out a project written in django.
Let say the project have 3 modules
User
CRUD
Forgot password
login
Booking
CRUD
Search
Default ...
-2
votes
1answer
83 views
Put Python/Tkinter into an application icon
I wrote a program in Python, then created a GUI using Tkinter. When I use programs on my computer (like Microsoft Word), I don't need to access the GUI from the command line I just click the ...
0
votes
1answer
32 views
resolve a statement in Python in order to restart the procedure when an error occurs
I wrote this statement in Python (for convert the program in an executable) in order to load all text files in a folder (*.txt) or a single text file, check if the data format is correct (get_parse ...
1
vote
1answer
171 views
How to make custom tray icon for an application?
I need a custom tray icon for my application written in python. I am using the code from ubuntu wiki.
https://wiki.ubuntu.com/DesktopExperienceTeam/ApplicationIndicators#Python_version
The problem ...
0
votes
1answer
18 views
Path information for a python application installed in a different folder per users
I am not really certain how to look for this, so I'll just describe the situation.
I am using Python 3.3 to build a cross-platform application using tkinter for a GUI, and cxfreeze to create an ...
1
vote
1answer
183 views
Python Tkinter Calculator wont evaluate text from entry widget
I am trying to make a simple calculator app using tkinter, but everytime I run the code below i get an error message saying
Traceback (most recent call last):
File ...