Форум сайта python.su
# -*- coding: utf-8 -*-
from django.db import models
from django.contrib import admin
from django.forms.models import modelformset_factory
#Clients
class Client(models.Model):
fname = models.CharField(max_length=255,verbose_name=u'\u0418\u043c\u044f')
lname = models.CharField(max_length=255,verbose_name=u'\u0424\u0430\u043c\u0438\u043b\u0438\u044f')
sname = models.CharField(max_length=255,verbose_name=u'\u041e\u0442\u0447\u0435\u0441\u0442\u0432\u043e')
email = models.EmailField(max_length=100,verbose_name=u'E-Mail')
phone = models.CharField(max_length=100,verbose_name=u'\u0422\u0435\u043b\u0435\u0444\u043e\u043d')
born = models.DateField()
STATUS_CHOICES = (
('0', u'\u041d\u0435 \u0443\u043a\u0430\u0437\u0430\u043d'),
('1', u'\u041d\u0435\u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0439'),
('2', u'\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0439'),
('3', u'\u0414\u043e\u043b\u0436\u043d\u0438\u043a'),
('4', u'\u0421\u043e\u0442\u043e\u043d\u0430!'),
)
status = models.CharField(max_length=2, choices=STATUS_CHOICES,verbose_name=u'')
reg_date = models.DateField(auto_now_add=True,verbose_name=u'\u0414\u0430\u0442\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438')
def __unicode__(self):
mstr = self.fname + " " + self.lname + " " + self.sname
return mstr
class Comments(models.Model):
id_user = models.ForeignKey(Client)
subject = models.CharField(max_length=100,verbose_name=u'\u0422\u0435\u043c\u0430')
comment = models.TextField(max_length=500,verbose_name=u'\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435')
post_date = models.TimeField(auto_now_add=True,verbose_name=u'\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f')
class CommentsInline(admin.TabularInline):
model = Comments
extra = 1
#template = "admin/comment_list.html"
class clietnAdmin(admin.ModelAdmin):
#date_hierarchy = 'fname'
list_display = ['__unicode__','status']
fieldsets = [
(u'\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0435', {'fields': ['fname','lname','sname','born']}),
(u'\u041a\u043e\u043d\u0442\u0430\u043a\u0442\u044b', {'fields': ['phone','email','status']}),
]
inlines = [CommentsInline]
admin.site.register(Client,clietnAdmin)
def index(req):
req.content_type = 'text/html'
main = """<form method="POST">
<input type="text" name="test">
<input type="submit">"""
return main
from PyQt4 import QtWebKit, QtCore, QtGui, QtNetwork
import sys
class Webber(QtGui.QMainWindow):
def __init__(self):
##
self.view = QtWebKit.QWebView()
self.view.setGeometry(100, 200, 800, 500)
self.view.load(QtCore.QUrl('http://www.google.com.ua/'))
self.view.show()
app = QtGui.QApplication(sys.argv)
main = Webber()
sys.exit(app.exec_())
DATABASE_ENGINE = 'sql_server.pyodbc'
C:\djproject\mysite>manage.py syncdb
Traceback (most recent call last):
File "C:\djproject\mysite\manage.py", line 11, in <module>
execute_manager(settings)
File "C:\Python25\lib\site-packages\django\core\management\__init__.py", line
340, in execute_manager
utility.execute()
File "C:\Python25\lib\site-packages\django\core\management\__init__.py", line
295, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "C:\Python25\lib\site-packages\django\core\management\base.py", line 77,
in run_from_argv
self.execute(*args, **options.__dict__)
File "C:\Python25\lib\site-packages\django\core\management\base.py", line 87,
in execute
translation.activate('en-us')
File "C:\Python25\lib\site-packages\django\utils\translation\__init__.py", lin
e 73, in activate
return real_activate(language)
File "C:\Python25\lib\site-packages\django\utils\translation\__init__.py", lin
e 43, in delayed_loader
return g['real_%s' % caller](*args, **kwargs)
File "C:\Python25\lib\site-packages\django\utils\translation\trans_real.py", l
ine 209, in activate
_active[currentThread()] = translation(language)
File "C:\Python25\lib\site-packages\django\utils\translation\trans_real.py", l
ine 198, in translation
default_translation = _fetch(settings.LANGUAGE_CODE)
File "C:\Python25\lib\site-packages\django\utils\translation\trans_real.py", l
ine 181, in _fetch
app = getattr(__import__(appname[:p], {}, {}, [appname[p+1:]]), appname[p+1:
])
File "C:\Python25\lib\site-packages\django\contrib\admin\__init__.py", line 1,
in <module>
from django.contrib.admin.options import ModelAdmin, HORIZONTAL, VERTICAL
File "C:\Python25\lib\site-packages\django\contrib\admin\options.py", line 5,
in <module>
from django.contrib.contenttypes.models import ContentType
File "C:\Python25\Lib\site-packages\django\contrib\contenttypes\models.py", li
ne 1, in <module>
from django.db import models
File "C:\Python25\lib\site-packages\django\db\__init__.py", line 34, in <modul
e>
(settings.DATABASE_ENGINE, ", ".join(map(repr, available_backends)), e_user)
django.core.exceptions.ImproperlyConfigured: 'sql_server.pyodbc' isn't an availa
ble database backend. Available options are: 'dummy', 'mysql', 'oracle', 'postgr
esql', 'postgresql_psycopg2', 'sql_server', 'sqlite3'
Error was: No module named sql_server.pyodbc.base
DATABASE_ENGINE = 'sql_server'
class Webber(QtGui.QMainWindow):
def __init__(self,cookieFile):
QtGui.QMainWindow.__init__(self)
self.resize(800,600)
quit = QtGui.QPushButton('Cookies', self)
quit.setGeometry(10, 10, 60, 35)
self.connect(quit, QtCore.SIGNAL('clicked()'),self.printer)
cj = cookielib.LWPCookieJar()
if os.path.isfile(cookieFile):
cj.load(cookieFile)
self.view = QtWebKit.QWebView(self)
self.page=QtWebKit.QWebPage()
self.manager=QtNetwork.QNetworkAccessManager()
self.cj=QtNetwork.QNetworkCookieJar()
self.manager.setCookieJar(self.cj)
#manger.setProxy(QtWebKit.QNetworkProxy)
self.page.setNetworkAccessManager(self.manager)
self.view.setPage(self.page)
self.view.setGeometry(100, 200, 500, 300)
self.view.load(QtCore.QUrl('http://www.google.com.ua/'))
self.view.show()
def printer(self):
print self.cj.allCookies()
#!/usr/bin/python
"""Hello, wxPython! program."""
import wx
class Frame(wx.Frame):
"""Frame class that displays an image."""
def __init__(self, image, parent=None, id=1,
pos=wx.DefaultPosition,
title='Hello, wxPython!'):
"""Create a Frame instance and display image."""
temp = image.ConvertToBitmap()
size = temp.GetWidth(), temp.GetHeight()
wx.Frame.__init__(self, parent, id, title, pos, size)
self.bmp = wx.StaticBitmap(parent=self, bitmap=temp)
class App(wx.App):
"""Application class."""
def OnInit(self):
image = wx.Image('wxPython.jpg', wx.BITMAP_TYPE_JPEG)
self.frame = Frame(image)
self.frame.Show()
self.SetTopWindow(self.frame)
return True
def main():
app = App()
app.MainLoop()
if __name__ == '__main__':
main()
/* potok.c */
#include <stdio.h>
#include <pthread.h>
#include <signal.h>
pthread_t potok_id;
void * mypotok()
{
while (1) { fprintf(stderr,"СиПоток\n"); sleep(1); }
}
void pusk() {
pthread_create(&potok_id,NULL,&mypotok,NULL);
sleep(3);
pthread_cancel(potok_id);
if( !pthread_equal( pthread_self(),potok_id ) )
{
printf("\n%d\n", pthread_equal( pthread_self(), potok_id ));
fprintf(stderr,"поток завершен\n");
pthread_join(potok_id,NULL);
}
int i;
for (i=0; i<3; i++) {
fprintf(stderr,"СиПроцесс\n"); sleep(1);
}
}
%module potok
%include potok.c
>>> import potok
>>> potok.pusk()
СиПоток
СиПоток
СиПоток
0
поток завершен
СиПроцесс
СиПроцесс
СиПроцесс
>>>
/* Npotok.c */
#include <stdio.h>
#include <pthread.h>
#include <signal.h>
pthread_t potok_id ; /* идентификатор потока */
void * mypotok()
{
while (1) { fprintf(stderr,"СиПоток\n"); sleep(1); }
}
void start()
{
pthread_create(&potok_id,NULL,&mypotok,NULL);
}
void finish()
{
pthread_cancel(potok_id);
if( !pthread_equal( pthread_self(),potok_id ) )
{
printf("\n%d\n", pthread_equal( pthread_self(), potok_id ));
fprintf(stderr,"поток завершен\n");
pthread_join(potok_id,NULL);
}
}
void pusk()
{
start();
sleep (3);
finish();
int i;
for (i=0; i<3; i++) {
fprintf(stderr,"СиПроцесс\n"); sleep(1);
}
}