This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Я: Потому что в таких документах не принято использовать отчество. Я думал уникального номера моего свидетельства будет достаточно. | |
ОНА: нет, не верно, отчество обязательно. а вот номер св-ва нам не нужен в таких документах |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Requirements: requests, lxml | |
import requests | |
from lxml import html | |
TALKNAME = "Caching Django" | |
COLOR = '\033[1;34m' | |
END = '\033[0m' | |
def talk_text((N, E)): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def db_choices(table, id): | |
from django.db import connection as C | |
return C.cursor().execute( | |
'SELECT %s, LongTextA FROM %s' % (id,table) | |
) and C.cursor().fetchall() |
NewerOlder