Les Partages de Memiks
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 2 / 3
44 results tagged python  ✕
marker/README.md at master · pindexis/marker · GitHub https://github.com/pindexis/marker/blob/master/README.md
Fri Feb 8 02:02:58 2019 archive.org
QRCode
thumbnail

The terminal command palette. Contribute to pindexis/marker development by creating an account on GitHub.

bash shell python terminal
Configuring Pipenv in Visual Studio Code - Olav Lindekleiv https://olav.it/2017/03/04/pipenv-visual-studio-code/
Thu Feb 7 22:21:24 2019 archive.org
QRCode
thumbnail
  • dans le dossier du projet
  • taper pipenv --venv
  • copier le retour
  • sous windows ajouter /Scripts/python.exe à la fin (la ou est python.exe)
  • dans VSCode ouvrir le settings.json qui est dans .vscode du projet
  • changer le path vers python par celui que vous venez de trouver.
  • en gros changer python.pythonPath
  • redémarrer VSCode
  • c'est bon python trouvera les dependances.
python vscode pipenv
FUN - Python 3 : des fondamentaux aux concepts avancés du langage https://www.fun-mooc.fr/courses/course-v1:UCA+107001+session02/about
Sat Dec 29 05:51:11 2018 archive.org
QRCode
thumbnail

Dans ce cours, vous apprendrez à bien programmer en Python. On vous mènera des premiers pas dans le langage à l'étude des concepts les plus évolués, au travers de nombreuses vidéos courtes, de notebooks, et d'exercices auto-évalués.

python mooc cours
What is the Python 3 equivalent of "python -m SimpleHTTPServer" - Stack Overflow https://stackoverflow.com/questions/7943751/what-is-the-python-3-equivalent-of-python-m-simplehttpserver
Thu Nov 1 17:16:07 2018 archive.org
QRCode
thumbnail

Webserver rapide en python :

python3 -m http.server

sous windows 10 à lancer en admin !

python webserver windows 10
Installer CherryPy derrière Apache - peuw.net, encore et toujours mieux que la trottinette. http://blog.peuw.net/posts/installer-cherrypy-derriere-apache
Tue Sep 26 20:58:25 2017 archive.org
QRCode
thumbnail

a2enmod rewrite
a2enmod proxy
a2enmod proxy_http

===

ProxyPreserveHost On

<Directory /var/www/cherrypy/>
RewriteEngine On
RewriteRule ^(.*)$ http://IP_CHERRYPY:PORT_CHERRYPY/$1 [proxy]

===

sudo service apache2 restart

===
(pratique quand on virtualise.../Mutualise...)

python cherrypy apache
CherryPy — A Minimalist Python Web Framework http://cherrypy.org/
Mon Sep 25 18:50:38 2017 archive.org
QRCode

CherryPy is a pythonic, object-oriented web framework

CherryPy allows developers to build web applications in much the same way they would build any other object-oriented Python program. This results in smaller source code developed in less time.

CherryPy is now more than ten years old and it is has proven to be very fast and stable. It is being used in production by many sites, from the simplest to the most demanding.

python framework
http://www-igm.univ-mlv.fr/~dr/XPOSE/PerlVsPython/ http://www-igm.univ-mlv.fr/~dr/XPOSE/PerlVsPython/
Mon Sep 25 18:46:45 2017 archive.org
QRCode
thumbnail

Lequel choisir ?Il est difficile de donner une réponse tranchée à cette question.

Perl s'adresse d'avantage à des gens ayant déja programmé, des programmeurs familiers au C, à Sed, Awk ou aux commandes Unix. Il nécessite la compréhension des expressions rationnelles, et d'avoir la faculté de comprendre le code des autres. On l'utilise plus volontier pour le traitement de chaînes de caractères ainsi que pour les CGI.

Python semble plus approprié aux débutants en programmation. Il intéressera d'avantage ceux qu'ils veulent faire de la programmation orientée objet. Les réactions contre Perl n'apparaissent pas avec Python : ceci atteste la qualité du design et l'implémentation en Python. De part ses conventions, son esthétisme et son support inhérent pour des ensembles d'objets, Python est plus adapté aux projets de grande taille.

Pour conclure, si vous ne savez toujours pas lequel choisir, le mieux de les essayer tous les deux par vous même ! ;-)

perl python code
Read Outlook Events via Python - Stack Overflow http://stackoverflow.com/questions/21477599/read-outlook-events-via-python
Tue Jan 17 23:49:44 2017 archive.org
QRCode
thumbnail

Comment lire les événements Outlook en Python ?
Voir:

  • http://cephas.net/blog/2004/09/17/sending-your-outlook-calendar-using-python/
  • http://www.winscripter.com/WSH/MSOffice/93.aspx
  • https://msdn.microsoft.com/en-us/library/office/ff870566%28v=office.14%29.aspx
  • https://github.com/afester/StackOverflow/blob/master/Python/Win32Com/COMsample.py
outlook python
Pythran chatouille Cython - LinuxFr.org http://linuxfr.org/users/serge_ss_paille/journaux/pythran-chatouille-cython
Thu Jan 5 18:36:42 2017 archive.org
QRCode
thumbnail

Article très intéressant sur la partie optimisation python

python optimisation compilation
Duck DNS http://www.duckdns.org/
Fri Jun 12 23:36:14 2015 archive.org
QRCode

Si tu as un nom de domaine chez gandi, tu peux passer par cela:

https://github.com/lembregtse/gandi-dyndns

un script python qui va mettre à jour ta zone DNS pour prendre en compte la nouvelle IP.

Par contre Attention, les serveurs DNS ont en général un cache des domaines.
donc ton site risque d'être inaccessible quelques heures / minutes après un changement d'IP.

dns gandi python ip
mchaput / whoosh / wiki / Home — Bitbucket https://bitbucket.org/mchaput/whoosh/wiki/Home
Thu May 28 15:57:01 2015 archive.org
QRCode
thumbnail

Whoosh is a fast, featureful full-text indexing and searching library implemented in pure Python. Programmers can use it to easily add search functionality to their applications and websites. Every part of how Whoosh works can be extended or replaced to meet your needs exactly.

Some of Whoosh's features include:

Pythonic API.
Pure-Python. No compilation or binary packages needed, no mysterious crashes.
Fielded indexing and search.
Fast indexing and retrieval -- faster than any other pure-Python search solution I know of. See Benchmarks.
Pluggable scoring algorithm (including BM25F), text analysis, storage, posting format, etc.
Powerful query language.
Production-quality pure Python spell-checker (as far as I know, the only one). 

Whoosh might be useful in the following circumstances:

Anywhere a pure-Python solution is desirable to avoid having to build/compile native libraries (or force users to build/compile them).
As a research platform (at least for programmers that find Python easier to read and work with than Java ;)
When an easy-to-use Pythonic interface is more important to you than raw speed.
If your application can make good use of one deeply integrated search/lookup solution you can rely on just being there rather than having two different search solutions (a simple/slow/homegrown one integrated, an indexed/fast/external binary dependency one as an option). 

Whoosh was created and is maintained by Matt Chaput. It was originally created for use in the online help system of Side Effects Software's 3D animation software Houdini. Side Effects Software Inc. graciously agreed to open-source the code.

DITC_WIP python search engine whoosh open-source
noVNC http://kanaka.github.io/noVNC/
Tue May 20 17:36:58 2014 archive.org
QRCode
thumbnail

Client HTML5 pour VNC qui permet de se connecter au serveur VNC via HTML5 et websocket (ou plugin flash).
Nécessite néanmoins un proxy python pour intéragir avec les serveurs VNC.

Voir cet article aussi
http://www.lafermeduweb.net/billet/novnc-un-client-vnc-en-html5-883.html

sous licence MPL 2.0

html5 client proxy python mpl2
Apprenez à programmer en Python http://www.siteduzero.com/informatique/tutoriels/apprenez-a-programmer-en-python
Thu Feb 7 22:07:54 2013 archive.org
QRCode
thumbnail

Ah tient pas mal ça !

il va falloir que j’approfondisse mes deux trois connaissances de python...

python apprendre langage
glances · GitHub - nicolargo https://github.com/nicolargo/glances
Tue Nov 13 00:23:53 2012 archive.org
QRCode
thumbnail

Une application console Python utilisant psutil pour monitorer un serveur

python console monitoring server psutil application
code_swarm - Python on Vimeo http://vimeo.com/1093745
Tue Jul 10 22:30:33 2012 archive.org
QRCode
thumbnail

Une vidéo retraçant les commit au fil du temps des participants majeur à Python...

et leur "vie" de commit...

très joli.

Python commit video
Twisted http://twistedmatrix.com/trac/
Tue Jul 3 23:40:20 2012 archive.org
QRCode
thumbnail

Un autre framework de serveur pas seulement Web en python !

a essayer.

python server web not only framework twisted
Tornado Web Server http://www.tornadoweb.org/
Mon Jul 2 18:15:41 2012 archive.org
QRCode
thumbnail

Un serveur Web en Python qui ne nécessite aucune dépendance pour peu que votre Python soit en 2.6 ou 2.7

Et le hello world est ridicule:

import tornado.ioloop
import tornado.web

class MainHandler(tornado.web.RequestHandler):
def get(self):
self.write("Hello, world")

application = tornado.web.Application([
(r"/", MainHandler),
])

if name == "main":
application.listen(8888)
tornado.ioloop.IOLoop.instance().start()

python web server tornado
[Python] Convert FLV to MP4 with Python script (ffmpeg) - Pastebin.com http://pastebin.com/j5MmCMVF
Fri Jun 29 21:11:44 2012 archive.org
QRCode
thumbnail

Voici un petit script qui permet en passant un flv en argument de le convertir en mp4 (pratique pour les vidéos du net ;))

tout ca en python et en utilisant ffmpeg.

ffmpeg python flv conversion
compiler les fichiers python d'une application rapidement ? http://shaarli.memiks.fr/?0aqNeA
Fri Jun 29 18:38:31 2012 archive.org
QRCode
thumbnail

python -c "import compileall ; compileall.compile_dir( '.' )"

simple clair, facile :x
j'aime ;)

python compile script
Dive Into Python http://python.developpez.com/cours/DiveIntoPython/php/frdiveintopython/index.php
Thu Mar 29 20:20:33 2012 archive.org
QRCode
thumbnail

Afin de modifier un script qui permet de récupérer les vidéos arte,
je me suis mis à chercher une documentation sur Python

et j'ai trouvé celle ci qui me parait assez complet

python documentation tutoriel
page 2 / 3
4756 links, including 1670 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn