Tagged Questions
0
votes
1answer
30 views
how to serve list of static files in django?
is it possible to serve a list of static files from a given directory in django through templates. Eg. www/example.com/files/path/to/file/ should give a list of all files in the given directory and ...
0
votes
1answer
52 views
Python 2.x - creating static instance of class in same class
I am trying to write an "enum class" in python. A slight nuisance I am currently experiencing is the inability to define enum values inside the enum class. That is, I can do this:
class Fruit:
...
0
votes
1answer
30 views
Django STATIC_FILE doesn't work as i thought?
I've searched for answer for this question, but i havent found any solution for my problem. I want to link css to my project, but just cant handle how STATIC_URL work
<head>
{% load ...
-1
votes
4answers
60 views
Python static variable resolution [closed]
I am trying to create a counter of all instances created for a particular class.
It is clear that my code does not increment self.__class__.counter past 1. What am I doing wrong?
class ...
0
votes
1answer
96 views
Static files: No such file or directory error in Django 1.4 [closed]
I created an app locally with the django development server and now want to host it on the web.
I uploaded and installed everything on a server with python 2.7, django 1.4.5 and flup. Everything ...
0
votes
1answer
65 views
python static variable in instance method
Here is my code not working
class MyClass:
special_items = {}
def preload_items(self):
special_items['id'] = "properties"
NameError: global name 'special_items' is not defined
...
1
vote
1answer
48 views
Overriding a static file of an app?
I am trying out django-geoposition (actually, django itself). I would like to use my own version of the static file geoposition.js. So under my project, I created a static/geoposition/geoposition.js ( ...
2
votes
1answer
68 views
In python, is there a static equivalent to isinstance?
I want to scan a module (using dir()) and extract all class names (type objects) of classes that extend a certain parent class.
Is there any way to do this without first creating instances that I can ...
2
votes
4answers
73 views
Creating objects from static properties in python
I have a Category class which has different names for each categories, the names of the categories can be unknown, good and bad, all categories share the same behavior so i don't want to create sub ...
2
votes
1answer
92 views
Python3: check if method is static
Simmilar question (related with Python2: Python: check if method is static)
Lets concider following class definition:
class A:
def f(self):
return 'this is f'
@staticmethod
def g():
...
0
votes
2answers
44 views
only letting user do a function once in Python?
I am very new to Python. running on windows while I wait for some stuff for my Pi.
I am writing a game where the user travels through a tower via text inputs.
the user can use "a" "d" "w" to look ...
0
votes
2answers
60 views
Why load staticfiles for every template even if it is extendend?
I have a base.html file which has some 'random' html code and I have the following code:
{% load staticfiles %}
<!DOCTYPE html>
<html>
<head>
...
{% block ...
1
vote
2answers
183 views
Django - referencing static files in templates
I'm having difficulty referencing static files in my templates. I am using Twitter Bootstrap and have the bootstrap files (css, img, js) sitting at mysite/static.
I have set the STATIC_URL, ...
2
votes
2answers
305 views
Build a Call graph in python including modules and functions?
I have a bunch of scripts to perform a task. And I really need to know the call graph of the project because it is very confusing. I am not able to execute the code because it needs extra HW and SW to ...
1
vote
1answer
190 views
Django absolute url works but relative url does not for static files
I have searched around and apologize if this is a basic question. I am trying to get my django app to serve static files. If the STATIC_URL is set to the absolute path (ie http://localhost/static) ...
0
votes
1answer
57 views
python static class with static method that uses self?
I'm doing a database insert script in pycassa. I want to set up a public static class that defines some variables that will get used a lot by other functions later on. Heres what I have...
class ...
1
vote
1answer
49 views
Accessing static C functions in Python
How can I access static function in Python from C using SWIG? For example:
static int foo(int a, int b);
The C code can't be changed.
1
vote
0answers
82 views
Compiling Python to a static lib and using pythoncore.lib
I'm trying to build Python 2.7 as a static single .lib file.
I've already made the following changes to the Python source code:
Change to "Release" mode.
Change all DLL projects to Static library ...
5
votes
1answer
59 views
Python: Initializing an object's members with a parent's constructor?
So I have some Python code that's structured something like this;
class GameObject(pygame.spriteDirtySprite):
def __init__(self):
pygame.sprite.Sprite.__init__(self)
self.image = ...
1
vote
2answers
164 views
Python: Making a class variable static even when a module is imported in different ways
Let's consider the package structure as below:
myApp
|-- myPackage
| |-- __init__.py
| +-- myModule.py
|-- __init__.py
+-- main.py
myModule.py contains a single class such as:
class ...
4
votes
3answers
110 views
One int for every python object [duplicate]
Possible Duplicate:
Auto-incrementing IDs for Class Instances
I want to something like the following Java class in Python:
public class MyObject {
private static int ID = 0;
...
3
votes
2answers
221 views
Compiling and linking C extension for Python in Xcode for Mac
I am trying to compile a simple C extension in Mac to use with Python, and all works well in the command line. Code and gcc command that works are presented below.
Now I am trying to build the ...
0
votes
1answer
90 views
Python - Accessing subclasses' variables from parent class while calling classmethods
i'm trying to build sort of a "mini django model" for working with Django and MongoDB without using the norel Django's dist (i don't need ORM access for these...).
So, what i'm trying to do is to ...
0
votes
3answers
264 views
Django Static URL not rendering images correctly
I'm writing a view that displays a set of images on a page.
This is the model
#models.py
class Movie(models.Model):
title = models.CharField(max_length = 500)
poster = ...
1
vote
1answer
246 views
How to access class-scope variables without self?
So I have a class, which I'm using as a local namespace. I have some static functions in the class, but they can't access the class scope variables. Why is this?
class Foo:
foo_string = "I am a ...
0
votes
2answers
116 views
how to point to static folder in django
I am learning django and I already have a bit noobish question. I can not point to my static folder and I tried all the combinations, watched people do it in youtube tutorials etc.
My settings.py ...
2
votes
1answer
116 views
How load Static Files in Models Admin File from Django?
I have my Django static files in Amazon Servers, and I trying to load these files in my Model Admin File, but its only work with absolute URLs.
In my Django templates I load and call my static files ...
0
votes
1answer
117 views
Django local static files path puzzle
I'm trying to render static files locally in development. I have followed the rules and placed stylesheets in /static/ in my Django project folder, setting STATIC_URL = '/static/'. Using the {{ ...
5
votes
4answers
4k views
Python class static methods
I need a help here. I'm really new to Python came in with C++/C#/VBA background. I want to create kind of utility class which contains only static methods which are callable by the name class prefix. ...
1
vote
2answers
159 views
Python static setters and getters?
I have put a Jira client for my django application together and now need to make it static but I can't figure how to convert @property and @?.setter into static fields:
Say I have a class:
class ...
0
votes
1answer
528 views
Django : execute command collectstatic raise UnicodeDecodeError
Why raise UnicodeDecodeError?
I try to deploy my django app using apache
to copy static files, typing
$python manage.py collectstatic
and I got error message like below.
You have requested to ...
0
votes
1answer
54 views
Member of different class instances referring to the same object via argument default value in method definition
The Python documentation says about keyword arguments (glossary):
...The variable name designates the local name in the function to which the value is assigned...
Thus I thought different ...
1
vote
2answers
657 views
STATIC_URL is not working in django
Please consider my seetings.py file given below of my django project
# Django settings for sadhana project.
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ADMINS = (
# ('Your Name', ...
1
vote
2answers
68 views
Assigning class variable dynamic value from inside a classs
I am trying to dynamically assign a class variable a value from inside of a class.
Class Test:
dynamic_value = get_dynamic_value()
I believe get_dynamic_value() should belong to the Test class. ...
13
votes
1answer
2k views
Proper way to handle static files and templates for Django on Heroku
I'm moving over my django app to Heroku, and I was wondering what the proper way to handle static files is. Do I just push them via git to Heroku? Or should I be storing them on SW3 or something? ...
1
vote
2answers
487 views
Django with ./manager runserver works well, while Django + uwsgi return 404
This si my settings.py about static in settings.py:
STATIC_ROOT = '/home/coat/www/site/app/static/'
STATIC_URL = '/static/'
STATICFILES_DIRS = (
...
0
votes
3answers
66 views
static class variables
I can't understand how works the code below:
class Host:
name = None
fileList = []
def __init__(self, hostName):
self.name = hostName
def AddInfo(self,file):
...
0
votes
1answer
64 views
Adding convenience static / class methods without removing or breaking existing implementation
I am getting the hang of the OOP paradigm, and the art of making expandable and reusable code is something I want to improve at. Let's say in theory that I have a Python library of utility classes ...
3
votes
3answers
83 views
Pythonic, elegant way of dynamically defining a list of statically defined functions?
I have only started learning Python recently. Let me explain what I am trying to accomplish. I have this .py script that basically has several functions (hard-coded into the script) that all need to ...
0
votes
1answer
348 views
Serve stylesheet with webapp2 outside of Google App Engine
So I have successfully deployed an app using webapp2/jinja2 and a Paste server, but am having trouble serving static stylesheets.
I have had luck accessing static files via this method, as well as ...
1
vote
1answer
109 views
STATIC files are not showed in Django templates
I'm trying to show images/js/css in my Django templates with {{ STATIC_URL }} label. In theory, this works because in browser, when i see the printed code the path to requested file is something like ...
1
vote
3answers
556 views
Django: How to you organise static pages in apps? [closed]
Its said to keep each functionality as an app and keep it as pluggable as possible.
So,
How do you organise pages like :
Homepage
About Us
Contact Us
etc
These are not exactly functionality, so ...
2
votes
4answers
820 views
Static classes in Python
I once read (I think on a page from Microsoft) that it's a good way to use static classes, when you don't NEED two or more instances of a class.
I'm writing a program in Python. Is it a bad style, if ...
0
votes
2answers
83 views
Using python static class C#/Java style, scope difference errors
I have two files, namely game.py and map.py. The following simplified code resides in them:
from PyQt4.QtGui import *
from PyQt4.QtCore import *
from datetime import *
from map import *
class ...
4
votes
3answers
1k views
Django static files won't load
i'm a Django newbie working on my first project and having a problem with static files.
I have created a simple auth system using django.contrib.auth consisting of two templates: ...
3
votes
1answer
5k views
Using Tornado, how do I serve static files and serve a favicon.ico from a different directory than the static path?
I am trying this:
favicon_path = '/path/to/favicon.ico'
settings = {'debug': True,
'static_path': os.path.join(PATH, 'static')}
handlers = [(r'/', WebHandler),
...
3
votes
1answer
169 views
python class variable lookup by value
I have a class with static variables for error/status code lookup.
Take HTTP status code as example
class Foo(object):
OK = 200
Not_Modified = 304
Forbidden = 403
...
0
votes
1answer
298 views
Running server application behind router with No-IP DNS redirecting client?
So i supose that i have a server application written in python
import bottle
import os
from bottle import route, run
@route('/', method='GET')
def homepage():
return ...
0
votes
1answer
147 views
If I have an @staticmethod in my python webapp, do I need to protect it with threading.RLock()?
I have a webapp built in python running off the paste server. If I have declared an @staticmethod that assigns state to method-scoped variables do I have to protect it with eg threading.RLock() (or is ...
0
votes
1answer
128 views
Once and for all, static files vs Django 1.3
I've been trying to follow every single tutorial and thread there is, i jast cant get it togheter.
Sorry, but please exlpain it to me as if i was three years old..
What i have:
a CSS that i'd like ...




