Shaare your links...
3416 links
L!NKS Retour au blog Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
page 10 / 10
Newer►
200 results for tags python x
  • hackingciphers.pdf
    permalink -
    - http://inventwithpython.com/hackingciphers.pdf
    book crypt python
  • Code Like a Pythonista: Idiomatic Python
    le ZEN python :

    Beautiful is better than ugly.
    Explicit is better than implicit.
    Simple is better than complex.
    Complex is better than complicated.
    Flat is better than nested.
    Sparse is better than dense.
    Readability counts.
    Special cases aren't special enough to break the rules.
    Although practicality beats purity.
    Errors should never pass silently.
    Unless explicitly silenced.
    permalink -
    - http://python.net/~goodger/projects/pycon/2007/idiomatic/handout.html
    python
  • Transforming code into Beautiful, Idiomatic Python by Raymond Hettinger // Speaker Deck
    permalink -
    - https://speakerdeck.com/pyconslides/transforming-code-into-beautiful-idiomatic-python-by-raymond-hettinger
    python
  • Écrire des logs en Python | Sam & Max: Python, Django, Git et du cul
    Sam et Max expliquent comment ne pas debugger avec des print crados et utiliser le module log... ça fait quand même plus sérieux ;-)
    permalink -
    - http://sametmax.com/ecrire-des-logs-en-python/
    python
  • Cours de Python
    Cours python pour débutants proposé aux étudiants de biologie de Master à Paris Diderot.
    A noter dans les "trucs et astuces" (chapt. XIX):
    J'ignorais que l'on pouvait sauvegarder l'historique des commandes !
    >>> import readline
    >>> readline.write_history_file()
    puis:
    >>> import readline
    >>> readline.read_history_file()
    permalink -
    - http://python.developpez.com/tutoriels/cours-python-inserm/#LXIX-D
    cours python
  • rst2pdf-0.93.tar.gz - rst2pdf - Many bugs fixed - Tool for transforming reStructuredText to PDF using ReportLab - Google Project Hosting
    permalink -
    - https://code.google.com/p/rst2pdf/downloads/detail?name=rst2pdf-0.93.tar.gz&can=2&q=
    python
  • pygal - A python svg graph plotting library - Documentation
    Damn' Python !
    De magnifiques graphiques en svg à l'aide de quelques lignes de script !
    permalink -
    - http://pygal.org/chart_types/
    python
  • Scrapy at a glance — Scrapy 0.17.0 documentation
    Bibliothèque python pour faire du webscraping (récupérer du contenu de page web).

    via sebsauvage : http://sebsauvage.net/links/?1AzbTg
    permalink -
    - http://doc.scrapy.org/en/latest/intro/overview.html
    python web
  • Python String translate() Method
    Un petit bout de code à retenir pour convertir une chaîne de caractères selon une substitution :

    #!/usr/bin/python
    from string import maketrans   # Required to call maketrans function.

    intab = "aeiou"
    outtab = "12345"
    trantab = maketrans(intab, outtab)

    str = "this is string example....wow!!!"
    print str.translate(trantab)

    >> th3s 3s str3ng 2x1mpl2....w4w!!!
    permalink -
    - http://www.tutorialspoint.com/python/string_translate.htm
    python
  • OrderedDict - Python Module of the Week
    Tiens justement, un petit rafrîchissement de Doug Hellemann sur les OrderedDict (dans collections)
    permalink -
    - http://pymotw.com/2/collections/ordereddict.html
    python
  • How can I convert a Python dictionary to a list of tuples? - Stack Overflow
    Convertir en quelques ligne un dictionnaire pas ordonnée en une liste de tuples (ordonnables ensuite comme on veut... .sort(), .reverse(),...)
    permalink -
    - http://stackoverflow.com/questions/674519/how-can-i-convert-a-python-dictionary-to-a-list-of-tuples
    python
  • AnotherTutorial - wxPyWiki
    Sans doute un des meilleurs tutos pour wx sous python.
    permalink -
    - http://wiki.wxpython.org/AnotherTutorial#wx.StaticText
    python tuto wx
  • NoPriv.py – Un miroir HTML de votre boite mail | Korben
    Pour faire une copie/sauvegarde de vos email (sur IMAP). Le tout est mis en forme en HTML (navigation par dossiers).
    A essayer.
    permalink -
    - http://korben.info/nopriv-py-un-miroir-html-de-votre-boite-mail.html
    art_backup backup mail python
  • FAQ python
    la faq de developpez pour python (merci guigui !)
    permalink -
    - http://python.developpez.com/faq/
    python
  • Dive Into Python
    Cours python gratuit
    permalink -
    - http://python.developpez.com/cours/DiveIntoPython/php/frdiveintopython/toc/index.php
    python
  • Sam & Max: Python, Django, Git et du cul | Deux développeurs en vadrouille qui se sortent les doigts du code
    Blog français impertinent autour notamment de python... mais pas seulement ;-)
    permalink -
    - http://sametmax.com/
    blog python
  • Requests: HTTP for Humans — Requests 1.1.0 documentation
    urllib et urllib2 ne sont pas évidentes (gestion des cookies etc.)
    --> import requests !
    basic usage : http://docs.python-requests.org/en/latest/user/quickstart/
    advanced    : http://docs.python-requests.org/en/latest/user/advanced/
    permalink -
    - http://docs.python-requests.org/en/latest/
    python
  • Python Module of the Week - Python Module of the Week
    Doug Hellmann a écrit chaque semaine sur son blog un article sur l'utilisation des modules standards python.
    Besoin d'un coup de main : google pymotw + nom du module

    Il en a fait un bouquin : The python standard library by example
    permalink -
    - http://pymotw.com/2/contents.html
    python
  • Quick reStructuredText
    RST pour "reStructuredText" est une syntaxe pour écrire des documents qui seront facilement par la suite transformable en html, pdf, ...
    A l'origine créé pour éditer la doc de programmes en python, rst2pdf permet facilement de faire vos documents pdf à partir d'un simple éditeur de texte.
    Le manuel complet est disponible ici : http://lateral.netmanagers.com.ar/static/manual.pdf
    Il existe des convertisseurs online : http://www.rst2pdf.net/
    permalink -
    - http://docutils.sourceforge.net/docs/user/rst/quickref.html
    python rst
  • path - Use a Glob() to find files recursively in Python? - Stack Overflow
    un "glob recursif" : solution avec os.walk & fnmatch.filter
    permalink -
    - http://stackoverflow.com/questions/2186525/use-a-glob-to-find-files-recursively-in-python
    python
Links per page: 20 50 100
page 10 / 10
Newer►
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.