pyedpro


Namepyedpro JSON
Version 3.3.7 PyPI version JSON
download
home_pagehttps://github.com/pglen/pyedpro
SummaryHigh power editor in python.
upload_time2024-05-04 15:22:47
maintainerNone
docs_urlNone
authorPeter Glen
requires_python>=3
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            #   PyEdPro README

## Python editor.

   Welcome to PyEdPro. This is modern multi-platform editor. Simple, powerful,
configurable, extendable. Goodies like macro recording / playback, spell check,
column select, multiple clipboards, unlimited undo ... makes it an editor
that I use every day.

  Working and tested platforms currently are:

        Win 7 .. Win 10 ...
        Centos 6 .. 7 Ubuntu 14 ... 16 ...  20.x (should run on any linux )
        Windows (Native) plus MSYS2, Mingw,
        Raspberry PI 3, Raspberry PI 4, ...
        Mac ** Some functions are disabled - in particular async processing

Pyedpro functions in a near identical manner
    on Linux / Windows / Mac / Raspberry PI

 Pyedpro has:

            o  Macro recording/play,
            o  Search/replace,
            o  Functional navigation,
            o  Fomment/string spell check,
            o  Full spell check, spell suggestion dialog
            o  Auto backup,
            o  Persistent undo/redo,  (undo beyond last save)
            o  Auto complete, auto correct
            o
            o  ... and a lot more.

 It is fast, it is extendable. The editor has a table driven key mapping.
 One can easily edit the key map in keyhand.py, and the key actions
 in acthand.py The default key map resembles gedit / wed / etp / brief

 The editor can be run from pip; from single packed executable; from git
directory, and from packaged appimage.

### Quick start:

    pip install pyedpro

 The images are available from the git largefile subsystem and on release.

[See Doxygen generated Documentation on GitHub Pages](https://pglen.github.io/pyedpro/html/)

### Platforms

  I mainly run it on Ubuntu, and in Win32 / MSYS2, some Fedora, Windows 10,
(x64) and the Raspberry-Pi. It behaves consistently on all these platforms,
it is an absolute joy to edit in a different platform without the learning
curve of new keystrokes.  If you want an editor that works the same way in
all your workspaces, PyEdPro is the one.

 PyEdPro now is working OK on the Mac M1. I installed homebrew, and got
it to fire up. It was not a trivial exercise, as the Mac PygGOject did not do
half of the stuff as the Linux version did.
No asynchronous  anything, segmentation faults everywhere. (which python
is not suppose to have)

  The font rendering was messed up, but I got fixed by replacing Pango's
get_pixel_size() with get_size() / PANGO_UNIT. [Suspect int vs float accuracy issues]
  Some async functions like the function updater is disabled, but it can be done
manually. (right click on doc -> rescan) All in all the Mac's PyGobject is not a great
subsystem, hopefully time will be kind here.

** tried the M1 ... Sun 03.Apr.2022 most of it worked; no async processing
as in Glib the timer functions bombed. Great hardware - bad PyGobject support. However
if an editor with familiar key op is needed -- most of it works. And no
destructive errors.

### History:

    (this is extracted, use git log for up-to-date information)

    Sat 11.Feb.2023 -- Pyedpro Notes export / import and the new pydbase data base
    Thu 27.Oct.2022 -- Restored system menu processing (Alt-f [File Menu] and such)
    Sat 10.Sep.2022 -- the system shortcuts (ctrl-s ctrl-o) are re-done by hand
    Sat 03.Sep.2022 -- published on pip
    Thu 21.Apr.2022 -- release issued
    Wed 16.Mar.2022 -- dialog for read only file, export notes ... lots of other stuff
    Wed 01.Dec.2021 -- on search, descending one dir level with Ext. Search
    Sun 05.Sep.2021 -- made it function on the Mac M1 laptop  - !@#$$%
        ....        -- lot of changes, see github log


### New:

    3.3.1   Fri 15.Mar.2024 -- corrected for changes in the public pydbase interface
    3.3.5   Wed 10.Apr.2024 -- Relocated search window for better screen allocation

Partial list, some highlights;

Added separate interpretation for right control keys, so exotic items
like 'insert html comment' can be tied to a shortcut key;

Added drag / drop source / target. New keystroke combo for keyboards
 without home / pgup etc ... Implemented html preview. Just right click on
the file body, an select the corresponding menu item.

Implemented markdown preview. Right click ... menu
Implemented M4 preview. The files are pulled in from the current directory (of the macro),
and expanded with the m4 macro processor. The results than are previewed
in an html window. (Yes, head and footer are now one file for the whole site,
the way it should be) Right click ... and look for: Filter to M4

  Added drag and drop. Accepts file name from file manager, and accepts clipboard text.
The dropped content is inserted where the editor's caret is. (not where the cursor is)
The caret is moved to the end of insertion.

 This (above / below) list is an extract, please see git log for complete history.

  PyEdPro now has buffer diff. Right clicking on the file's tab header presents a menu.
One may select the diff source, the diff destination (or target). When the source and
target is selected, a diff window slides in from the right. The diff window presents
the diff of the two buffers, relative to 'target'. The three buffers navigate in sync,
one may inspect them and edit the source and the target. The position sync is somewhat
intelligent by guessing the correct position of the cursor on the current buffer.
One can re-diff the buffers by right clicking on the tab header, and select re-diff.
Please note, that this diff is somewhat simple, as it marks only --del --ins points.
Again, its simplicity yields benefits that are surprizing. For instance; hand
merging small changes become more visual. And yes, it is no substitute for a real diff.

 The diff buffer (grayed) is read only. To refresh the diff, select
from the tab's right click menu 'Re-diff buffers'. The diff-ing can be stopped from the
same right click menu, by selecting 'Stop Diffing'. The diff algorithm is crude, but
the simplicity has its advantages. Speed and predictability.

  PyEdPro.py has macro recording/play, search/replace, one click function navigation,
auto backup, undo/redo, auto complete, auto correct, syntax check, spell suggestion
 ... and a lot more.

   The recorded macros, undo / redo information / editing session detail persists
 (and reloaded) after the editor is closed.

 The spell checker can check text, code and code comments. The parsing of the code is
rudimentary,  comments and strings are spell checked. (Press F9) The code is filtered
out for Python and  'C', which assures most derivative languages have correct
code spell code check. (.sh .php .cpp) The whole file can be checked in full text
spell mode. Press (Shift-F9) The spell checker is executed on live text. (while typing) The
re scan period is set to 300 millisec, an optimum between resource usage and real time feel.

  Syntax highlighting. Again, a simpler parser for speed. Succeeds in its mission with
giving great visual candy effect without speed impact.

  PyEdPro is fast, it is extendable, as python lends itself to easy extending. The
editor has a table driven key mapping. One can easily edit the key map in
keyhand.py, and the key actions in acthand.py

 If you encounter blank screen after start, cairo is not installed. The terminal interface
will complain, but if you start from the GUI, you can see the message in the
log window. (Menu->Windows->Show_Log) To install cairo type 'sudo apt install cairo'.

 The default key map resembles gedit / wed / etp / brief. Full ASCII;
 Any (fixed) font can be configured. No arrangements in the program for variable pitch fonts.

  See KEYS file for the list of keyboard shortcuts or press F1 in the
editor or look at the file in pyedlib/KEYS. This file is also called up when the main menu
 Help -> 'KeyHelp In Doc' is called up.

  If you highlight a word, and press F2, Zeal will open with the item searched and
highlighted. Shift F2 will do the same with Devhelp. This is what I use to see the
 API of PyGobj. F1 will call up the PyEdPro's help screen. Shift-F1 will open
DevDocs. Naturally, Devdocs/Devhelp/Zeal need to be installed for these to function.

  On initial start, PyEdPro shows a left pane and a top pane. The left pane
is for function summary and the top pane is for double view of the same file.
(to see the caller and the called [function] at once) These panes can be hidden with
the mouse by dragging on their handle, or by the key combination Alt-Q (Shift-Alt-Q for
the left pane) The first file window's settings are saved for the next startup.

  PyEdPro remembers a lot about the editing session. Loaded files, cursor positions,
fonts, font size, colors, search strings, goto numbers, undo / redo info,
window positions ... and more.

 This is all stored in the ~/.PyEdPro directory. You may safely delete that
directory to start PyEdPro with no memory of what has been done.

 PyEdPro also keeps a stack of original files in the ~/PyEdPro/data directory. The file
 path is treated as a name hash, so it is a flat list. For example this file is known to the
PyEdPro hash function as '754ad753_. Under this hash name there are a multitude of items.
The original file, the numbered backups (from _1 to _9, circular) the undo file,
redo file, the auto save (.sav) file, the backup file ).bak) from this session start
... and more.
The way to find the file's hash is to switch buffers and the current buffer's hash
is displayed on the status line.

  Starting PyEdPro with no command line arguments will put you back to the
previous session, exactly where you left off. Files, positions undo-s and all.

 The editor will work on all PyGobject platforms, and can open UNIX and Windows files
transparently. It will save the file as the current platform's native CRLF
convention dictates. CRLF setting can also be forced.

  Developer's note: in order to make PyEdPro multi platform, we save
the configuration info into a SQLite database in the ~/.PyEdPro directory.
SqliteBrowser may be a tool to see what is going on.

(~/ user's home directory)

 Contributors are welcome.

The author,

      Peter Glen

Latest screen shot, showing DIFF and other new features

![Screen Shot of DIFF](https://github.com/pglen/pyedpro/raw/master/diffscr.png)

Screen from a regular session, including clip buttons ...

![Screen Shot Ubuntu](https://github.com/pglen/pyedpro/raw/master/screen.png)

Screen from an older session, note the function list on the left:

![Screen Shot More](https://github.com/pglen/pyedpro/raw/master/image.png)

Screen from Mac:

![Screen Shot](https://github.com/pglen/pyedpro/raw/master/screen_shot_mac.png)

## Project stats:

    Project name
        pgpygtk
    Generated
        2024-04-10 02:22:26 (in 61 seconds)
    Generator
        GitStats (version 55c5c28), git version 2.34.1, gnuplot 5.4 patchlevel 2
    Report Period
        2018-09-16 00:29:10 to 2024-04-10 02:10:24
    Age
        2034 days, 224 active days (11.01%)
    Total Files
        13122
    Total Lines of Code
        2412587 (7146598 added, 4734011 removed)
    Total Commits
        756 (average 3.4 commits per active day, 0.4 per all days)
    Authors
        7 (average 108.0 commits per author)

![Stats](https://github.com/pglen/pyedpro/raw/master/commits_by_year_month.png)

## License:

    Open Source, FreeWare, Unlicence, MIT at your convenience

// EOF


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pglen/pyedpro",
    "name": "pyedpro",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3",
    "maintainer_email": null,
    "keywords": null,
    "author": "Peter Glen",
    "author_email": "peterglen99@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/34/db/1f1f44cb0a113ad7f41c821bde2907cb67bbe43a0a26c00bd2ea1c05d4fb/pyedpro-3.3.7.tar.gz",
    "platform": null,
    "description": "#   PyEdPro README\n\n## Python editor.\n\n   Welcome to PyEdPro. This is modern multi-platform editor. Simple, powerful,\nconfigurable, extendable. Goodies like macro recording / playback, spell check,\ncolumn select, multiple clipboards, unlimited undo ... makes it an editor\nthat I use every day.\n\n  Working and tested platforms currently are:\n\n        Win 7 .. Win 10 ...\n        Centos 6 .. 7 Ubuntu 14 ... 16 ...  20.x (should run on any linux )\n        Windows (Native) plus MSYS2, Mingw,\n        Raspberry PI 3, Raspberry PI 4, ...\n        Mac ** Some functions are disabled - in particular async processing\n\nPyedpro functions in a near identical manner\n    on Linux / Windows / Mac / Raspberry PI\n\n Pyedpro has:\n\n            o  Macro recording/play,\n            o  Search/replace,\n            o  Functional navigation,\n            o  Fomment/string spell check,\n            o  Full spell check, spell suggestion dialog\n            o  Auto backup,\n            o  Persistent undo/redo,  (undo beyond last save)\n            o  Auto complete, auto correct\n            o\n            o  ... and a lot more.\n\n It is fast, it is extendable. The editor has a table driven key mapping.\n One can easily edit the key map in keyhand.py, and the key actions\n in acthand.py The default key map resembles gedit / wed / etp / brief\n\n The editor can be run from pip; from single packed executable; from git\ndirectory, and from packaged appimage.\n\n### Quick start:\n\n    pip install pyedpro\n\n The images are available from the git largefile subsystem and on release.\n\n[See Doxygen generated Documentation on GitHub Pages](https://pglen.github.io/pyedpro/html/)\n\n### Platforms\n\n  I mainly run it on Ubuntu, and in Win32 / MSYS2, some Fedora, Windows 10,\n(x64) and the Raspberry-Pi. It behaves consistently on all these platforms,\nit is an absolute joy to edit in a different platform without the learning\ncurve of new keystrokes.  If you want an editor that works the same way in\nall your workspaces, PyEdPro is the one.\n\n PyEdPro now is working OK on the Mac M1. I installed homebrew, and got\nit to fire up. It was not a trivial exercise, as the Mac PygGOject did not do\nhalf of the stuff as the Linux version did.\nNo asynchronous  anything, segmentation faults everywhere. (which python\nis not suppose to have)\n\n  The font rendering was messed up, but I got fixed by replacing Pango's\nget_pixel_size() with get_size() / PANGO_UNIT. [Suspect int vs float accuracy issues]\n  Some async functions like the function updater is disabled, but it can be done\nmanually. (right click on doc -> rescan) All in all the Mac's PyGobject is not a great\nsubsystem, hopefully time will be kind here.\n\n** tried the M1 ... Sun 03.Apr.2022 most of it worked; no async processing\nas in Glib the timer functions bombed. Great hardware - bad PyGobject support. However\nif an editor with familiar key op is needed -- most of it works. And no\ndestructive errors.\n\n### History:\n\n    (this is extracted, use git log for up-to-date information)\n\n    Sat 11.Feb.2023 -- Pyedpro Notes export / import and the new pydbase data base\n    Thu 27.Oct.2022 -- Restored system menu processing (Alt-f [File Menu] and such)\n    Sat 10.Sep.2022 -- the system shortcuts (ctrl-s ctrl-o) are re-done by hand\n    Sat 03.Sep.2022 -- published on pip\n    Thu 21.Apr.2022 -- release issued\n    Wed 16.Mar.2022 -- dialog for read only file, export notes ... lots of other stuff\n    Wed 01.Dec.2021 -- on search, descending one dir level with Ext. Search\n    Sun 05.Sep.2021 -- made it function on the Mac M1 laptop  - !@#$$%\n        ....        -- lot of changes, see github log\n\n\n### New:\n\n    3.3.1   Fri 15.Mar.2024 -- corrected for changes in the public pydbase interface\n    3.3.5   Wed 10.Apr.2024 -- Relocated search window for better screen allocation\n\nPartial list, some highlights;\n\nAdded separate interpretation for right control keys, so exotic items\nlike 'insert html comment' can be tied to a shortcut key;\n\nAdded drag / drop source / target. New keystroke combo for keyboards\n without home / pgup etc ... Implemented html preview. Just right click on\nthe file body, an select the corresponding menu item.\n\nImplemented markdown preview. Right click ... menu\nImplemented M4 preview. The files are pulled in from the current directory (of the macro),\nand expanded with the m4 macro processor. The results than are previewed\nin an html window. (Yes, head and footer are now one file for the whole site,\nthe way it should be) Right click ... and look for: Filter to M4\n\n  Added drag and drop. Accepts file name from file manager, and accepts clipboard text.\nThe dropped content is inserted where the editor's caret is. (not where the cursor is)\nThe caret is moved to the end of insertion.\n\n This (above / below) list is an extract, please see git log for complete history.\n\n  PyEdPro now has buffer diff. Right clicking on the file's tab header presents a menu.\nOne may select the diff source, the diff destination (or target). When the source and\ntarget is selected, a diff window slides in from the right. The diff window presents\nthe diff of the two buffers, relative to 'target'. The three buffers navigate in sync,\none may inspect them and edit the source and the target. The position sync is somewhat\nintelligent by guessing the correct position of the cursor on the current buffer.\nOne can re-diff the buffers by right clicking on the tab header, and select re-diff.\nPlease note, that this diff is somewhat simple, as it marks only --del --ins points.\nAgain, its simplicity yields benefits that are surprizing. For instance; hand\nmerging small changes become more visual. And yes, it is no substitute for a real diff.\n\n The diff buffer (grayed) is read only. To refresh the diff, select\nfrom the tab's right click menu 'Re-diff buffers'. The diff-ing can be stopped from the\nsame right click menu, by selecting 'Stop Diffing'. The diff algorithm is crude, but\nthe simplicity has its advantages. Speed and predictability.\n\n  PyEdPro.py has macro recording/play, search/replace, one click function navigation,\nauto backup, undo/redo, auto complete, auto correct, syntax check, spell suggestion\n ... and a lot more.\n\n   The recorded macros, undo / redo information / editing session detail persists\n (and reloaded) after the editor is closed.\n\n The spell checker can check text, code and code comments. The parsing of the code is\nrudimentary,  comments and strings are spell checked. (Press F9) The code is filtered\nout for Python and  'C', which assures most derivative languages have correct\ncode spell code check. (.sh .php .cpp) The whole file can be checked in full text\nspell mode. Press (Shift-F9) The spell checker is executed on live text. (while typing) The\nre scan period is set to 300 millisec, an optimum between resource usage and real time feel.\n\n  Syntax highlighting. Again, a simpler parser for speed. Succeeds in its mission with\ngiving great visual candy effect without speed impact.\n\n  PyEdPro is fast, it is extendable, as python lends itself to easy extending. The\neditor has a table driven key mapping. One can easily edit the key map in\nkeyhand.py, and the key actions in acthand.py\n\n If you encounter blank screen after start, cairo is not installed. The terminal interface\nwill complain, but if you start from the GUI, you can see the message in the\nlog window. (Menu->Windows->Show_Log) To install cairo type 'sudo apt install cairo'.\n\n The default key map resembles gedit / wed / etp / brief. Full ASCII;\n Any (fixed) font can be configured. No arrangements in the program for variable pitch fonts.\n\n  See KEYS file for the list of keyboard shortcuts or press F1 in the\neditor or look at the file in pyedlib/KEYS. This file is also called up when the main menu\n Help -> 'KeyHelp In Doc' is called up.\n\n  If you highlight a word, and press F2, Zeal will open with the item searched and\nhighlighted. Shift F2 will do the same with Devhelp. This is what I use to see the\n API of PyGobj. F1 will call up the PyEdPro's help screen. Shift-F1 will open\nDevDocs. Naturally, Devdocs/Devhelp/Zeal need to be installed for these to function.\n\n  On initial start, PyEdPro shows a left pane and a top pane. The left pane\nis for function summary and the top pane is for double view of the same file.\n(to see the caller and the called [function] at once) These panes can be hidden with\nthe mouse by dragging on their handle, or by the key combination Alt-Q (Shift-Alt-Q for\nthe left pane) The first file window's settings are saved for the next startup.\n\n  PyEdPro remembers a lot about the editing session. Loaded files, cursor positions,\nfonts, font size, colors, search strings, goto numbers, undo / redo info,\nwindow positions ... and more.\n\n This is all stored in the ~/.PyEdPro directory. You may safely delete that\ndirectory to start PyEdPro with no memory of what has been done.\n\n PyEdPro also keeps a stack of original files in the ~/PyEdPro/data directory. The file\n path is treated as a name hash, so it is a flat list. For example this file is known to the\nPyEdPro hash function as '754ad753_. Under this hash name there are a multitude of items.\nThe original file, the numbered backups (from _1 to _9, circular) the undo file,\nredo file, the auto save (.sav) file, the backup file ).bak) from this session start\n... and more.\nThe way to find the file's hash is to switch buffers and the current buffer's hash\nis displayed on the status line.\n\n  Starting PyEdPro with no command line arguments will put you back to the\nprevious session, exactly where you left off. Files, positions undo-s and all.\n\n The editor will work on all PyGobject platforms, and can open UNIX and Windows files\ntransparently. It will save the file as the current platform's native CRLF\nconvention dictates. CRLF setting can also be forced.\n\n  Developer's note: in order to make PyEdPro multi platform, we save\nthe configuration info into a SQLite database in the ~/.PyEdPro directory.\nSqliteBrowser may be a tool to see what is going on.\n\n(~/ user's home directory)\n\n Contributors are welcome.\n\nThe author,\n\n      Peter Glen\n\nLatest screen shot, showing DIFF and other new features\n\n![Screen Shot of DIFF](https://github.com/pglen/pyedpro/raw/master/diffscr.png)\n\nScreen from a regular session, including clip buttons ...\n\n![Screen Shot Ubuntu](https://github.com/pglen/pyedpro/raw/master/screen.png)\n\nScreen from an older session, note the function list on the left:\n\n![Screen Shot More](https://github.com/pglen/pyedpro/raw/master/image.png)\n\nScreen from Mac:\n\n![Screen Shot](https://github.com/pglen/pyedpro/raw/master/screen_shot_mac.png)\n\n## Project stats:\n\n    Project name\n        pgpygtk\n    Generated\n        2024-04-10 02:22:26 (in 61 seconds)\n    Generator\n        GitStats (version 55c5c28), git version 2.34.1, gnuplot 5.4 patchlevel 2\n    Report Period\n        2018-09-16 00:29:10 to 2024-04-10 02:10:24\n    Age\n        2034 days, 224 active days (11.01%)\n    Total Files\n        13122\n    Total Lines of Code\n        2412587 (7146598 added, 4734011 removed)\n    Total Commits\n        756 (average 3.4 commits per active day, 0.4 per all days)\n    Authors\n        7 (average 108.0 commits per author)\n\n![Stats](https://github.com/pglen/pyedpro/raw/master/commits_by_year_month.png)\n\n## License:\n\n    Open Source, FreeWare, Unlicence, MIT at your convenience\n\n// EOF\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "High power editor in python.",
    "version": "3.3.7",
    "project_urls": {
        "Homepage": "https://github.com/pglen/pyedpro"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8be63c2cbe03f994673b6c0bbb4b7a902e8b3bed346e1b893136c954a1b1eefa",
                "md5": "8677df265c83a6bb534f06051908d67a",
                "sha256": "9aaba565f13dea51d689ac24983881eea335ceb602817f90cfbbae5f9e3f67f8"
            },
            "downloads": -1,
            "filename": "pyedpro-3.3.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8677df265c83a6bb534f06051908d67a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3",
            "size": 1375494,
            "upload_time": "2024-05-04T15:22:42",
            "upload_time_iso_8601": "2024-05-04T15:22:42.531521Z",
            "url": "https://files.pythonhosted.org/packages/8b/e6/3c2cbe03f994673b6c0bbb4b7a902e8b3bed346e1b893136c954a1b1eefa/pyedpro-3.3.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34db1f1f44cb0a113ad7f41c821bde2907cb67bbe43a0a26c00bd2ea1c05d4fb",
                "md5": "46810559517d60b48b1bb35cea536af5",
                "sha256": "26700610ffda71a26c73d44a0e0077ff6f998e8e3775ed04fa661e11ebcc05d4"
            },
            "downloads": -1,
            "filename": "pyedpro-3.3.7.tar.gz",
            "has_sig": false,
            "md5_digest": "46810559517d60b48b1bb35cea536af5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3",
            "size": 1253490,
            "upload_time": "2024-05-04T15:22:47",
            "upload_time_iso_8601": "2024-05-04T15:22:47.647355Z",
            "url": "https://files.pythonhosted.org/packages/34/db/1f1f44cb0a113ad7f41c821bde2907cb67bbe43a0a26c00bd2ea1c05d4fb/pyedpro-3.3.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-04 15:22:47",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pglen",
    "github_project": "pyedpro",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyedpro"
}
        
Elapsed time: 0.23437s