PowerTerm Host Publisher
PowerTerm Host Publisher is made up of a number of complimentary components: the SDK, the server, and wrappers. The PowerTerm Host Publisher SDK has three major components: the integration server, the integration server administrator, and the testing utility. Allowing developers to test and deploy while they are working, the integration server comes with a limited number of concurrent sessions. The administrator component is a stand-alone application that can be run on the same computer or on others, where the user connects to the server as an administrator rather than a client. With the testing utility, administrators can invoke the testing utility from within the server so it can be run on different machines. Easy to deploy and maintain, the SDK provides a complete development and testing environment.
Learn more
tox
tox aims to automate and standardize testing in Python. It is part of a larger vision of easing the packaging, testing and release process of Python software. tox is a generic virtualenv management and test command-line tool you can use for checking that your package installs correctly with different Python versions and interpreters, running your tests in each of the environments, configuring your test tool of choice, and acting as a frontend to continuous integration servers, greatly reducing boilerplate and merging CI and shell-based testing. First, install tox with pip install tox. Then put basic information about your project and the test environments you want your project to run in into a tox.ini file residing right next to your setup.py file. You can also try generating a tox.ini file automatically, by running tox-quickstart and then answering a few simple questions. Install and test your project against Python2.7 and Python3.6.
Learn more
regon
litex.regon, a frontend for Polish REGON database. Simple, pythonic wrapper for REGON database. To access its SOAP API, one needs a user key issued by REGON administrators. REGONAPI accepts one argument, the service URL (provided by REGON administrators). After login, one can start querying the database. Single REGON number (either 9 or 14 digits long), single 10 digit KRS number, single NIP (10 digits strings), collection of REGONs (all of them have to be either 14 or 9 digits long), collection of KRSs, collection of NIPs. Only one parameter is used in the query. If multiple ones are passed, first from the above list is taken into account. Additionally, a detailed parameter can be passed, detailed=True causes the search method to fetch the default detailed report. If one knows the REGON of a business entity and a detailed report name, a full report can be fetched directly.
Learn more
Gymnasium
Gymnasium is a maintained fork of OpenAI’s Gym library, providing a standard API for reinforcement learning and a diverse collection of reference environments. The Gymnasium interface is simple, pythonic, and capable of representing general RL problems, and has a compatibility wrapper for old Gym environments. At the core of Gymnasium is the Env class, a high-level Python class representing a Markov Decision Process (MDP) from reinforcement learning theory. The class provides users the ability to generate an initial state, transition to new states given an action, and visualize the environment. Alongside Env, Wrapper classes are provided to help augment or modify the environment, particularly the agent observations, rewards, and actions taken. Gymnasium includes various built-in environments and utilities to simplify researchers’ work, along with being supported by most training libraries.
Learn more