pwsh


Namepwsh JSON
Version 0.3.6 PyPI version JSON
download
home_pageNone
SummaryProvides API for PowerShell.
upload_time2025-08-29 18:30:24
maintainerAdam Karpierz
docs_urlNone
authorAdam Karpierz
requires_python<4.0.0,>=3.10.0
licenseNone
keywords powershell pwsh
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            pwsh
====

Python |package_bold| package provides an API for PowerShell.

Overview
========

TBD...

`PyPI record`_.

`Documentation`_.

Usage
-----

TBD...

Installation
============

Prerequisites:

+ Python 3.10 or higher

  * https://www.python.org/
  * ATTENTION: currently works and is only tested under Windows.

+ pip and setuptools

  * https://pypi.org/project/pip/
  * https://pypi.org/project/setuptools/

To install run:

  .. parsed-literal::

    python -m pip install --upgrade |package|

Development
===========

Prerequisites:

+ Development is strictly based on *tox*. To install it run::

    python -m pip install --upgrade tox

Visit `Development page`_.

Installation from sources:

clone the sources:

  .. parsed-literal::

    git clone |respository| |package|

and run:

  .. parsed-literal::

    python -m pip install ./|package|

or on development mode:

  .. parsed-literal::

    python -m pip install --editable ./|package|

License
=======

  | |copyright|
  | Licensed under the zlib/libpng License
  | https://opensource.org/license/zlib
  | Please refer to the accompanying LICENSE file.

Authors
=======

* Adam Karpierz <adam@karpierz.net>

.. |package| replace:: pwsh
.. |package_bold| replace:: **pwsh**
.. |copyright| replace:: Copyright (c) 2024-2025 Adam Karpierz
.. |respository| replace:: https://github.com/karpierz/pwsh.git
.. _Development page: https://github.com/karpierz/pwsh
.. _PyPI record: https://pypi.org/project/pwsh/
.. _Documentation: https://pw-sh.readthedocs.io/

Changelog
=========

0.3.6 (2025-08-28)
------------------
- | Import of internal PowerShell assemblies has been improved and is
  | now more portable between different versions of PowerShell.
  | From now on, assemblies are first imported from own PowerShell set.
- Making the package typed (but should be enhanced and more restricted).
- General improvements and cleanup.
- Setup (dependencies) update.

0.3.4 (2025-06-11)
------------------
- Little cleanup.
- Setup (dependencies) update.

0.3.3 (2025-05-15)
------------------
- The distribution is now created using 'build' instead of 'setuptools'.
- Setup (dependencies) update (due to regressions in tox and setuptools).

0.3.2 (2025-05-08)
------------------
- Support for PyPy has been removed (due to problems with pythonnet).
- Drop support for Python 3.9 (due to compatibility issues).
- Add 'Host' property.
- Add 'DebugPreference' property.
- | Bugfix: Most outputs of the Write_*() cmdlet's are now visible in the
  | Python console (outputs of the Write_Output() are still not visible).
- Update readthedocs's python to version 3.13
- Update tox's base_python to version 3.13
- Setup (dependencies) update.

0.2.11 (2025-04-24)
-------------------
- Fix for Stop_Process. -Force is now the default.
- Change base_python to Python 3.13

0.2.9 (2025-04-10)
------------------
- Fix compability for Python >= 3.13

0.2.8 (2025-03-30)
------------------
- Add New_Service().

0.2.6 (2025-03-25)
------------------
- Add LocalApplicationDataPath property.

0.2.5 (2025-03-20)
------------------
- Add support for PyPy 3.11
- Drop support for PyPy 3.9
- Setup (dependencies) update.

0.2.3 (2025-02-14)
------------------
- Setup (dependencies) update.

0.2.2 (2025-02-10)
------------------
- Add reference to the System.ServiceProcess
- Copyright year update.

0.2.0 (2025-02-02)
------------------
- Copyright year update.
- Tox configuration is now in native (toml) format.
- Setup (dependencies) update.

0.1.0 (2024-10-30)
------------------
- First release.

0.0.0 (2024-08-13)
------------------
- Initial commit.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pwsh",
    "maintainer": "Adam Karpierz",
    "docs_url": null,
    "requires_python": "<4.0.0,>=3.10.0",
    "maintainer_email": "adam@karpierz.net",
    "keywords": "powershell, pwsh",
    "author": "Adam Karpierz",
    "author_email": "adam@karpierz.net",
    "download_url": "https://files.pythonhosted.org/packages/9f/1b/f80ed1ac32c1116767d5f4f1fe238195fe0d40fd0d52845590da11eaee08/pwsh-0.3.6.tar.gz",
    "platform": "any",
    "description": "pwsh\r\n====\r\n\r\nPython |package_bold| package provides an API for PowerShell.\r\n\r\nOverview\r\n========\r\n\r\nTBD...\r\n\r\n`PyPI record`_.\r\n\r\n`Documentation`_.\r\n\r\nUsage\r\n-----\r\n\r\nTBD...\r\n\r\nInstallation\r\n============\r\n\r\nPrerequisites:\r\n\r\n+ Python 3.10 or higher\r\n\r\n  * https://www.python.org/\r\n  * ATTENTION: currently works and is only tested under Windows.\r\n\r\n+ pip and setuptools\r\n\r\n  * https://pypi.org/project/pip/\r\n  * https://pypi.org/project/setuptools/\r\n\r\nTo install run:\r\n\r\n  .. parsed-literal::\r\n\r\n    python -m pip install --upgrade |package|\r\n\r\nDevelopment\r\n===========\r\n\r\nPrerequisites:\r\n\r\n+ Development is strictly based on *tox*. To install it run::\r\n\r\n    python -m pip install --upgrade tox\r\n\r\nVisit `Development page`_.\r\n\r\nInstallation from sources:\r\n\r\nclone the sources:\r\n\r\n  .. parsed-literal::\r\n\r\n    git clone |respository| |package|\r\n\r\nand run:\r\n\r\n  .. parsed-literal::\r\n\r\n    python -m pip install ./|package|\r\n\r\nor on development mode:\r\n\r\n  .. parsed-literal::\r\n\r\n    python -m pip install --editable ./|package|\r\n\r\nLicense\r\n=======\r\n\r\n  | |copyright|\r\n  | Licensed under the zlib/libpng License\r\n  | https://opensource.org/license/zlib\r\n  | Please refer to the accompanying LICENSE file.\r\n\r\nAuthors\r\n=======\r\n\r\n* Adam Karpierz <adam@karpierz.net>\r\n\r\n.. |package| replace:: pwsh\r\n.. |package_bold| replace:: **pwsh**\r\n.. |copyright| replace:: Copyright (c) 2024-2025 Adam Karpierz\r\n.. |respository| replace:: https://github.com/karpierz/pwsh.git\r\n.. _Development page: https://github.com/karpierz/pwsh\r\n.. _PyPI record: https://pypi.org/project/pwsh/\r\n.. _Documentation: https://pw-sh.readthedocs.io/\r\n\r\nChangelog\r\n=========\r\n\r\n0.3.6 (2025-08-28)\r\n------------------\r\n- | Import of internal PowerShell assemblies has been improved and is\r\n  | now more portable between different versions of PowerShell.\r\n  | From now on, assemblies are first imported from own PowerShell set.\r\n- Making the package typed (but should be enhanced and more restricted).\r\n- General improvements and cleanup.\r\n- Setup (dependencies) update.\r\n\r\n0.3.4 (2025-06-11)\r\n------------------\r\n- Little cleanup.\r\n- Setup (dependencies) update.\r\n\r\n0.3.3 (2025-05-15)\r\n------------------\r\n- The distribution is now created using 'build' instead of 'setuptools'.\r\n- Setup (dependencies) update (due to regressions in tox and setuptools).\r\n\r\n0.3.2 (2025-05-08)\r\n------------------\r\n- Support for PyPy has been removed (due to problems with pythonnet).\r\n- Drop support for Python 3.9 (due to compatibility issues).\r\n- Add 'Host' property.\r\n- Add 'DebugPreference' property.\r\n- | Bugfix: Most outputs of the Write_*() cmdlet's are now visible in the\r\n  | Python console (outputs of the Write_Output() are still not visible).\r\n- Update readthedocs's python to version 3.13\r\n- Update tox's base_python to version 3.13\r\n- Setup (dependencies) update.\r\n\r\n0.2.11 (2025-04-24)\r\n-------------------\r\n- Fix for Stop_Process. -Force is now the default.\r\n- Change base_python to Python 3.13\r\n\r\n0.2.9 (2025-04-10)\r\n------------------\r\n- Fix compability for Python >= 3.13\r\n\r\n0.2.8 (2025-03-30)\r\n------------------\r\n- Add New_Service().\r\n\r\n0.2.6 (2025-03-25)\r\n------------------\r\n- Add LocalApplicationDataPath property.\r\n\r\n0.2.5 (2025-03-20)\r\n------------------\r\n- Add support for PyPy 3.11\r\n- Drop support for PyPy 3.9\r\n- Setup (dependencies) update.\r\n\r\n0.2.3 (2025-02-14)\r\n------------------\r\n- Setup (dependencies) update.\r\n\r\n0.2.2 (2025-02-10)\r\n------------------\r\n- Add reference to the System.ServiceProcess\r\n- Copyright year update.\r\n\r\n0.2.0 (2025-02-02)\r\n------------------\r\n- Copyright year update.\r\n- Tox configuration is now in native (toml) format.\r\n- Setup (dependencies) update.\r\n\r\n0.1.0 (2024-10-30)\r\n------------------\r\n- First release.\r\n\r\n0.0.0 (2024-08-13)\r\n------------------\r\n- Initial commit.\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Provides API for PowerShell.",
    "version": "0.3.6",
    "project_urls": {
        "Documentation": "https://pw-sh.readthedocs.io/",
        "Download": "https://pypi.org/project/pwsh/",
        "Homepage": "https://pypi.org/project/pwsh/",
        "Issues": "https://github.com/karpierz/pwsh/issues",
        "Source": "https://github.com/karpierz/pwsh"
    },
    "split_keywords": [
        "powershell",
        " pwsh"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f853e324371c9902a9f019c8755b3ffce997b8f3e73dbfe030611942b42fa32a",
                "md5": "f98f9f4dc29b3c8a8877a74e4e623054",
                "sha256": "582492b572cc86522cb2d4f8870d407e846a0ef19ac5bf59a85d9529a416623d"
            },
            "downloads": -1,
            "filename": "pwsh-0.3.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f98f9f4dc29b3c8a8877a74e4e623054",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0.0,>=3.10.0",
            "size": 1462707,
            "upload_time": "2025-08-29T18:30:21",
            "upload_time_iso_8601": "2025-08-29T18:30:21.299159Z",
            "url": "https://files.pythonhosted.org/packages/f8/53/e324371c9902a9f019c8755b3ffce997b8f3e73dbfe030611942b42fa32a/pwsh-0.3.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f1bf80ed1ac32c1116767d5f4f1fe238195fe0d40fd0d52845590da11eaee08",
                "md5": "98523c5997ea0344377fbef05da1caf3",
                "sha256": "c0dc1b9122ac3256f77303137c905823a41a2083bbfb097654d2ebdf6be1e1c2"
            },
            "downloads": -1,
            "filename": "pwsh-0.3.6.tar.gz",
            "has_sig": false,
            "md5_digest": "98523c5997ea0344377fbef05da1caf3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0.0,>=3.10.0",
            "size": 1458141,
            "upload_time": "2025-08-29T18:30:24",
            "upload_time_iso_8601": "2025-08-29T18:30:24.609384Z",
            "url": "https://files.pythonhosted.org/packages/9f/1b/f80ed1ac32c1116767d5f4f1fe238195fe0d40fd0d52845590da11eaee08/pwsh-0.3.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-29 18:30:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "karpierz",
    "github_project": "pwsh",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pwsh"
}
        
Elapsed time: 2.01835s