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 4 / 10
Newer►
188 results for tags python x
  • rfxcom 0.3.0 : Python Package Index
    permalink -
    - https://pypi.python.org/pypi/rfxcom/0.3.0
    python RFXCOM
  • Librairie python pour communiquer avec RFXtrx (RFXCOM)
    permalink -
    - https://github.com/woudt/pyRFXtrx
    433Mhz python RFXCOM
  • rfxcmd - Command line utility for RFX devices - Google Project Hosting
    permalink -
    - https://code.google.com/p/rfxcmd/
    python RFXCOM
  • Python 3 Wall of Superpowers
    permalink -
    - https://python3wos.appspot.com/
    python
  • Kivy/python-for-android: Slides
    Présentation rapide de kivy (développement d'application pour mobile android, IOS,..) en python
    permalink -
    - http://slides.com/baptistelagarde/kivy-python-for-android/fullscreen#/12
    android kivy python
  • Dusty's Diverse Domain » Blog Archive » Building a Python Kivy App in Android (Easier than it looks, but harder than it needs to be)
    permalink -
    - http://archlinux.me/dusty/2012/12/05/building-a-python-kivy-app-in-android-easier-than-it-looks-but-harder-than-it-needs-to-be/
    android kivy python
  • Qu’est-ce qu’une coroutine en Python, et à quoi ça sert ? | Sam & Max
    En résumé :

       yield permet de faire des générateurs
       On peut demander la prochaine valeur du générateur avec next(). Dans ce cas, le code s’exécute jusqu’au prochain yield.
       On peut envoyer une valeur au générateur avec send(). Dans ce cas, on DOIT partir d’un yield existant duquel on récupère la valeur envoyée via une assignation. Donc il faut au moins un next() avant d’utiliser un send() et un signe égal sur le yield.
       send() va aussi aller au prochain yield et retourner sa valeur.
       Une coroutine n’est qu’une formalisation de la manière d’éffectuer une tâche avec un init, une exécution et une finalisation optionelle en utilisant un générateur. C’est une solution générique à un problème courant, mais plus léger qu’une classe.
       Généralement on décore les générateurs coroutines avec un décorateur @coroutine pour s’éviter d’appeler next() à la main et notifier l’usage qu’il est fait de ce générateur.
       On peut chaîner des coroutines comme on chaîne des générateurs, mais au lieu de lire les données une à une (PULL), on les envoie une par une (PUSH). Cela est pratique quand on ne sait pas à l’avance quand une nouvelle donnée va arriver.
    permalink -
    - http://sametmax.com/quest-ce-quune-coroutine-en-python-et-a-quoi-ca-sert/
    python
  • pyspider - Liens en vrac de sebsauvage
    permalink -
    - http://sebsauvage.net/links/?AIhfhQ
    crawler python
  • AES encryption of files in Python with PyCrypto - Eli Bendersky's website
    permalink -
    - http://eli.thegreenplace.net/2010/06/25/aes-encryption-of-files-in-python-with-pycrypto/
    crypt pycrypto python
  • Un framework Web python dans une bouteille
    permalink -
    - http://sebastien-dupire.info/python-bottle-framework.html
    bottle python
  • Tutorial — Bottle 0.13-dev documentation
    static_files (css, images,...)
    from bottle import static_file
    @route('/images/<filename:re:.*\.png>')
    def send_image(filename):
       return static_file(filename, root='/path/to/image/files', mimetype='image/png')

    @route('/static/<filename:path>')
    def send_static(filename):
       return static_file(filename, root='/path/to/static/files')
    permalink -
    - http://bottlepy.org/docs/dev/tutorial.html#static-files
    bottle python
  • Utiliser Cherrypy (serveur web léger) avec Bottle (Framework léger) | Sam & Max
    permalink -
    - http://sametmax.com/utiliser-cherrypy-serveur-web-leger-avec-bottle-framework-leger/
    bottle cherrypy python
  • Tutoriel Matplotlib
    permalink -
    - http://python.developpez.com/tutoriels/graphique-2d/matplotlib/#LII-I
    matplotlib python tuto
  • Python Headless MatplotLib / Pyplot - Stack Overflow
    import matplotlib
    matplotlib.use('Agg')
    permalink -
    - https://stackoverflow.com/questions/5503601/python-headless-matplotlib-pyplot
    matplotlib python
  • Tutoriel Matplotlib
    peut-être temps que je m'y mette ?
    permalink -
    - http://www.science-emergence.com/Matplotlib/
    python
  • Raspi – Capteur de temperature DS18B20
    permalink -
    - http://www.manuel-esteban.com/raspi-capteur-de-temperature-ds18b20/
    domotique ds18b20 python raspberry
  • python - XML-RPC Javascript Unsupported method ('OPTIONS') - Stack Overflow
    Bon...
    Voilà un petit moment que je me frotte à un problème de CORS (Cross-Origin Resource Sharing pas de cors au pieds !)
    lire ceci : http://www.nczonline.net/blog/2010/05/25/cross-domain-ajax-with-cross-origin-resource-sharing/

    Mon navigateur refuse de me donner la réponse à une requête xmlrpc (via mimic.js) car le serveur à qui il fait la requête n'est pas celui qui héberge ma page :(
    Le problème semble venir de mon serveur xmlrpc qui utilise SimpleXMLRPCServer (python)...
    "The problem is that python's XMLRPC server does not include CORS headers (nor respond HTTP OPTIONS request) in the XML-RPC request."

    Il va falloir que j'ajoute un RequestHandler :
    class RequestHandler(SimpleXMLRPCRequestHandler):
       rpc_paths = ('/RPC2',)

       def do_OPTIONS(self):
           self.send_response(200)
           self.end_headers()

       # Add these headers to all responses
       def end_headers(self):
           self.send_header("Access-Control-Allow-Headers",
                            "Origin, X-Requested-With, Content-Type, Accept")
           self.send_header("Access-Control-Allow-Origin", "*")
           SimpleXMLRPCRequestHandler.end_headers(self)

    voir aussi ceci (doc python) :https://docs.python.org/2/library/simplexmlrpcserver.html#simplexmlrpcserver-example
    et tester pour voir si ça marche !
    permalink -
    - https://stackoverflow.com/questions/3248320/xml-rpc-javascript-unsupported-method-options
    cors python sop xmlrpc
  • psutil lib for python
    permalink -
    - https://github.com/giampaolo/psutil
    python
  • Un générateur d'interface graphique pour vos scripts Python « Korben
    permalink -
    - http://korben.info/generateur-dinterface-graphique-vos-scripts-python.html
    python
  • Canalc2 : Jonathan Schemoul - PyconFR'13 (26/10/2013)
    pyconfr 2013
    permalink -
    - http://www.canalc2.tv/video.asp?idvideo=12320
    conf python
Links per page: 20 50 100
◄Older
page 4 / 10
Newer►
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.