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

    24 juin 2014 à 15:58:40 UTC+2 - permalink - archive.org - http://amoffat.github.io/sh/
    python
  • 30 Python Language Features and Tricks You May Not Know About
    19 mai 2014 à 13:40:48 UTC+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/
    7 février 2014 à 11:30:05 UTC+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
    7 février 2014 à 11:28:28 UTC+1 - permalink - archive.org - http://uwsgi-docs.readthedocs.org/en/latest/
    python
  • Bottle: Python Web Framework — Bottle 0.13-dev documentation

    Python Web Framework

    7 février 2014 à 11:27:32 UTC+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.

    7 février 2014 à 11:27:07 UTC+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.

    7 février 2014 à 11:26:25 UTC+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

    10 janvier 2014 à 13:24:11 UTC+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

    29 novembre 2013 à 12:12:00 UTC+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

    21 novembre 2013 à 15:53:39 UTC+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

    11 novembre 2013 à 09:18:45 UTC+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

    5 novembre 2013 à 15:07:31 UTC+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

    9 septembre 2013 à 08:26:17 UTC+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

    9 septembre 2013 à 08:17:25 UTC+2 - permalink - archive.org - http://docs.python.org/3/howto/unicode.html
    encodage python unicode utf8
  • Understanding Python's "with" statement

    with statement

    6 septembre 2013 à 10:25:43 UTC+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

    27 août 2013 à 14:02:13 UTC+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

    22 mars 2013 à 20:52:04 UTC+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