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

tooltils

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tooltils

A lightweight python utility package built on the standard library

  • 1.8.0
  • PyPI
  • Socket score

Maintainers
1

tooltils | v1.8.0

python downloads

A lightweight python utility package built on the standard library

>>> import tooltils
>>> data = tooltils.requests.get('httpbin.org/get')
>>> data.status_code
'200 OK'
>>> data.end_data.url
'https:/httpbin.org/get'
>>> data.end_data.sent_headers
{'User-Agent': 'Python-tooltils/1.8.0', 'Accept-Encoding': 'gzip, deflate', ...}
>>> data.headers
{'Accept': '*/*', 'Accept-Encoding': 'gzip, deflate', 'Host': 'httpbin.org', ...}

Installation

Get the latest version from PyPi

python -m pip install tooltils

OR install using the source code

git clone https://github.com/feetbots/tooltils.git
cd tooltils
python -m pip install setup.py --user

API

The full API is available to read in the project files at API.md

Best Features

Tooltils is built completely on the Python standard library, but still implementing advanced features like:

  • Automatic or specified timezone conversion for date and time methods
  • A command line interface to manage the installation
  • Obtaining thorough operating system information
  • Keep-alive connection re-use for requesting
  • High optimisation

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