Shaare your links...
3379 links
L!NKS Retour au blog Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
◄Older
page 5 / 10
Newer►
194 results for tags python x
  • 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
  • SimpleXMLRPCServer – Implements an XML-RPC server. - Python Module of the Week
    permalink -
    - http://pymotw.com/2/SimpleXMLRPCServer/
    pymotw python xmlrpc
  • Quickstart — Requests 2.4.0 documentation
    et: Advanced Usage — Requests 2.4.0 documentation
    http://docs.python-requests.org/en/latest/user/advanced/
    permalink -
    - http://docs.python-requests.org/en/latest/user/quickstart/
    python requests
  • Requests: HTTP pour les humains — Requests 0.13.9 documentation
    permalink -
    - http://fr.python-requests.org/en/latest/
    python
  • Confused by python file mode "w+" - Stack Overflow
    permalink -
    - https://stackoverflow.com/questions/16208206/confused-by-python-file-mode-w
    python
  • Python pip: Upgrade Packages Command Under Unix or Linux
    pip install PackageNameHere --upgrade
    permalink -
    - http://www.cyberciti.biz/faq/unix-linux-python-pip-upgrading-installed-packages/
    pip python
  • xmlrpclib – Client-side library for XML-RPC communication - Python Module of the Week
    permalink -
    - http://pymotw.com/2/xmlrpclib/
    pymotw python xmlrpc
  • Testing Multiple Pi Camera Options With Python | Raspberry Pi Spy
    Contrôler la picamera avec python
    et aussi :
    http://www.raspberryconnect.com/hardware-add-ons/item/137-raspberry-pi-camera-module
    permalink -
    - http://www.raspberrypi-spy.co.uk/2013/06/testing-multiple-pi-camera-options-with-python/
    picamera python raspberry
  • [Python] Lancer une appli via python [Résolu]
    Pour passer des paramètre, il suffit de les donner sous forme de liste à popen.

    Exemple: Je lance le programme compress et je lui passe 2 options:
    -V et un nom de fichier:

    p = subprocess.Popen(args=["compress","-V",nomdefichier], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True)
    outputlines = p.stdout.readlines()
    p.wait()
    print outputlines
    permalink -
    - http://www.commentcamarche.net/forum/affich-2231600-python-lancer-une-appli-via-python
    memo python
  • Get DreamPie
    Shell python :
    sous windows, nécessite :
       * python (of course)
       * PyGTK (http://ftp.gnome.org/pub/GNOME/binaries/win32/pygtk/)
       * pygtksourceview (http://ftp.gnome.org/pub/GNOME/binaries/win32/pygtksourceview/2.10/)

    via Sam&Max : http://sametmax.com/mon-environnement-de-travail/
    permalink -
    - http://www.dreampie.org/download.html
    python
  • Remplacer sed, awk, cut et Perl par Python (= orgasme pour sysadmin) | Sam & Max: Python, Django, Git et du cul
    permalink -
    - http://sametmax.com/remplacer-sed-awk-cut-et-perl-par-python-orgasme-pour-sysadmin/
    python
  • Les time zones en Python | Sam & Max: Python, Django, Git et du cul
    permalink -
    - http://sametmax.com/les-time-zones-en-python/
    python
  • ipython 2.1.0 : Python Package Index
    permalink -
    - https://pypi.python.org/pypi/ipython#downloads
    python
  • Raspberry Pi Documentation
    permalink -
    - http://www.raspberrypi.org/documentation/usage/camera/python/README.md
    picamera python
  • optparse – Command line option parser to replace getopt. - Python Module of the Week
    permalink -
    - http://pymotw.com/2/optparse/
    python
Links per page: 20 50 100
◄Older
page 5 / 10
Newer►
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.