Shaare your links...
3325 links
L!NKS Retour au blog Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
◄Older
page 9 / 10
Newer►
188 results for tags python x
  • Un serveur web intégré à OSX | Korben
    Lancer un serveur HTTP minimaliste en une ligne de python :
    python -m SimpleHTTPServer 8000
    permalink -
    - http://korben.info/un-serveur-web-integre-a-osx.html
    html python web
  • Python Regex Tool
    permalink -
    - http://www.pythonregex.com/
    online python regex
  • Simple Python Motion Jpeg (mjpeg server) from webcam. Using: OpenCV,BaseHTTPServer
    Un serveur mjpeg en quelques lignes de python avec BaseHTTPServer
    permalink -
    - https://gist.github.com/n3wtron/4624820
    image python raspberry video webcam
  • Python tutorial
    Tuto pour python. A noter la lecture agréable et un menu de navigation à gauche qui permet de trouver rapidement ce que l'on cherche.
    D'autres tutos sont disponibles :
    ASP.NET | jQuery | AJAX | ANT | JSP | Servlets | log4j | iBATIS | Hibernate | JDBC | Struts | HTML5 | SQL | MySQL | C++ | UNIX
    permalink -
    - http://www.tutorialspoint.com/python/
    python tuto
  • SimpleCV: SimpleCV Tutorial — Tutorial
    Binding pour opencv simple+++ !
    Nécessite Numpy, Scipy et PIL
    pour installer:
        sudo apt-get install python-scipy
        sudo pip install simplecv
    permalink -
    - http://tutorial.simplecv.org/en/latest/
    image python
  • Basic Image Processing - Physical Computing with Raspberry Pi
    imgproc
    permalink -
    - http://www.cl.cam.ac.uk/~db434/raspi/image_processing/
    image python
  • OS.Walk and Fnmatch in Python
    import fnmatch
    import os

    images = ['*.jpg', '*.jpeg', '*.png', '*.tif', '*.tiff']
    matches = []

    for root, dirnames, filenames in os.walk("C:\\"):
       for extensions in images:
           for filename in fnmatch.filter(filenames, extensions):
               matches.append(os.path.join(root, filename))
    permalink -
    - http://www.pythonforbeginners.com/systems-programming/os-walk-and-fnmatch-in-python/
    python
  • L’encoding en Python, une bonne fois pour toute | Sam & Max: Python, Django, Git et du cul
    permalink -
    - http://sametmax.com/lencoding-en-python-une-bonne-fois-pour-toute/
    python
  • 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
Links per page: 20 50 100
◄Older
page 9 / 10
Newer►
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.