{"id":22931026,"url":"https://github.com/m32/far3python","last_synced_at":"2025-04-01T17:22:17.678Z","repository":{"id":93730123,"uuid":"545032966","full_name":"m32/far3python","owner":"m32","description":"Python plugin for FarManager","archived":false,"fork":false,"pushed_at":"2024-09-17T20:16:19.000Z","size":238,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-07T11:17:11.449Z","etag":null,"topics":["far-manager","farmanager","plugin","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/m32.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-10-03T17:04:14.000Z","updated_at":"2024-09-17T20:16:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"b4b6d022-a045-4a10-8c44-b872642cd1f9","html_url":"https://github.com/m32/far3python","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m32%2Ffar3python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m32%2Ffar3python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m32%2Ffar3python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/m32%2Ffar3python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/m32","download_url":"https://codeload.github.com/m32/far3python/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246679068,"owners_count":20816402,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["far-manager","farmanager","plugin","python3"],"created_at":"2024-12-14T10:34:12.058Z","updated_at":"2025-04-01T17:22:17.662Z","avatar_url":"https://github.com/m32.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Far Manager Plugins API bindings for Python\n\nThe python plugin has only one purpose - to facilitate the writing of scripts that extend the capabilities of FarManager.\n\n## Useful links\n\n* [Far Manager website](https://www.farmanager.com/index.php?l=en)\n* [Far Manager Plugins API reference](https://api.farmanager.com/ru/index.html)\n\n## Howto\n\n* Just place far3python.dll and far3 directory inside plugins path searched by FarManager.\n\n* Logging and logger configuration\nThere is a logger.ini file, you can set your own log information preferences there.\nBy default, the log is saved to the file w:/temp/far3-py.log.\n\n* Fundamentals\n\n- plugins must be accessible via PYTHONPATH\n- the plugins are loaded with the command \"py:load filename\" for example py:load ucharmap\n- unloading the plugin is done with the command \"py:unload filename\" for example py:unload ucharmap\n\n- [ucharmap](far3examples/ucharmap.py) - an example plugin showing part of the UTF-8 character set\n    F11 + \"Python Character Map\" - display its dialog\n    after pressing Enter/OK selected character is coppied into clipboard, character selection is done\n    with mouse or arrows\n- [utranslate](far3examples/utranslate.py) - how to use Google translate for spellchecker and text translation\n    F11 + \"Python Translate\" - display help dialog\n\n## Testing\n\n* ['CFFI callbacks test dialog](far3examples/t-dialog.py) - check CFFI generated bindings for dialog\n* ['CFFI callbacks test settings](far3examples/t-settings.py) - check CFFI generated bindings for settings\n\n## Implementation status\n\n### Basic API\n\nExport functions\n\n- [ ] [ExitFARW](https://api.farmanager.com/ru/exported_functions/exitfarw.html)\n- [x] [GetGlobalInfoW](https://api.farmanager.com/ru/exported_functions/getglobalinfow.html)\n- [x] [GetPluginInfoW](https://api.farmanager.com/ru/exported_functions/getplugininfow.html)\n- [x] [OpenW](https://api.farmanager.com/ru/exported_functions/openw.html)\n- [x] [SetStartupInfoW](https://api.farmanager.com/ru/exported_functions/setstartupinfow.html)\n\nService functions\n\n- [ ] [GetMsg](https://api.farmanager.com/ru/service_functions/getmsg.html)\n- [ ] [InputBox](https://api.farmanager.com/ru/service_functions/inputbox.html)\n- [ ] [Menu](https://api.farmanager.com/ru/service_functions/menu.html)\n- [x] [Message](https://api.farmanager.com/ru/service_functions/message.html)\n- [ ] [ShowHelp](https://api.farmanager.com/ru/service_functions/showhelp.html)\n\n### Panel API\n\nExport functions\n\n- [ ] [AnalyseW](https://api.farmanager.com/ru/exported_functions/analysew.html)\n- [ ] [CloseAnalyseW](https://api.farmanager.com/ru/exported_functions/closeanalysew.html)\n- [ ] [ClosePanelW](https://api.farmanager.com/ru/exported_functions/closepanelw.html)\n- [ ] [CompareW](https://api.farmanager.com/ru/exported_functions/comparew.html)\n- [ ] [DeleteFilesW](https://api.farmanager.com/ru/exported_functions/deletefilesw.html)\n- [ ] [FreeFindDataW](https://api.farmanager.com/ru/exported_functions/freefinddataw.html)\n- [ ] [GetFilesW](https://api.farmanager.com/ru/exported_functions/getfilesw.html)\n- [ ] [GetFindDataW](https://api.farmanager.com/ru/exported_functions/getfinddataw.html)\n- [ ] [GetOpenPanelInfoW](https://api.farmanager.com/ru/exported_functions/getopenpanelinfow.html)\n- [ ] [MakeDirectoryW](https://api.farmanager.com/ru/exported_functions/makedirectoryw.html)\n- [ ] [ProcessPanelEventW](https://api.farmanager.com/ru/exported_functions/processpaneleventw.html)\n- [ ] [ProcessHostFileW](https://api.farmanager.com/ru/exported_functions/processhostfilew.html)\n- [ ] [ProcessPanelInputW](https://api.farmanager.com/ru/exported_functions/processpanelinputw.html)\n- [ ] [PutFilesW](https://api.farmanager.com/ru/exported_functions/putfilesw.html)\n- [ ] [SetDirectoryW](https://api.farmanager.com/ru/exported_functions/setdirectoryw.html)\n- [ ] [SetFindListW](https://api.farmanager.com/ru/exported_functions/setfindlistw.html)\n\nService functions\n\n- [ ] [PanelControl](https://api.farmanager.com/ru/service_functions/panelcontrol.html)\n- [ ] [FileFilterControl](https://api.farmanager.com/ru/service_functions/filefiltercontrol.html)\n- [ ] [FreeDirList](https://api.farmanager.com/ru/service_functions/freedirlist.html)\n- [ ] [FreePluginDirList](https://api.farmanager.com/ru/service_functions/freeplugindirlist.html)\n- [ ] [GetDirList](https://api.farmanager.com/ru/service_functions/getdirlist.html)\n- [ ] [GetPluginDirList](https://api.farmanager.com/ru/service_functions/getplugindirlist.html)\n\n### Editor API\n\nExport functions\n\n- [ ] [ProcessEditorInputW](https://api.farmanager.com/ru/exported_functions/processeditorinputw.html)\n- [ ] [ProcessEditorEventW](https://api.farmanager.com/ru/exported_functions/processeditoreventw.html)\n\nService functions\n\n- [ ] [Editor](https://api.farmanager.com/ru/service_functions/editor.html)\n- [ ] [EditorControl](https://api.farmanager.com/ru/service_functions/editorcontrol.html)\n\n### Viewer API\n\nExport functions\n\n- [ ] [ProcessViewerEventW](https://api.farmanager.com/ru/exported_functions/processviewereventw.html)\n\nService functions\n\n- [ ] [Viewer](https://api.farmanager.com/ru/service_functions/viewer.html)\n- [ ] [ViewerControl](https://api.farmanager.com/ru/service_functions/viewercontrol.html)\n\n### Dialog API\n\nExport functions\n\n- [ ] [ProcessDialogEventW](https://api.farmanager.com/ru/exported_functions/processdialogeventw.html)\n\nService functions\n\n- [x] [DefDlgProc](https://api.farmanager.com/ru/service_functions/defdlgproc.html)\n- [x] [DialogFree](https://api.farmanager.com/ru/service_functions/dialogfree.html)\n- [x] [DialogInit](https://api.farmanager.com/ru/service_functions/dialoginit.html)\n- [x] [DialogRun](https://api.farmanager.com/ru/service_functions/dialogrun.html)\n- [x] [SendDlgMessage](https://api.farmanager.com/ru/service_functions/senddlgmessage.html)\n\n### Settings API\n\nExport functions\n\n- [x] [ConfigureW](https://api.farmanager.com/ru/exported_functions/configurew.html)\n\nService functions\n\n- [ ] [SettingsControl](https://api.farmanager.com/ru/service_functions/settingscontrol.html)\n\n### Plugin Manager API\n\nService functions\n\n- [ ] [PluginsControl](https://api.farmanager.com/ru/service_functions/pluginscontrol.html)\n\n### Miscellaneous API\n\nExport functions\n\n- [ ] [ProcessConsoleInputW](https://api.farmanager.com/ru/exported_functions/processconsoleinputw.html)\n- [ ] [ProcessSynchroEventW](https://api.farmanager.com/ru/exported_functions/processsynchroeventw.html)\n\nService functions\n\n- [ ] [AdvControl](https://api.farmanager.com/ru/service_functions/advcontrol.html)\n- [ ] [ColorDialog](https://api.farmanager.com/ru/service_functions/colordialog.html)\n- [ ] [RegExpControl](https://api.farmanager.com/ru/service_functions/regexpcontrol.html)\n- [ ] [RestoreScreen](https://api.farmanager.com/ru/service_functions/restorescreen.html)\n- [ ] [SaveScreen](https://api.farmanager.com/ru/service_functions/savescreen.html)\n- [ ] [Text](https://api.farmanager.com/ru/service_functions/text.html)\n\n### Macro API\n\nService functions\n\n- [ ] [MacroControl](https://api.farmanager.com/ru/service_functions/macrocontrol.html)\n\n## License\n[license]: #license\n\nThis project is licensed under the terms of the MIT license.\n\nSee [LICENSE-MIT](LICENSE-MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fm32%2Ffar3python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fm32%2Ffar3python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fm32%2Ffar3python/lists"}