User Noah Clark - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T11:22:19Zhttp://stackoverflow.com/feeds/user/131429http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1694259/django-app-not-showing-up-in-admin-interface0Django App Not Showing up in Admin InterfaceNoah Clark2009-11-07T20:16:54Z2009-11-07T20:21:39Z
<p>I'm currently moving from my development server to an Apache web production server.</p>
<p>I've tried doing the following just by copying it over and I can login to the admin panel but it doesn't show up.</p>
<p>My admin.py in my app looks like this:</p>
<pre><code> import models
from django.contrib import admin
admin.site.register(models.Organization)
</code></pre>
<p>And here is my models.py</p>
<pre><code>from django.db import models
class Organization(models.Model):
name = models.CharField(max_length=100)
website = models.URLField()
azon_code = models.CharField(max_length=50)
gooe_code = models.CharField(max_length=50)
cj_code = models.CharField(max_length=50)
</code></pre>
<p>I've resyned the database and restarted apache as well thinking that might do something.</p>
http://stackoverflow.com/questions/1656159/could-not-import-no-module-named-django-error-with-apache0Could not import/No module named Django Error with ApacheNoah Clark2009-11-01T02:03:10Z2009-11-01T20:35:18Z
<p>I had a small proof of concept set up on a development server on a local machine. I'm now trying to move it over to django on a production server, which I'm using webfaction for. However, now that I'm switched over to apache from the built in django server I get the following:</p>
<pre><code>ViewDoesNotExist: Could not import orgDisplay.views. Error was: No module named orgDisplay.views
</code></pre>
<p>But when check my orgDisplay apps folder there is a view.py in it. What am I doing wrong? I've tried adding the following to my settings.py by suggestion of the django IRC room.</p>
<pre><code>import sys
sys.path.append(r"/home/user/webapps/django_project/myproject/orgDisplay")
</code></pre>
<p>which is the path to my app.</p>
<p>any ideas on how to even begin to trouble shoot this?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1619554/using-python-regular-expression-in-django0Using Python Regular Expression in Django.Noah Clark2009-10-25T00:08:20Z2009-10-25T00:20:42Z
<p>I have an web address:</p>
<p><a href="http://www.example.com/org/companyA" rel="nofollow">http://www.example.com/org/companyA</a></p>
<p>I want to be able to pass CompanyA to a view using regular expressions. </p>
<p>This is what I have:</p>
<pre><code>(r'^org/?P<company_name>\w+/$',"orgman.views.orgman")
</code></pre>
<p>and it doesn't match.</p>
<p>Ideally all URL's that look like example.com/org/X would pass x to the view.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1120976/how-do-you-address-data-returned-to-a-socket-in-python0How do you address data returned to a socket in python?Noah Clark2009-07-13T17:40:52Z2009-07-13T18:14:26Z
<p>Say you are telneting into IRC to figure out how it all works. As you issue commands the IRC server returns data telling you what it's doing. Once I have created a default script that basically is how a normal IRC connection between server and client occurs, if it ever deviates from that it won't tell me what is wrong. I need to be able to throw exceptions based on what the server returns to me. How do I do that in python?</p>
http://stackoverflow.com/questions/1100840/irc-python-bot-best-way2IRC Python Bot: Best WayNoah Clark2009-07-08T22:17:44Z2009-07-09T06:13:47Z
<p>I want to build a bot that basically does the following:</p>
<ol>
<li>Listens to the room and interacts with users and encourages them to PM the bot.</li>
<li>Once a user has PMed the bot engage with the client using various AI techniques. </li>
</ol>
<p>Should I just use the IRC library or Sockets in python or do I need more of a bot framework.</p>
<p>What would you do?</p>
<p>Thanks!</p>
<p>Here is the code I'm currently using, however, I haven't gotten it to work.</p>
<pre><code>#!/usr/bin/python
import socket
network = 'holmes.freenet.net'
port = 6667
irc = socket.socket ( socket.AF_INET, socket.SOCK_STREAM )
irc.connect ( ( network, port ) )
irc.send ( 'NICK PyIRC\r\n' )
irc.send ( 'USER PyIRC PyIRC PyIRC :Python IRC\r\n' )
irc.send ( 'JOIN #pyirc\r\n' )
irc.send ( 'PRIVMSG #pyirc :Can you hear me?\r\n' )
irc.send ( 'PART #pyirc\r\n' )
irc.send ( 'QUIT\r\n' )
irc.close()
</code></pre>
http://stackoverflow.com/questions/1082078/yahoo-chat-in-python1Yahoo Chat in PythonNoah Clark2009-07-04T12:03:15Z2009-07-04T12:12:11Z
<p>I'm wondering how the best way to build a way to interface with Yahoo Chat is. I haven't found anything that looks incredibly easy to do yet. One thought it to build it all from scratch, the other thought would be to grab the code from open source software. I could use something like zinc, however, this maybe more complex than it needs to be. Another option would be to find a library that supports it, however, I haven't seen one. What are your thoughts on how to proceed and what would be the best way? I'm not necessarily looking for the fastest way as this is a bit of a learning project for me.</p>
http://stackoverflow.com/questions/1075652/using-the-and-and-not-operator-in-python1Using the AND and NOT Operator in PythonNoah Clark2009-07-02T17:22:44Z2009-07-02T17:53:03Z
<p>Here is my custom class that I have that represents a triangle. I'm trying to write code that checks to see if <code>self.a</code>, <code>self.b</code>, and <code>self.c</code> are greater than 0, which would mean that I have Angle, Angle, Angle. </p>
<p>Below you will see the code that checks for A and B, however when I use just <code>self.a != 0</code> then it works fine. I believe I'm not using <code>&</code> correctly. Any ideas? Here is how I am calling it: <code>print myTri.detType()</code></p>
<pre><code>class Triangle:
# Angle A To Angle C Connects Side F
# Angle C to Angle B Connects Side D
# Angle B to Angle A Connects Side E
def __init__(self, a, b, c, d, e, f):
self.a = a
self.b = b
self.c = c
self.d = d
self.e = e
self.f = f
def detType(self):
#Triangle Type AAA
if self.a != 0 & self.b != 0:
return self.a
#If self.a > 10:
#return AAA
#Triangle Type AAS
#elif self.a = 0:
#return AAS
#Triangle Type ASA
#Triangle Type SAS
#Triangle Type SSS
#else:
#return unknown
</code></pre>
http://stackoverflow.com/questions/1066827/object-attribute-in-random-list-not-accessible-in-python1Object Attribute in Random List Not Accessible in PythonNoah Clark2009-07-01T00:57:37Z2009-07-01T02:06:44Z
<p>Hello.</p>
<p>I'm working on my first object oriented bit of python and I have the following:</p>
<pre><code>#!/usr/bin/python
import random
class triangle:
# Angle A To Angle C Connects Side F
# Angle C to Angle B Connects Side D
# Angle B to Angle A Connects Side E
def __init__(self, a, b, c, d, e, f):
self.a = a
self.b = b
self.c = c
self.d = d
self.e = e
self.f = f
#def solver:
#pass
#initialize Triangle
myTri = triangle(0,0,0,0,0,0)
#Pick Three Random Angles or Sides to Generate Values For
sample = random.sample([myTri.a, myTri.b, myTri.c, myTri.d, myTri.e, myTri.f], 3)
#Sets the three randomly picked variables to a Random Number
sample[0] = random.randint(1, 100)
sample[1] = random.randint(1, 100)
sample[2] = random.randint(1, 100)
</code></pre>
<p>How do I pass myTri.a, for example to random.randint. It is passing the value of '0' which it initialized. I want to be able to assign a random value to three of the .a-.f attributes of myTri. What am I missing?</p>
http://stackoverflow.com/questions/1694259/django-app-not-showing-up-in-admin-interface/1694281#1694281Comment by Noah Clark on Django App Not Showing up in Admin InterfaceNoah Clark2009-11-07T20:43:52Z2009-11-07T20:43:52ZLemonad is a pimp! That fixed it.http://stackoverflow.com/questions/1694259/django-app-not-showing-up-in-admin-interfaceComment by Noah Clark on Django App Not Showing up in Admin InterfaceNoah Clark2009-11-07T20:39:52Z2009-11-07T20:39:52ZYes, I did. Thank you so much!http://stackoverflow.com/questions/1694259/django-app-not-showing-up-in-admin-interface/1694281#1694281Comment by Noah Clark on Django App Not Showing up in Admin InterfaceNoah Clark2009-11-07T20:28:34Z2009-11-07T20:28:34ZI just switched over to your model and still no go. I think your model is a better approuch anyway. It looks a lot cleaner and it is how I've seen it on other sites. Thanks for the attempt though!http://stackoverflow.com/questions/1694259/django-app-not-showing-up-in-admin-interface/1694281#1694281Comment by Noah Clark on Django App Not Showing up in Admin InterfaceNoah Clark2009-11-07T20:25:56Z2009-11-07T20:25:56ZI tried that and it still didn't work for me. Let me try that again!http://stackoverflow.com/questions/1656159/could-not-import-no-module-named-django-error-with-apache/1656249#1656249Comment by Noah Clark on Could not import/No module named Django Error with ApacheNoah Clark2009-11-01T13:58:56Z2009-11-01T13:58:56Zi added from myproject.orgDisplay import views to my urls.py file and still no luck.http://stackoverflow.com/questions/1656159/could-not-import-no-module-named-django-error-with-apache/1656249#1656249Comment by Noah Clark on Could not import/No module named Django Error with ApacheNoah Clark2009-11-01T13:24:22Z2009-11-01T13:24:22ZI don't see the difference between your append statement and mine.
Also, where would I add the import statement. In my urls.py file? That is where I'm calling this from.http://stackoverflow.com/questions/1656159/could-not-import-no-module-named-django-error-with-apache/1656735#1656735Comment by Noah Clark on Could not import/No module named Django Error with ApacheNoah Clark2009-11-01T13:13:32Z2009-11-01T13:13:32ZI believe if I added import orgDisplay.views that would probably fix it. So do I add that to my urls.py file? It seems odd I'd have to go mucking around in my settings like that.http://stackoverflow.com/questions/1619554/using-python-regular-expression-in-django/1619583#1619583Comment by Noah Clark on Using Python Regular Expression in Django.Noah Clark2009-10-25T00:26:08Z2009-10-25T00:26:08ZThis is awesome. I was looking for something like this online!http://stackoverflow.com/questions/1100840/irc-python-bot-best-wayComment by Noah Clark on IRC Python Bot: Best WayNoah Clark2009-07-22T14:05:01Z2009-07-22T14:05:01ZAwesome! Thanks! I'll keep this in mind!http://stackoverflow.com/questions/1120976/how-do-you-address-data-returned-to-a-socket-in-python/1121162#1121162Comment by Noah Clark on How do you address data returned to a socket in python?Noah Clark2009-07-13T18:38:03Z2009-07-13T18:38:03ZThank you, I'll check that out too.http://stackoverflow.com/questions/1120976/how-do-you-address-data-returned-to-a-socket-in-python/1121162#1121162Comment by Noah Clark on How do you address data returned to a socket in python?Noah Clark2009-07-13T18:28:57Z2009-07-13T18:28:57ZI've already looked at that and I'll revisit this evening. I'm trying to understand how to view the chat in an object oriented way.
Thanks!http://stackoverflow.com/questions/1120976/how-do-you-address-data-returned-to-a-socket-in-pythonComment by Noah Clark on How do you address data returned to a socket in python?Noah Clark2009-07-13T18:01:32Z2009-07-13T18:01:32ZNeither, actually, although more of the "how to write a complete IRC Client." Obviously, this is beyond the scope of Stack Over Flow. Basically when I issue a command to an IRC Server such as /nick newnick it typically returns something. How do I catch that? http://stackoverflow.com/questions/1100840/irc-python-bot-best-way/1100901#1100901Comment by Noah Clark on IRC Python Bot: Best WayNoah Clark2009-07-08T22:46:43Z2009-07-08T22:46:43ZI just checked out Twisted again and found it under the IM section. Thanks for the link. What exactly does the Asynchat help with?http://stackoverflow.com/questions/1100840/irc-python-bot-best-way/1100882#1100882Comment by Noah Clark on IRC Python Bot: Best WayNoah Clark2009-07-08T22:34:27Z2009-07-08T22:34:27ZThanks for the heads up on the AIML package!http://stackoverflow.com/questions/1082078/yahoo-chat-in-pythonComment by Noah Clark on Yahoo Chat in PythonNoah Clark2009-07-04T12:20:14Z2009-07-04T12:20:14ZNot really. Yahoo chat isn't the same as Yahoo Messenger, but Yahoo messenger can connect to Yahoo Chat. Basically, it depends on what the library supports if I can do it or not.