Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

WTDpy

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

WTDpy

Basic calls to the World Trading Data API with Python.

  • 0.0.3
  • PyPI
  • Socket score

Maintainers
1

CircleCI Documentation Status PyPI Latest Release

WTDpy

Basic calls to the World Trading Data API with Python. You can find the documentation over here.

Installation

Installing WTDpy via pip is the preferred method, as it will always install the most recent stable release. If you do not have pip installed, this Python installation guide can guide you through the process.

To install WTDpy, run this command in your terminal:

# Use pip to install wtdpy
pip install wtdpy

Downloading and installing WTDpy from source is also possible, follow the code below.

# Download the package
git clone https://github.com/uijl/wtdpy

# Go to the correct folder
cd wtdpy

# Install package
pip install -e .

Starting up

The code snip below shows how you can initialise the WTDpy class. As soon as you have the WTDpy class initialised you can start calling the various functions.

# Import wtdpy library
from wtdpy import WTDpy

# Specifiy your api key
api_token = "Your_API_Token"

# Initialise class
wtdpy = WTDpy(api_token=api_token)

# Search for a stock or index
MSFT = wtdpy.search("Microsoft")

Keywords

FAQs


Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc