2139 links
238 private links
  • Ginko's Link Dump
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 2 / 3
Newer►
58 results tagged python x
  • Simplistic Python Thread example - SaltyCrane Blog

    NB : a Thread object does not simply return values (that simply not part of the design, bitch). To get a return value, a simple hack consist into passing a reference in the threaded function args and assign the return value to it (on an object, do use setattr, dumbass).

    August 7, 2015 at 4:07:46 PM GMT+2 - permalink -
    QRCode
    - archive.org - http://www.saltycrane.com/blog/2008/09/simplistic-python-thread-example/
    python
  • Send2Trash 1.3.0 : Python Package Index

    Un adaptateur multi-os pour utiliser la trashcan (ou recycle bin) native du système hôte

    August 7, 2015 at 1:11:38 PM GMT+2 - permalink -
    QRCode
    - archive.org - https://pypi.python.org/pypi/Send2Trash
    python
  • Reloading Python Modules

    Le builtin imp.relaod() (juste reload pour Python 2.x) ne recharge que le les référence directes des imports : autrement le module rechargé lui même.

    Si un module B import des objets de d'un module A et qu'on recharge les module A, les références à A dans le module B ne sont pas rechargées. Pour cela il faut recharger le module B également. En prenant soin de bien le recharger après A. Autrement dit il faut gérer un graph de dépendances.

    C'est ce qu'aborde cet article dans le détail.

    August 2, 2015 at 7:53:03 PM GMT+2 - permalink -
    QRCode
    - archive.org - http://www.indelible.org/ink/python-reloading/
    python
  • Crossbar, le futur des applications Web Python ? | Sam & Max

    Une explication assez claire (mais sans doute un peu vieille) de crossbar par Sam

    July 24, 2015 at 11:12:36 AM GMT+2 - permalink -
    QRCode
    - archive.org - http://sametmax.com/crossbar-le-futur-des-applications-web-python/
    python
  • Le bon coup de pute du jeudi | Sam & Max

    Ah ah, tout les requis pour remplacer une fonction builtin. Escrocs !

    July 23, 2015 at 12:15:37 PM GMT+2 - permalink -
    QRCode
    - archive.org - http://sametmax.com/le-bon-coup-de-pute-du-jeudi/
    python
  • The IPython Notebook — IPython

    Le notebook IPython, un outil sans doute assez dingue dans le monde de la recherche !

    July 18, 2015 at 7:12:26 PM GMT+2 - permalink -
    QRCode
    - archive.org - http://ipython.org/notebook.html
    python
  • Home - the bpython interpreter

    Un autre shell python alternatif

    July 18, 2015 at 7:03:12 PM GMT+2 - permalink -
    QRCode
    - archive.org - http://bpython-interpreter.org/
    python shell
  • Reinteract

    Reinteract est système pour jouer avec python. Un genre de shell à la IPython mais avec des graphs et même la capacité de jouer en son un signal (défini par une fonction ou autre).

    July 18, 2015 at 6:59:04 PM GMT+2 - permalink -
    QRCode
    - archive.org - http://www.reinteract.org/
    python shell
  • IPython Tip Sheet

    Une petite cheat sheet IPython

    July 18, 2015 at 6:49:12 PM GMT+2 - permalink -
    QRCode
    - archive.org - http://pages.physics.cornell.edu/~myers/teaching/ComputationalMethods/python/ipython.html
    python
  • Introducing IPython — IPython 2.4.0 documentation

    IPython, le shell du futur !

    July 18, 2015 at 6:48:04 PM GMT+2 - permalink -
    QRCode
    - archive.org - http://ipython.org/ipython-doc/2/interactive/tutorial.html
    python shell
  • Nouveau fichier de start up Python | Sam & Max

    Un .bashrc pour le shell python, pas mal fait, je me le mets sous le coude.

    July 8, 2015 at 1:58:13 PM GMT+2 - permalink -
    QRCode
    - archive.org - http://sametmax.com/nouveau-fichier-de-start-up-python/
    python
  • Youtube-dlG by MrS0m30n3

    Un GUI pour youtube-dl en WxPython

    June 17, 2015 at 3:39:50 PM GMT+2 - permalink -
    QRCode
    - archive.org - https://mrs0m30n3.github.io/youtube-dl-gui/
    tool opensource python gui
  • Le débat sur la programmation fonctionnelle en Python | Sam & Max
    April 28, 2015 at 11:00:51 AM GMT+2 - permalink -
    QRCode
    - archive.org - http://sametmax.com/le-debat-sur-la-programmation-fonctionnelle-en-python/
    python
  • Overview of Python Visualization Tools - Practical Business Python
    April 21, 2015 at 3:05:51 PM GMT+2 - permalink -
    QRCode
    - archive.org - http://pbpython.com/visualization-tools-1.html
    python
  • Goslate: Free Google Translate API — goslate 1.3.0 documentation

    Un lib python magique qui permet de traduire du texte via l'API Google d'une façon simplissime.

    January 12, 2015 at 6:34:24 PM GMT+1 - permalink -
    QRCode
    - archive.org - http://pythonhosted.org/goslate/
    python translate google opensource
  • Python 2 Context manager

    Context manager, le truc qui referme tout seul en python (le truc derrière la syntaxe "with func as truc:"

    January 12, 2015 at 6:32:38 PM GMT+1 - permalink -
    QRCode
    - archive.org - https://docs.python.org/2/library/stdtypes.html#context-manager-types
    python
  • Unicode HOWTO — Python 3 documentation
    January 12, 2015 at 6:28:40 PM GMT+1 - permalink -
    QRCode
    - archive.org - https://docs.python.org/3/howto/unicode.html
    python unicode
  • simeonfranklin.com - Understanding Python Decorators in 12 Easy Steps!
    January 2, 2015 at 1:09:54 PM GMT+1 - permalink -
    QRCode
    - archive.org - http://simeonfranklin.com/blog/2012/jul/1/python-decorators-in-12-steps/
    python decorators
  • Running a Simple CGI Web Server

    Server cgi python de test, pretty useful

    January 2, 2015 at 1:05:45 PM GMT+1 - permalink -
    QRCode
    - archive.org - http://www.johnloomis.org/python/cgiserver.html
    python cgi
  • ConfigParser – Work with configuration files - Python Module of the Week

    ConfigParser, le module qui gère la lecture de fichiers .ini, utile pour la sérialisation de la configuration.

    January 2, 2015 at 1:04:02 PM GMT+1 - permalink -
    QRCode
    - archive.org - http://pymotw.com/2/ConfigParser/
    python
Links per page: 20 50 100
◄Older
page 2 / 3
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation