9 lines
121 B
Python
Executable file
9 lines
121 B
Python
Executable file
#!/usr/bin/python3
|
|
"""FTSE All Share."""
|
|
|
|
from google_stocks import Index
|
|
|
|
index = Index("SPTMI")
|
|
|
|
print(index.one_line)
|