Du bist nicht angemeldet.
Thomas_Haindl
God
Zitat von »Y0Gi«
Tjoa, inwieweit man da jetzt zufälliges oder gar halbwegs intelligentes Verhalten zur Verteilung der Ressourcen einbauen will, könnte man auch mal genauer erläutern. Theoretiker, Mathematiker und KI-Experten vor![]()
Zitat von »Tom«
leading spaces durch ~ ersetzt, weil der YABB das sonst "kürzt".
Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »Y0Gi« (22. Januar 2013, 02:23)
Zitat von »Y0Gi«
DrStrange: Instruct an AVM FRITZ!Box via UPnP to reconnect in Python - ich war mal so frei. Das kriegst du wohl selbst ins andere Script integriert (wobei man es auch als separater Programm aufrufen kann, ist aber nicht so schön).
Thomas_Haindl
God
Zitat von »Trauma«
Jetzt komm ich mir mit meinen 3 Klicks am Tag richtig überflüssig vor.![]()
Thomas_Haindl
God
Zitat von »Y0Gi«
Da, probier' mal: ... edit - alle brauchbaren hinweise entfernt .....
Zitat von »Stefan«
Bei Gelegenheit reconnecte ich jetzt immer mal manuell meinen Asus Router.
Zitat von »Tom«
... und wie bekomme ich jetzt noch eine Basis-Authentifizierung (RFC 2617) darin unter?
Es reicht, wenn Du mir nur Modul.Funktion nennst, wo ich suchen kann.
Ich (alter straight-forward & pure-procedural Pascalianer) sollte / muss mich durch die Python-Dox kämpfen.
![]() |
Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 |
#!/usr/bin/env python # -*- coding: utf-8 -*- import time import feedparser URL = 'http://aqua-computer.myminicity.com/rss' for entry in feedparser.parse(URL).entries: print time.strftime('%Y-%m-%d %H:%M:%S', entry.date_parsed), entry.title |
![]() |
Quellcode |
1 2 3 4 5 6 7 8 |
2008-04-04 14:39:59 New shops have been opened in the city center. 2008-04-04 14:39:05 A fire has devastated 9 hectares of forest. Police search for the arsonist. 2008-04-04 14:39:05 A new inhabitant has come to aqua-computer. 2008-04-04 14:38:45 New parks have been built in the city. 2008-04-04 14:38:20 New shops have been opened in the city center. 2008-04-04 14:37:46 A new inhabitant has come to aqua-computer. 2008-04-04 14:37:27 New parks have been built in the city. 2008-04-04 14:36:41 The police force of aqua-computer has been reinforced. |
-