psgshortcut


Namepsgshortcut JSON
Version 5.0.0 PyPI version JSON
download
home_pagehttps://github.com/PySimpleGUI/psgshortcut
SummaryUtility made with PySimpleGUI to create shortcuts of files or programs
upload_time2024-02-13 16:22:24
maintainer
docs_urlNone
authorPySimpleSoft Inc.
requires_python>=3.6
licenseFree To Use But Restricted
keywords gui ui pysimplegui tkinter psgshortcut shortcut windows taskbar
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
  <p align="center"><img width="238" height="135" src="https://pysimplegui.net/images/logos/psglogofull.svg"><p>

  <h2 align="center">psgshortcut</h2>
  <h2 align="center">A PySimpleGUI Application</h2>
</p>

PySimpleGUI Shortcut Tool

Creates Windows shortcuts





<p align="center"><img width="523" height="174" src="screenshot.png"><p>







## Features

* Makes shortcuts for any file
* Shortcuts can be added to your desktop or pin to the taskbar
* Click (or double click) to launch the shortcut
* Enables interacting with Python programs more "Windows-like"

## Installation

### Using PIP with PyPI

The latest official release of PySimpleGUI products can be found on PyPI.  To pip install the demo applications from PyPI, use this command

#### If you use the command `python` on your computer to invoke Python (Windows):

`pip install --upgrade psgshortcut`

#### If you use the command `python3` on your computer to invoke Python (Linux, Mac):

`pip3 install --upgrade psgshortcut`

### Using PIP with GitHub

You can also pip install the PySimpleGUI Applications that are in the PySimpleGUI GitHub account.  The GitHub versions have bug fixes and new programs/features that have not yet been released to PyPI. To directly pip install from that repo:

#### If you use the command `python` on your computer to invoke Python (Windows):

```bash
python -m pip install --upgrade https://github.com/PySimpleGUI/psgshortcut/zipball/main
```

#### If you use the command `python3` on your computer to invoke Python (Linux, Mac):

```bash
python3 -m pip install --upgrade https://github.com/PySimpleGUI/psgshortcut/zipball/main
```


## Usage

Once installed, launch psgshortcut by typing the following in your command line:

`psgshortcut`

## Create a Shortcut To This Program

Use this program to make a shortcut to itself so that you can then put
on your desktop or pin to your taskbar or ???


To do this, follow these steps:

1. Open a command window (I promise, it's the last time you'll need to for this program)
2. Type - `where psgshortcut`
3. Copy the line that `where psgshortcut` gave you into the first input of the shortcut maker program
4. Run psgshortcut by typing `psgshortcut` in your command window
5. Right click and choose "File Location"
6. Copy the file location results, but change the extension from .py to .ico and paste into the Icon file input of the shortcut maker
7. Click "Create Shortcut"

These steps will create a shortcut in the same folder as the target
file.  You can safely move this shortcut file any place you want (like
to your desktop). Double-click the shortcut and your program should
launch.

## Make Shortcuts To Anything

You can not only make shortcuts to Python programs, but you can make
shortcuts to EXE and other files.  The GUI is self-explanatory.  Fill
in the inputs, click the Make Shortcut button and you'll find the
shortcut in the same folder as the target program.

## Important Note - Pinning To Taskbar Requires "Python Command"

If you wish to pin your shortcut to the taskbar, then be sure to fill
in the "Python Command" field with the full path to your pythonw.exe
file.  Without it you'll get "IDLE" as the program that's pinned.  You
can skip filling in this field if you're going to place the shortcut
on your desktop or other location.

## License & Copyright

Copyright 2023-2024 PySimpleSoft, Inc. and/or its licensors.

This is a free-to-use "Utility" and is licensed under the
PySimpleGUI License Agreement, a copy of which is included in the
license.txt file and also available at https://pysimplegui.com/eula.

Please see Section 1.2 of the license regarding the use of this Utility,
and see https://pysimplegui.com/faq for any questions.


## Contributing

We are happy to receive issues describing bug reports and feature
requests! If your bug report relates to a security vulnerability,
please do not file a public issue, and please instead reach out to us
at issues@PySimpleGUI.com.

We do not accept (and do not wish to receive) contributions of
user-created or third-party code, including patches, pull requests, or
code snippets incorporated into submitted issues. Please do not send
us any such code! Bug reports and feature requests should not include
any source code.

If you nonetheless submit any user-created or third-party code to us,
(1) you assign to us all rights and title in or relating to the code;
and (2) to the extent any such assignment is not fully effective, you
hereby grant to us a royalty-free, perpetual, irrevocable, worldwide,
unlimited, sublicensable, transferrable license under all intellectual
property rights embodied therein or relating thereto, to exploit the
code in any manner we choose, including to incorporate the code into
PySimpleGUI and to redistribute it under any terms at our discretion.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/PySimpleGUI/psgshortcut",
    "name": "psgshortcut",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "GUI UI PySimpleGUI tkinter psgshortcut shortcut windows taskbar",
    "author": "PySimpleSoft Inc.",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/8d/05/e3192bff2c4638253b2e34ca97c3d6b47e41373f103580960ffa2e3b6d74/psgshortcut-5.0.0.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\r\n  <p align=\"center\"><img width=\"238\" height=\"135\" src=\"https://pysimplegui.net/images/logos/psglogofull.svg\"><p>\r\n\r\n  <h2 align=\"center\">psgshortcut</h2>\r\n  <h2 align=\"center\">A PySimpleGUI Application</h2>\r\n</p>\r\n\r\nPySimpleGUI Shortcut Tool\r\n\r\nCreates Windows shortcuts\r\n\r\n\r\n\r\n\r\n\r\n<p align=\"center\"><img width=\"523\" height=\"174\" src=\"screenshot.png\"><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Features\r\n\r\n* Makes shortcuts for any file\r\n* Shortcuts can be added to your desktop or pin to the taskbar\r\n* Click (or double click) to launch the shortcut\r\n* Enables interacting with Python programs more \"Windows-like\"\r\n\r\n## Installation\r\n\r\n### Using PIP with PyPI\r\n\r\nThe latest official release of PySimpleGUI products can be found on PyPI.  To pip install the demo applications from PyPI, use this command\r\n\r\n#### If you use the command `python` on your computer to invoke Python (Windows):\r\n\r\n`pip install --upgrade psgshortcut`\r\n\r\n#### If you use the command `python3` on your computer to invoke Python (Linux, Mac):\r\n\r\n`pip3 install --upgrade psgshortcut`\r\n\r\n### Using PIP with GitHub\r\n\r\nYou can also pip install the PySimpleGUI Applications that are in the PySimpleGUI GitHub account.  The GitHub versions have bug fixes and new programs/features that have not yet been released to PyPI. To directly pip install from that repo:\r\n\r\n#### If you use the command `python` on your computer to invoke Python (Windows):\r\n\r\n```bash\r\npython -m pip install --upgrade https://github.com/PySimpleGUI/psgshortcut/zipball/main\r\n```\r\n\r\n#### If you use the command `python3` on your computer to invoke Python (Linux, Mac):\r\n\r\n```bash\r\npython3 -m pip install --upgrade https://github.com/PySimpleGUI/psgshortcut/zipball/main\r\n```\r\n\r\n\r\n## Usage\r\n\r\nOnce installed, launch psgshortcut by typing the following in your command line:\r\n\r\n`psgshortcut`\r\n\r\n## Create a Shortcut To This Program\r\n\r\nUse this program to make a shortcut to itself so that you can then put\r\non your desktop or pin to your taskbar or ???\r\n\r\n\r\nTo do this, follow these steps:\r\n\r\n1. Open a command window (I promise, it's the last time you'll need to for this program)\r\n2. Type - `where psgshortcut`\r\n3. Copy the line that `where psgshortcut` gave you into the first input of the shortcut maker program\r\n4. Run psgshortcut by typing `psgshortcut` in your command window\r\n5. Right click and choose \"File Location\"\r\n6. Copy the file location results, but change the extension from .py to .ico and paste into the Icon file input of the shortcut maker\r\n7. Click \"Create Shortcut\"\r\n\r\nThese steps will create a shortcut in the same folder as the target\r\nfile.  You can safely move this shortcut file any place you want (like\r\nto your desktop). Double-click the shortcut and your program should\r\nlaunch.\r\n\r\n## Make Shortcuts To Anything\r\n\r\nYou can not only make shortcuts to Python programs, but you can make\r\nshortcuts to EXE and other files.  The GUI is self-explanatory.  Fill\r\nin the inputs, click the Make Shortcut button and you'll find the\r\nshortcut in the same folder as the target program.\r\n\r\n## Important Note - Pinning To Taskbar Requires \"Python Command\"\r\n\r\nIf you wish to pin your shortcut to the taskbar, then be sure to fill\r\nin the \"Python Command\" field with the full path to your pythonw.exe\r\nfile.  Without it you'll get \"IDLE\" as the program that's pinned.  You\r\ncan skip filling in this field if you're going to place the shortcut\r\non your desktop or other location.\r\n\r\n## License & Copyright\r\n\r\nCopyright 2023-2024 PySimpleSoft, Inc. and/or its licensors.\r\n\r\nThis is a free-to-use \"Utility\" and is licensed under the\r\nPySimpleGUI License Agreement, a copy of which is included in the\r\nlicense.txt file and also available at https://pysimplegui.com/eula.\r\n\r\nPlease see Section 1.2 of the license regarding the use of this Utility,\r\nand see https://pysimplegui.com/faq for any questions.\r\n\r\n\r\n## Contributing\r\n\r\nWe are happy to receive issues describing bug reports and feature\r\nrequests! If your bug report relates to a security vulnerability,\r\nplease do not file a public issue, and please instead reach out to us\r\nat issues@PySimpleGUI.com.\r\n\r\nWe do not accept (and do not wish to receive) contributions of\r\nuser-created or third-party code, including patches, pull requests, or\r\ncode snippets incorporated into submitted issues. Please do not send\r\nus any such code! Bug reports and feature requests should not include\r\nany source code.\r\n\r\nIf you nonetheless submit any user-created or third-party code to us,\r\n(1) you assign to us all rights and title in or relating to the code;\r\nand (2) to the extent any such assignment is not fully effective, you\r\nhereby grant to us a royalty-free, perpetual, irrevocable, worldwide,\r\nunlimited, sublicensable, transferrable license under all intellectual\r\nproperty rights embodied therein or relating thereto, to exploit the\r\ncode in any manner we choose, including to incorporate the code into\r\nPySimpleGUI and to redistribute it under any terms at our discretion.\r\n",
    "bugtrack_url": null,
    "license": "Free To Use But Restricted",
    "summary": "Utility made with PySimpleGUI to create shortcuts of files or programs",
    "version": "5.0.0",
    "project_urls": {
        "Homepage": "https://github.com/PySimpleGUI/psgshortcut"
    },
    "split_keywords": [
        "gui",
        "ui",
        "pysimplegui",
        "tkinter",
        "psgshortcut",
        "shortcut",
        "windows",
        "taskbar"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "feaa9d0822369654e02615263037024461ad76dc124b7b07c3c7d0ea099e8c48",
                "md5": "660a4822a4febef2af2d1818b872f5fb",
                "sha256": "3a831efaf11ed2aabd9ab5b90720904b63bdd1eccab9394b3dd4055d26fe88bc"
            },
            "downloads": -1,
            "filename": "psgshortcut-5.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "660a4822a4febef2af2d1818b872f5fb",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 52801,
            "upload_time": "2024-02-13T16:22:22",
            "upload_time_iso_8601": "2024-02-13T16:22:22.810927Z",
            "url": "https://files.pythonhosted.org/packages/fe/aa/9d0822369654e02615263037024461ad76dc124b7b07c3c7d0ea099e8c48/psgshortcut-5.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d05e3192bff2c4638253b2e34ca97c3d6b47e41373f103580960ffa2e3b6d74",
                "md5": "d4a4bf69316b3973616087c39d1a3547",
                "sha256": "525f3a4ed5a0e0e7f6be21ac5d7374aaa8ee51d1b501b9c3f015f68fabf23b8e"
            },
            "downloads": -1,
            "filename": "psgshortcut-5.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d4a4bf69316b3973616087c39d1a3547",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 54057,
            "upload_time": "2024-02-13T16:22:24",
            "upload_time_iso_8601": "2024-02-13T16:22:24.062037Z",
            "url": "https://files.pythonhosted.org/packages/8d/05/e3192bff2c4638253b2e34ca97c3d6b47e41373f103580960ffa2e3b6d74/psgshortcut-5.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-13 16:22:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "PySimpleGUI",
    "github_project": "psgshortcut",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "psgshortcut"
}
        
Elapsed time: 0.18092s