python: adierazpen erregularrakaz (regex) link-ek html-ra bihurtu

baguez kallue hartzien python-eri, oingutan texto batetik link-ek html-ra pasa’kuz #!/usr/bin/env python # -*- coding: utf-8 -*- import re text = “http://aaaaa       https://bbbbb ftp://ccccc\n http://dddddddd” m = re.sub(r'(?i)(^|\s+|\A)(http|https|ftp)(\://\S+)(\s+|\Z|$)’, ‘\\1<a href=\”\\1\\2\” onclick=\”window.open(this.href); return false;\”>\\2\\3</a>\\4’, text) print m Erantzune:   <a href=”http://aaaaa” onclick=”window.open(this.href); return false;”>       <a href=”https://bbbbb” onclick=”window.open(this.href); return false;”> <a href=”ftp://ccccc” onclick=”window.open(this.href); return false;”>  <a href=”http://dddddddd” […]

debian: nginx erabilitze web zerbitzaridxen cluster bat sortu

Danok dakigu web zerbitzaridxen txeriffe apache dala, baie beste web zerbitzari batzuk be biarra elegante eitzen dauie, adibidez lighttpd, cherokee edota nginx. Oingutan nginx-eri emongotzagu sue: su aptitude install nginx nano /etc/nginx/nginx.conf Oin nginx konfigureku: # usuaidxue eta grupue zeon gustora imiñi user zital zital; worker_processes 4; pid /var/run/nginx.pid; events { worker_connections 15; multi_accept on; […]

python: web2py apache-gaz imiñi martxan debian gnu/linux-en mod-wsgi bidez

web2py python-en framework bat da web aplikaziñuek python-egaz eitzeko, instalateko hau script-e prepara dot, kanbije usuaidxue, grupue eta proiektuen karpetie zeuon gustora: 1go gauzie root moduen konekta eta script-e sortu: su nano web2py_install.sh #!/bin/bash user=’zital’ group=$user project_path=’/home/projects’ current_path=`echo $PWD` me=`whoami` if [ “$me” == “root” ] then aptitude -y install libapache2-mod-wsgi unzip wget cd ${project_path} […]

python: tweet-eri tag bidezko iragazki bet pasa

Bueno ariñauko post-an ikusi’du zelan hartun python-egaz gaurko eguneko tweet-ek, bueno ba oingutan horreri tweeteri tag bidezko iragazki bet eingo’tzagu gai batzuri buruzko tweet-ek interesa doskuzelako eta ez edozein: #!/usr/bin/python2.6 # -*- coding: utf-8 -*- import urllib import datetime as date import time import simplejson as json import re users = [‘ZiTAL’, ‘g0re_k’] tags = […]

python: gaurko tweet-ak hartzeko script-a

Neure lehenengo python script-e: Zelan hartun gaurko eguneko tweet-ak Biher dana instala eta script-e edite: su aptitude install python2.6 python-simplejson exit nano ztwitter.py #!/usr/bin/python2.6 # -*- coding: utf-8 -*- import urllib import datetime as date import time import simplejson as json users = [‘ZiTAL’, ‘g0re_k’] now = date.datetime.now() now = now.strftime(“%Y-%m-%d”) for u in users: […]