Skip to content

Its a tiny(actually nano) Python module but very handy for learners and experimenters to look for available methods and doc strings on any object.

Notifications You must be signed in to change notification settings

arihantdaga/apidocs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

apidocs

Its a tiny(actually nano) Python module but very handy for learners and experimenters to look for available methods and doc strings on any object. And sometimes even for experts to quickly peek into new modules.

This nano module has only 1 method #get_info(object)

How to use (example):

import apidocs as apidocs
myList = [1,2,3,4]
# Lets say i want to see availaible methods on myList
apidocs.get_info(myList)

It'll print availaible methods and doc strings on object of list type.

THAT's ALL.

About

Its a tiny(actually nano) Python module but very handy for learners and experimenters to look for available methods and doc strings on any object.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages