4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
page 5 / 5
Newer►
97 results tagged python x
  • sh 1.08 — sh v1.08 documentation

    une lib pour interagir facilement avec bash

    June 24, 2014 at 3:58:40 PM GMT+2 - permalink - archive.org - http://amoffat.github.io/sh/
    python
  • 30 Python Language Features and Tricks You May Not Know About
    May 19, 2014 at 1:40:48 PM GMT+2 - permalink - archive.org - http://sahandsaba.com/thirty-python-language-features-and-tricks-you-may-not-know.html
    python
  • Gunicorn - Python WSGI HTTP Server for UNIX

    Un serveur http wsgi en python, pour faire tourner du django. A voir si les perf sont meilleure qu'avec le mod apache

    • https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/gunicorn/
    February 7, 2014 at 11:30:05 AM GMT+1 - permalink - archive.org - http://gunicorn.org/#quickstart
    python
  • The uWSGI project — uWSGI 2.0 documentation

    L'équivalent de php-fpm pour python (mettre un nginx devant)

    • https://github.com/unbit
    February 7, 2014 at 11:28:28 AM GMT+1 - permalink - archive.org - http://uwsgi-docs.readthedocs.org/en/latest/
    python
  • Bottle: Python Web Framework — Bottle 0.13-dev documentation

    Python Web Framework

    February 7, 2014 at 11:27:32 AM GMT+1 - permalink - archive.org - http://bottlepy.org/docs/dev/index.html
    framework python
  • Twisted

    Twisted is an event-driven networking engine written in Python and licensed under the open source MIT license.

    February 7, 2014 at 11:27:07 AM GMT+1 - permalink - archive.org - https://twistedmatrix.com/trac/
    event python
  • Introduction — virtualenv 1.11.2 documentation

    virtualenv is a tool to create isolated Python environments.

    February 7, 2014 at 11:26:25 AM GMT+1 - permalink - archive.org - http://www.virtualenv.org/en/latest/virtualenv.html
    python
  • Designing a RESTful API with Python and Flask - miguelgrinberg.com

    je me mets ça de côté pour plus tard.

    via https://arnaudb.net/shaarli

    January 10, 2014 at 1:24:11 PM GMT+1 - permalink - archive.org - http://blog.miguelgrinberg.com/post/designing-a-restful-api-with-python-and-flask
    python rest
  • thumbnail
    python-crontab 1.5.1 : Python Package Index

    Librairie python qui va nous servir pour piclodio2 (https://github.com/Sispheor/Piclodio2)

    Chaque réveil est en fait une ligne dans le cron, avec un commentaire dans lequel on retrouve son id.. Du coup avec cette lib, l'interaction avec le cron va être + simple :-)

    via Nico

    November 29, 2013 at 12:12:00 PM GMT+1 - permalink - archive.org - https://pypi.python.org/pypi/python-crontab
    cron piclodio python
  • thumbnail
    unix - How can I pretty-print JSON from the command line? - Stack Overflow

    Pour rendre un json lisible :

    cmd_qui_donne_du_json | python -mjson.tool

    November 21, 2013 at 3:53:39 PM GMT+1 - permalink - archive.org - http://stackoverflow.com/questions/352098/how-can-i-pretty-print-json-from-the-command-line
    json python
  • 10 raisons pour lesquelles je suis toujours marié à Python | Sam & Max: Python, Django, Git et du cul

    python ou perl, faudrait choisir pour concevoir des scripts d'admin moins crades qu'en bash

    November 11, 2013 at 9:18:45 AM GMT+1 - permalink - archive.org - http://sametmax.com/10-raisons-pour-lesquelles-je-suis-toujours-marie-a-python/
    python
  • Créer un module xchat (python)

    Objectif : tapper /obug <number> dans xchat m'ouvre un onglet dans ff vers l'url du bug

    1) activer le module python dans les options
    2) créer un fichier .py dans /home/arnaud/.xchat2/
    3)
    module_name = "openbuginredmine"
    module_version
    = "1.0"
    __module_description__ = "module to open bug in redmine"

    import os
    import xchat

    def obug(word, word_eol, userdata):
    if len(word) < 2:
    print "Second arg must be the bug number!"
    else:

    xchat.command("NOTICE @%s %s" % (xchat.get_info("channel"), word_eol[1]))

        os.system("firefox https://monurlredmine.com/issues/"+word[1])
    return xchat.EAT_ALL 

    xchat.hook_command("obug", obug, help="/obug <number> open bug in ff")

    Et voilà, plus qu'à reboot le xchat, ou bien /load nomdufichier.py

    ça peut etre appliqué à plein de trucs : pouvoir lancer ce qu'on veut depuis xchat

    November 5, 2013 at 3:07:31 PM GMT+1 - permalink - archive.org - http://xchat.org/docs/xchatpython.html#head-cf24838660500eceef2367deb88df5963483c852
    auto module python redmine xchat
  • PythonVsPhp - Python Wiki

    Différence entre python et php
    Et un site pour débuter en python lorsqu'on vient de php :
    http://www.inspyration.org/tutoriels/debuter-python-lorsque-lon-vient-de-php

    September 9, 2013 at 8:26:17 AM GMT+2 - permalink - archive.org - https://wiki.python.org/moin/PythonVsPhp
    php python
  • Unicode HOWTO — Python v3.3.2 documentation

    Qu'est ce que l'unicode ? qu'est-ce qu'un encodage ? Comment python gère ça
    Autres liens dans l'article à lire :
    http://www.cs.tut.fi/~jkorpela/unicode/guide.html
    http://www.joelonsoftware.com/articles/Unicode.html
    http://en.wikipedia.org/wiki/Character_encoding
    http://en.wikipedia.org/wiki/UTF-8

    September 9, 2013 at 8:17:25 AM GMT+2 - permalink - archive.org - http://docs.python.org/3/howto/unicode.html
    encodage python unicode utf8
  • Understanding Python's "with" statement

    with statement

    September 6, 2013 at 10:25:43 AM GMT+2 - permalink - archive.org - http://effbot.org/zone/python-with-statement.htm
    python with
  • Forums Python — AFPY

    Forum pour demander de l'aide/chercher des réponses sur Python

    August 27, 2013 at 2:02:13 PM GMT+2 - permalink - archive.org - http://www.afpy.org/forums/forum_python
    forum help python
  • Python | Codecademy

    Site pour apprendre à développer avec une approche interactive. Python en particulier

    March 22, 2013 at 8:52:04 PM GMT+1 - permalink - archive.org - http://www.codecademy.com/tracks/python
    dev python
Links per page: 20 50 100
page 5 / 5
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation