Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Official Python Library for the Quantel Finance API
Website: quantel.io
Documentation: quantel.io/docs/python
Blog Posts: The Most Powerful Python Finance Library You’ve Never Heard Of
Source Code: ratherbland/Quantel
Get API Key: links.quantel.io/getstarted
Quantel is a powerful financial data and insights API. It provides easy access to world-class financial information. Quantel goes beyond just financial statements, giving users valuable information like insider transactions, major shareholder transactions, share ownership, peers, and so much more.
Some features of Quantel:
Americas
Asia Pacific
Europe
Python 3.6+
pip install quantel
from quantel import Quantel
# Authenticate with the API
qt = Quantel(api_key="<quantel-api-key>")
# Instantiate the ticker class
goog = qt.ticker('goog')
# Retrieve company profile
goog.profile()
The ticker
class also makes it easy to retrieve data for a list of symbols with the same API. Simply pass a list of symbols as the argument to the ticker
class.
from quantel import Quantel
qt = Quantel(api_key="<quantel-api-key>")
symbols = ['fb', 'aapl', 'amzn', 'nflx', 'goog']
faang = qt.ticker(symbols)
faang.profile()
Quantel supports the majority of international exchanges. Read more about what data is supported by which exchanges at quantel.io/docs/
from quantel import Quantel
qt = Quantel(api_key="<quantel-api-key>")
symbols = ['DHER.DE', 'CBA.AX', 'DNB.OL', 'NESN.SW', 'ULVR.L', 'SHOP.TO', 'EDF.PA', ' RELIANCE.NS']
international = qt.ticker(symbols)
international.balance_sheet()
It really is that simple. Set asynchronous=True
when instantiating the ticker class.
from quantel import Quantel
qt = Quantel(api_key="<quantel-api-key>")
goog = qt.ticker('goog', asynchronous=True)
goog.profile()
This project is licensed under the terms of the MIT license.
Questions can be raised directly via guy@quantel.io
FAQs
Interact with the Quantel Finance API
We found that quantel demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.