Skip to content

Type annotations for Excel types wrapped by win32com / pywin32

License

Notifications You must be signed in to change notification settings

pyxll/exceltypes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Excel Types

This package provides type annotations for Excel objects using the win32com package (part of pywin32).

This is also the default type returned by "pyxll.xl_app()" and so this package will be useful for PyXLL users who want code completion in editors like PyCharm or Visual Studio Code.

Example usage:

# Application is the main "Excel.Application" class
from exceltypes import Application

# If using win32com directly
import win32com.client
xl: Application = win32com.client.Dispatch("Excel.Application")

# Or if using pyxll
import pyxll
xl: Application = pyxll.xl_app()

For details of PyXLL please see https://www.pyxll.com.

About

Type annotations for Excel types wrapped by win32com / pywin32

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages