https://github.com/ignition-devs/ignition-api
📦 Python package and stubs for the Ignition Scripting API
https://github.com/ignition-devs/ignition-api
ignition inductive-automation industrial-automation java jython python python2 scada stubs
Last synced: 2 months ago
JSON representation
📦 Python package and stubs for the Ignition Scripting API
- Host: GitHub
- URL: https://github.com/ignition-devs/ignition-api
- Owner: ignition-devs
- License: mit
- Created: 2025-12-14T20:48:50.000Z (3 months ago)
- Default Branch: 8.3
- Last Pushed: 2026-01-15T06:49:54.000Z (2 months ago)
- Last Synced: 2026-01-15T13:02:04.427Z (2 months ago)
- Topics: ignition, inductive-automation, industrial-automation, java, jython, python, python2, scada, stubs
- Language: Python
- Homepage: http://docs.ia.io
- Size: 761 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# ignition-api 8.3
[](https://pypi.org/project/ignition-api/)
[](https://pypi.org/project/ignition-api/)
[](https://pepy.tech/projects/ignition-api)
[](https://snyk.io/advisor/python/ignition-api)
[](https://github.com/ignition-devs/ignition-api/actions/workflows/ci.yml)
[](https://github.com/orgs/ignition-devs/discussions)
`ignition-api` is a Python package that allows developers to get code completion
for Ignition Scripting API scripting functions in their IDE of choice.
## Table of contents
- [Prerequisites](#prerequisites)
- [Installation and usage](#installation-and-usage)
- [Installing with pip](#installing-with-pip)
- [Stubs](#stubs)
- [Project structure](#project-structure)
- [Packages](#packages)
- [Contributing](#contributing)
- [Discussions](#discussions)
- [Contributors](#contributors)
- [License](#license)
- [Code of conduct](#code-of-conduct)
- [Disclaimer](#disclaimer)
## Prerequisites
Before you begin, ensure you have met the following requirements:
- You have installed [Python 2.7.18]
- You are familiar with [Ignition System Functions]
## Installation and usage
### Installing with `pip`
The preferred method is to install it by running `pip`. It requires Python
2.7.18.
```bash
python2 -m pip install ignition-api
```
This will install it as package to your Python installation, which will allow
you to call Ignition Scripting functions from Python's REPL, and get code
completion using an IDE such as PyCharm and Visual Studio Code.
```bash
$ python2
Python 2.7.18 (default, Nov 9 2020, 16:23:15)
[GCC Apple LLVM 12.0.0 (clang-1200.0.32.21)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from __future__ import print_function
>>> import system.util
>>> print(system.util.__doc__)
Utility Functions.
The following functions give you access to view various Gateway and
Client data, as well as interact with other various systems.
>>> system.util.beep()
>>> quit()
```
And to uninstall:
```bash
python2 -m pip uninstall ignition-api
```
## Stubs
[`ignition-api-stubs`] is a companion package that provides Python type stubs
(`.pyi` files) for the Ignition Scripting API. Type stubs enable static type
checking and enhanced IDE support for code that depends on `ignition-api`.
The recommended use of `ignition-api-stubs` is to enable type checking of your
Ignition scripting code using [`mypy`]. This allows you to catch type-related
errors during development before deploying to your Ignition gateway.
## Project structure
### Packages
This project consists of the following packages:
- com
- codahale
- [google](#comgoogle)
- [inductiveautomation](#cominductiveautomation)
- palantir
- org
- [apache](#orgapache)
- [bson](#orgbson)
- [json](#orgjson)
- [python](#orgpython)
- [slf4j](#orgslf4j)
- [system](#system)
#### com.google
This package includes supporting classes and interfaces from Guava: Google Core
Libraries for Java 32.0.1-jre API. For more information, see documentation here:
#### com.inductiveautomation
This package includes supporting Inductive Automation's classes and interfaces.
For more information, see documentation here:
.
#### org.apache
##### org.apache.commons.lang3
This package includes supporting classes and interfaces from Apache Commons Lang
3.11 API. For more information, see documentation here:
##### org.apache.commons.math3
This package includes supporting classes and interfaces from Apache Commons Math
3.6.1 API. For more information, see documentation here:
##### org.apache.commons.poi
This package includes supporting classes and interfaces from Apache POI 4.1.2
API. For more information, see documentation here:
#### org.bson
This package includes supporting classes and interfaces from Mongo Java driver
4.8.1, see documentation here:
#### org.json
This package includes supporting classes and interfaces from the Inductive
Automation's `org.json` package, see documentation here:
#### org.python
This package includes supporting Jython classes and interfaces. For more
information, see documentation here:
.
#### org.slf4j
This package includes supporting classes and interfaces from SLF4J API Module.
For more information, see documentation here:
.
#### system
This package includes all Ignition Scripting Functions. For more information,
see documentation here:
.
## Contributing
See [CONTRIBUTING.md].
## Discussions
Feel free to post your questions and/or ideas at [Discussions].
## Contributors
Thanks to everyone who has contributed to this project.
Up-to-date list of contributors can be found here: [CONTRIBUTORS].
## License
See the [LICENSE].
## Code of conduct
This project has adopted the [Microsoft Open Source Code of Conduct].
## Disclaimer
This project is not an official product of Inductive Automation. Ignition is a
trademark of Inductive Automation. This package is community-maintained and
provided as-is for development assistance purposes.
[CONTRIBUTING.md]: https://github.com/ignition-devs/ignition-api/blob/main/CONTRIBUTING.md#contributing-to-ignition-api
[CONTRIBUTORS]: https://github.com/ignition-devs/ignition-api/graphs/contributors
[Discussions]: https://github.com/orgs/ignition-devs/discussions
[`ignition-api-stubs`]: https://pypi.org/project/ignition-api-stubs
[Ignition System Functions]: https://docs.inductiveautomation.com/docs/8.3/appendix/scripting-functions
[LICENSE]: https://github.com/ignition-devs/ignition-api/blob/main/LICENSE
[Microsoft Open Source Code of Conduct]: https://opensource.microsoft.com/codeofconduct/
[`mypy`]: https://coatl-mypy.readthedocs.io/en/v0.971/
[Python 2.7.18]: https://www.python.org/downloads/release/python-2718/