У JavaScript можна роздрукувати визначення функції. Чи є спосіб досягти цього в Python?
(Просто граю в інтерактивному режимі, і я хотів прочитати модуль без відкритого (). Мені просто цікаво).
У JavaScript можна роздрукувати визначення функції. Чи є спосіб досягти цього в Python?
(Просто граю в інтерактивному режимі, і я хотів прочитати модуль без відкритого (). Мені просто цікаво).
Відповіді:
Якщо ви імпортуєте функцію, ви можете використовувати inspect.getsource:
>>> import re
>>> import inspect
>>> print inspect.getsource(re.compile)
def compile(pattern, flags=0):
"Compile a regular expression pattern, returning a pattern object."
return _compile(pattern, flags)
Це буде працювати в інтерактивному підказці, але, мабуть, лише на імпортних об'єктах (не об'єктах, визначених в інтерактивному запиті). І звичайно, це спрацює лише в тому випадку, якщо Python зможе знайти вихідний код (тому не на вбудованих об'єктах, C libs, .pyc файлах тощо)
Якщо ви використовуєте iPython , ви можете скористатися function_name?допомогою, щоб отримати довідку і function_name??, якщо це можливо , буде надруковано джерело.
Хоча я, як правило, погоджуюся, що inspectце хороша відповідь, я не погоджуюся з тим, що ви не можете отримати вихідний код об'єктів, визначений в інтерпретаторі. Якщо ви використовуєте dill.source.getsourceз dill, ви можете отримати вихідні тексти функцій і лямбда, навіть якщо вони визначені в інтерактивному режимі . Він також може отримати код для зв'язаних або незв'язаних методів та функцій класу, визначених у curries ... однак, ви не зможете скласти цей код без коду об'єкта, що додається.
>>> from dill.source import getsource
>>>
>>> def add(x,y):
... return x+y
...
>>> squared = lambda x:x**2
>>>
>>> print getsource(add)
def add(x,y):
return x+y
>>> print getsource(squared)
squared = lambda x:x**2
>>>
>>> class Foo(object):
... def bar(self, x):
... return x*x+x
...
>>> f = Foo()
>>>
>>> print getsource(f.bar)
def bar(self, x):
return x*x+x
>>>
Ви можете використовувати ключове слово __doc__:
#print the class description
print string.__doc__
#print function description
print open.__doc__
__doc__ насправді повертає, це все, що автор коду помістив у рядок doc (потрійний цитуваний рядок). Нічого більше, нічого менше.
Ви можете використовувати функцію __doc__in, взяти hog()функцію як приклад: Ви можете бачити таке використання hog():
from skimage.feature import hog
print hog.__doc__
Вихід буде:
Extract Histogram of Oriented Gradients (HOG) for a given image.
Compute a Histogram of Oriented Gradients (HOG) by
1. (optional) global image normalisation
2. computing the gradient image in x and y
3. computing gradient histograms
4. normalising across blocks
5. flattening into a feature vector
Parameters
----------
image : (M, N) ndarray
Input image (greyscale).
orientations : int
Number of orientation bins.
pixels_per_cell : 2 tuple (int, int)
Size (in pixels) of a cell.
cells_per_block : 2 tuple (int,int)
Number of cells in each block.
visualise : bool, optional
Also return an image of the HOG.
transform_sqrt : bool, optional
Apply power law compression to normalise the image before
processing. DO NOT use this if the image contains negative
values. Also see `notes` section below.
feature_vector : bool, optional
Return the data as a feature vector by calling .ravel() on the result
just before returning.
normalise : bool, deprecated
The parameter is deprecated. Use `transform_sqrt` for power law
compression. `normalise` has been deprecated.
Returns
-------
newarr : ndarray
HOG for the image as a 1D (flattened) array.
hog_image : ndarray (if visualise=True)
A visualisation of the HOG image.
References
----------
* http://en.wikipedia.org/wiki/Histogram_of_oriented_gradients
* Dalal, N and Triggs, B, Histograms of Oriented Gradients for
Human Detection, IEEE Computer Society Conference on Computer
Vision and Pattern Recognition 2005 San Diego, CA, USA
Notes
-----
Power law compression, also known as Gamma correction, is used to reduce
the effects of shadowing and illumination variations. The compression makes
the dark regions lighter. When the kwarg `transform_sqrt` is set to
``True``, the function computes the square root of each color channel
and then applies the hog algorithm to the image.