Comments on: Les imports en Python http://sametmax.com/les-imports-en-python/ Du code, du cul Sat, 07 Nov 2015 11:08:18 +0000 hourly 1 http://wordpress.org/?v=4.1 By: sakkal http://sametmax.com/les-imports-en-python/#comment-164076 Wed, 26 Aug 2015 11:53:33 +0000 http://sametmax.com/?p=6127#comment-164076 Always i use

sys.path.append(os.path.join(os.path.dirname(file),configFile))

And i declare all paramete global

]]>
By: Max http://sametmax.com/les-imports-en-python/#comment-162239 Wed, 17 Jun 2015 14:00:06 +0000 http://sametmax.com/?p=6127#comment-162239 essais de poser ta question là >>> http://indexerror.net ;)

]]>
By: Nightingale http://sametmax.com/les-imports-en-python/#comment-162238 Wed, 17 Jun 2015 13:54:57 +0000 http://sametmax.com/?p=6127#comment-162238 Hola hola,

merci pour l’article! :)

Petite question à laquelle je ne parviens pas à trouver une réponse, même avec l’aide de mon meilleur ami google =/

Est-il possible de connaitre le nom du script faisant l’import d’un module?

En somme j’aimerais qu’un module puisse avoir un comportement différent si c’est super_script1.py qui veut l’importer ou si c’est super_script2.py o_O

]]>
By: Max http://sametmax.com/les-imports-en-python/#comment-161263 Sat, 23 May 2015 23:56:49 +0000 http://sametmax.com/?p=6127#comment-161263 @Inzaguiz — > http://indexerror.net/ :)

]]>
By: Inzaguiz http://sametmax.com/les-imports-en-python/#comment-161042 Wed, 20 May 2015 17:20:23 +0000 http://sametmax.com/?p=6127#comment-161042 est-ce qu’on peut importer une fonction dans un autre fichier.py que le fichier “main” dans même dossier ? Comment ?

]]>
By: Sam http://sametmax.com/les-imports-en-python/#comment-157628 Thu, 12 Mar 2015 16:02:02 +0000 http://sametmax.com/?p=6127#comment-157628 En effet, c’est une bourde. Je retire.

]]>
By: Recher http://sametmax.com/les-imports-en-python/#comment-157340 Fri, 06 Mar 2015 09:49:13 +0000 http://sametmax.com/?p=6127#comment-157340 Ce truc là :

import .test_imports

me fait une syntax error.

À la place, j’ai mis ça :

from . import test_imports

et ça marche comme je veux.

À relier à ce qui est dit ici :

http://stackoverflow.com/questions/12398442/python-relative-import-causes-syntaxerror-exception

C’est le même problème, mais avec “..” (les deux points) au lieu de “.” (le point tout seul).

]]>
By: Anto http://sametmax.com/les-imports-en-python/#comment-125975 Tue, 26 Aug 2014 15:05:30 +0000 http://sametmax.com/?p=6127#comment-125975 Hey ! Merci pour l’excellent article.

Juste une curiosité au niveau de la variable PYTHONPATH: est-ce qu’il s’agit d’une variable d’environnement comme les autres ? Sous Ubuntu:

$ workon myenv
$ ipython
 
In [1]: import sys; sys.path
Out[1]: 
['', 
 '/usr/lib/python2.7',
 '/usr/lib/python2.7/plat-x86_64-linux-gnu',
 '/usr/lib/python2.7/lib-tk',
 # etc.
]
 
# Mais pourtant
$ printenv | grep -i python  # ne retourne rien

J’aurais cru que virtualenvwrapper peuplerait la variable à la volée, mais ça n’a pas l’air d’être le cas.

]]>
By: Sam http://sametmax.com/les-imports-en-python/#comment-104456 Sat, 02 Aug 2014 07:16:53 +0000 http://sametmax.com/?p=6127#comment-104456 sametmax: on vient pour les godes, on reste pour le code !

]]>
By: Marco http://sametmax.com/les-imports-en-python/#comment-104450 Sat, 02 Aug 2014 06:58:44 +0000 http://sametmax.com/?p=6127#comment-104450 C’est coool s’t’article, j’étais venu un peu pour du q et puis au final je vais me mettre un peu au langage Python…

]]>