You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

listtypes

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

listtypes

A python package full of diffrent types of lists, all of which are type safe.

1.0.1
pipPyPI
Maintainers
1

ListTypes

A python package full of diffrent types of lists, all of which are type safe.

Install

Use pip to install the package.

pip install listtypes

Then import into any project like so:

from listtypes import TypeList, StringList, IntList # etc

Types of Lists

Here is a full list of all the types of lists you can import.

TypeList(t: type, l: list = []) # used as a base for every list, can be used to make custom lists of a certian type.
StringList(l: list = [])
IntList(l: list = [])
FloatList(l: list = [])
BoolList(l: list = [])
DictList(l: list = [])

Contributing

If you'd like to contribute to this project just open a Pull Request detailing what you're adding, removing and otherwise fixing.

Issues

If you were to find a bug in this package (which is likely to happen at some point) report it on the issues page.

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