pypeek


Namepypeek JSON
Version 2.10.11 PyPI version JSON
download
home_page
SummaryAn animated GIF recorder
upload_time2024-01-29 17:48:06
maintainer
docs_urlNone
author
requires_python>=3.9
license
keywords animation capture gif mp4 record recorder screen screenshot video webm
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Peek - Screen Recorder and Screenshot with Annotation

Cross platform screen recorder with an easy to use interface and annotation features written in Python and PySide6.

Inspired by [Peek](https://github.com/phw/peek).

<br/>

![Peek recording itself](https://raw.githubusercontent.com/firatkiral/pypeek/main/data/peek-recording-itself.gif)

<br/>

A developer, designer, or a student, you may need to record or capture your screen to create tutorials, report bugs, provide technical support or simply reflect on your own work and progress. And if you have different operating systems on your different machines, it would be great if you could use the same tool on all of them. That's why I created Peek.

Peek is a simple screen recorder that allows you to record your screen as gif or mp4, capture a screenshot as jpg, and annotate your recordings with drawing, text, arrows, and highlights.

Annotation tool is very useful when you want to highlight a specific area or draw attention to a specific part of your recording. You can add text, arrows or shapes to your recording. Range slider allows you to trim your recording to a desired length. You can create a complete recording with annotation without leaving the app.

![Peek is excited](https://raw.githubusercontent.com/firatkiral/pypeek/main/data/peek-too-excited.gif)

## Features

- Record your screen as gif or mp4
- Capture a screenshot as jpg or png
- Record a selected area or the whole screen
- Annotation features like drawing, text, arrows, and highlights
- Delay recording start with a countdown
- Limit recording to a fixed time

<br/>

[Blog post](https://kiral.net/peek-simplify-screen-recordings/)

<br/>

## Download The App:

[Apple Store](https://apps.apple.com/us/app/peek-screen-recorder/id1670786300)

[Microsoft Store](https://apps.microsoft.com/store/detail/XP8CD3D3Q50MS2)

<br/>


## Install in Python:

### Requirements:

- Python 3.9 or later

- Ffmpeg [Optional], it will be downloaded if not found in system path.

- Windows, MacOS, Linux: Debian based distros on Xorg, Classic or X11. No Wayland support yet. (see [How to switch to Xorg](https://itsfoss.com/switch-xorg-wayland/))

*Need help for Linux **Wayland** support. If you are interested, please create a pull request or open an issue.*

#### Known Issues:

- Linux: *"qt.qpa.plugin: Could not load the Qt platform plugin "xcb"..."*, install the following packages:

```console
sudo apt install libxcb-*
```

- Linux: *"ImportError: libdouble-conversion.so.3: cannot open shared object file: No such file or directory"* error, install the following package:

```console
sudo apt install libdouble-conversion3
```

<br/>

### Intallation:

```console
pip install pypeek
```

### Usage:

```console
pypeek
```

### Create a desktop shortcut:
Make sure you run the pypeek command at least once before creating a shortcut. On Linux it will create an app inside applications, on Windows and MacOS it will create a desktop shortcut.

```console
pypeek --shortcut
```

### Import as a module:

```python
import pypeek

pypeek.show()
```

### Run as a module:

```console
python -m pypeek
```

### Update:

```console
pip install --upgrade pypeek
```

### Uninstall:

```console
pip uninstall pypeek
```

<br/>

## License
Peek Copyright © 2023

Peek is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Peek is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Peek. If not, see <https://www.gnu.org/licenses/>.
            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pypeek",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "animation,capture,gif,mp4,record,recorder,screen,screenshot,video,webm",
    "author": "",
    "author_email": "Firat Kiral <firatkiral@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/23/b9/6bc73fd1490090d981ee917d5e3de7ef55f3bcc657c92912a2b66f3ed174/pypeek-2.10.11.tar.gz",
    "platform": null,
    "description": "# Peek - Screen Recorder and Screenshot with Annotation\n\nCross platform screen recorder with an easy to use interface and annotation features written in Python and PySide6.\n\nInspired by [Peek](https://github.com/phw/peek).\n\n<br/>\n\n![Peek recording itself](https://raw.githubusercontent.com/firatkiral/pypeek/main/data/peek-recording-itself.gif)\n\n<br/>\n\nA developer, designer, or a student, you may need to record or capture your screen to create tutorials, report bugs, provide technical support or simply reflect on your own work and progress. And if you have different operating systems on your different machines, it would be great if you could use the same tool on all of them. That's why I created Peek.\n\nPeek is a simple screen recorder that allows you to record your screen as gif or mp4, capture a screenshot as jpg, and annotate your recordings with drawing, text, arrows, and highlights.\n\nAnnotation tool is very useful when you want to highlight a specific area or draw attention to a specific part of your recording. You can add text, arrows or shapes to your recording. Range slider allows you to trim your recording to a desired length. You can create a complete recording with annotation without leaving the app.\n\n![Peek is excited](https://raw.githubusercontent.com/firatkiral/pypeek/main/data/peek-too-excited.gif)\n\n## Features\n\n- Record your screen as gif or mp4\n- Capture a screenshot as jpg or png\n- Record a selected area or the whole screen\n- Annotation features like drawing, text, arrows, and highlights\n- Delay recording start with a countdown\n- Limit recording to a fixed time\n\n<br/>\n\n[Blog post](https://kiral.net/peek-simplify-screen-recordings/)\n\n<br/>\n\n## Download The App:\n\n[Apple Store](https://apps.apple.com/us/app/peek-screen-recorder/id1670786300)\n\n[Microsoft Store](https://apps.microsoft.com/store/detail/XP8CD3D3Q50MS2)\n\n<br/>\n\n\n## Install in Python:\n\n### Requirements:\n\n- Python 3.9 or later\n\n- Ffmpeg [Optional], it will be downloaded if not found in system path.\n\n- Windows, MacOS, Linux: Debian based distros on Xorg, Classic or X11. No Wayland support yet. (see [How to switch to Xorg](https://itsfoss.com/switch-xorg-wayland/))\n\n*Need help for Linux **Wayland** support. If you are interested, please create a pull request or open an issue.*\n\n#### Known Issues:\n\n- Linux: *\"qt.qpa.plugin: Could not load the Qt platform plugin \"xcb\"...\"*, install the following packages:\n\n```console\nsudo apt install libxcb-*\n```\n\n- Linux: *\"ImportError: libdouble-conversion.so.3: cannot open shared object file: No such file or directory\"* error, install the following package:\n\n```console\nsudo apt install libdouble-conversion3\n```\n\n<br/>\n\n### Intallation:\n\n```console\npip install pypeek\n```\n\n### Usage:\n\n```console\npypeek\n```\n\n### Create a desktop shortcut:\nMake sure you run the pypeek command at least once before creating a shortcut. On Linux it will create an app inside applications, on Windows and MacOS it will create a desktop shortcut.\n\n```console\npypeek --shortcut\n```\n\n### Import as a module:\n\n```python\nimport pypeek\n\npypeek.show()\n```\n\n### Run as a module:\n\n```console\npython -m pypeek\n```\n\n### Update:\n\n```console\npip install --upgrade pypeek\n```\n\n### Uninstall:\n\n```console\npip uninstall pypeek\n```\n\n<br/>\n\n## License\nPeek Copyright \u00a9 2023\n\nPeek is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nPeek is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with Peek. If not, see <https://www.gnu.org/licenses/>.",
    "bugtrack_url": null,
    "license": "",
    "summary": "An animated GIF recorder",
    "version": "2.10.11",
    "project_urls": {
        "Bug Tracker": "https://github.com/firatkiral/pypeek/issues",
        "Homepage": "https://github.com/firatkiral/pypeek"
    },
    "split_keywords": [
        "animation",
        "capture",
        "gif",
        "mp4",
        "record",
        "recorder",
        "screen",
        "screenshot",
        "video",
        "webm"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b60dbe1cc1413314e2fe4c1087f4dd81893919aa1160f8757887bd3527b04923",
                "md5": "0f7afb4124fbfb9275bc11cb415044b0",
                "sha256": "cd4cf378445e42eb0fa54300f975827819b2d776aa45a60c6e6da0198673e16e"
            },
            "downloads": -1,
            "filename": "pypeek-2.10.11-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0f7afb4124fbfb9275bc11cb415044b0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 417912,
            "upload_time": "2024-01-29T17:48:04",
            "upload_time_iso_8601": "2024-01-29T17:48:04.228919Z",
            "url": "https://files.pythonhosted.org/packages/b6/0d/be1cc1413314e2fe4c1087f4dd81893919aa1160f8757887bd3527b04923/pypeek-2.10.11-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23b96bc73fd1490090d981ee917d5e3de7ef55f3bcc657c92912a2b66f3ed174",
                "md5": "a72ee37ca3c95534fddb1244be00ad2b",
                "sha256": "35ded51c3d426f23802df57b4c6786d79ee6fc7ee89afbab391f33eda488f1ed"
            },
            "downloads": -1,
            "filename": "pypeek-2.10.11.tar.gz",
            "has_sig": false,
            "md5_digest": "a72ee37ca3c95534fddb1244be00ad2b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 407251,
            "upload_time": "2024-01-29T17:48:06",
            "upload_time_iso_8601": "2024-01-29T17:48:06.112135Z",
            "url": "https://files.pythonhosted.org/packages/23/b9/6bc73fd1490090d981ee917d5e3de7ef55f3bcc657c92912a2b66f3ed174/pypeek-2.10.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-29 17:48:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "firatkiral",
    "github_project": "pypeek",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pypeek"
}
        
Elapsed time: 0.20604s