From 6d3733b09231e15748f7a3a5f00263034f822e05 Mon Sep 17 00:00:00 2001 From: pyf0311 Date: Thu, 4 Feb 2021 00:14:30 +0800 Subject: [PATCH] delete irrelevant folder --- .../INSTALLER | 1 - src/Alfred_Workflow-1.40.0.dist-info/METADATA | 172 ------------------ src/Alfred_Workflow-1.40.0.dist-info/RECORD | 24 --- .../REQUESTED | 0 src/Alfred_Workflow-1.40.0.dist-info/WHEEL | 5 - .../top_level.txt | 1 - 6 files changed, 203 deletions(-) delete mode 100644 src/Alfred_Workflow-1.40.0.dist-info/INSTALLER delete mode 100644 src/Alfred_Workflow-1.40.0.dist-info/METADATA delete mode 100644 src/Alfred_Workflow-1.40.0.dist-info/RECORD delete mode 100644 src/Alfred_Workflow-1.40.0.dist-info/REQUESTED delete mode 100644 src/Alfred_Workflow-1.40.0.dist-info/WHEEL delete mode 100644 src/Alfred_Workflow-1.40.0.dist-info/top_level.txt diff --git a/src/Alfred_Workflow-1.40.0.dist-info/INSTALLER b/src/Alfred_Workflow-1.40.0.dist-info/INSTALLER deleted file mode 100644 index a1b589e..0000000 --- a/src/Alfred_Workflow-1.40.0.dist-info/INSTALLER +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/src/Alfred_Workflow-1.40.0.dist-info/METADATA b/src/Alfred_Workflow-1.40.0.dist-info/METADATA deleted file mode 100644 index cfe243e..0000000 --- a/src/Alfred_Workflow-1.40.0.dist-info/METADATA +++ /dev/null @@ -1,172 +0,0 @@ -Metadata-Version: 2.1 -Name: Alfred-Workflow -Version: 1.40.0 -Summary: Full-featured helper library for writing Alfred 2/3/4 workflows -Home-page: http://www.deanishe.net/alfred-workflow/ -Author: Dean Jackson -Author-email: deanishe@deanishe.net -License: UNKNOWN -Keywords: alfred workflow alfred4 -Platform: UNKNOWN -Classifier: Development Status :: 5 - Production/Stable -Classifier: License :: OSI Approved :: MIT License -Classifier: Operating System :: MacOS :: MacOS X -Classifier: Intended Audience :: Developers -Classifier: Natural Language :: English -Classifier: Programming Language :: Python :: 2.7 -Classifier: Topic :: Software Development :: Libraries -Classifier: Topic :: Software Development :: Libraries :: Application Frameworks - - -A helper library for writing `Alfred 2, 3 and 4`_ workflows. - -Supports macOS 10.7+ and Python 2.7 (Alfred 3 is 10.9+/2.7 only). - -Alfred-Workflow is designed to take the grunt work out of writing a workflow. - -It gives you the tools to create a fast and featureful Alfred workflow from an -API, application or library in minutes. - -http://www.deanishe.net/alfred-workflow/ - - -Features -======== - -* Catches and logs workflow errors for easier development and support -* "Magic" arguments to help development/debugging -* Auto-saves settings -* Super-simple data caching -* Fuzzy, Alfred-like search/filtering with diacritic folding -* Keychain support for secure storage (and syncing) of passwords, API keys etc. -* Simple generation of Alfred feedback (XML output) -* Input/output decoding for handling non-ASCII text -* Lightweight web API with modelled on `requests`_ -* Pre-configured logging -* Painlessly add directories to ``sys.path`` -* Easily launch background tasks (daemons) to keep your workflow responsive -* Check for new versions and update workflows hosted on GitHub. -* Post notifications via Notification Center. - - -Alfred 3-only features ----------------------- - -* Set `workflow variables`_ from code -* Advanced modifiers -* Alfred 3-only updates (won't break Alfred 2 installs) -* Re-running Script Filters - - -Quick Example -============= - -Here's how to show recent `Pinboard.in `_ posts -in Alfred. - -Create a new workflow in Alfred's preferences. Add a **Script Filter** with -Language ``/usr/bin/python`` and paste the following into the **Script** -field (changing ``API_KEY``): - - -.. code-block:: python - - import sys - from workflow import Workflow, ICON_WEB, web - - API_KEY = 'your-pinboard-api-key' - - def main(wf): - url = 'https://api.pinboard.in/v1/posts/recent' - params = dict(auth_token=API_KEY, count=20, format='json') - r = web.get(url, params) - r.raise_for_status() - for post in r.json()['posts']: - wf.add_item(post['description'], post['href'], arg=post['href'], - uid=post['hash'], valid=True, icon=ICON_WEB) - wf.send_feedback() - - - if __name__ == u"__main__": - wf = Workflow() - sys.exit(wf.run(main)) - - -Add an **Open URL** action to your workflow with ``{query}`` as the **URL**, -connect your **Script Filter** to it, and you can now hit **ENTER** on a -Pinboard item in Alfred to open it in your browser. - - -Installation -============ - -**Note**: If you intend to distribute your workflow to other users, you -should include Alfred-Workflow (and other Python libraries your workflow -requires) within your workflow's directory as described below. **Do not** -ask users to install anything into their system Python. Python installations -cannot support multiple versions of the same library, so if you rely on -globally-installed libraries, the chances are very good that your workflow -will sooner or later break—or be broken by—some other software doing the -same naughty thing. - - -With pip --------- - -You can install Alfred-Workflow directly into your workflow with:: - - # from within your workflow directory - pip install --target=. Alfred-Workflow - -You can install any other library available on the `Cheese Shop`_ the -same way. See the `pip documentation`_ for more information. - - -From source ------------ - -Download the ``alfred-workflow-X.X.X.zip`` file from the `GitHub releases`_ -page and extract the ZIP to the root directory of your workflow (where -``info.plist`` is). - -Alternatively, you can download `the source code`_ from the -`GitHub repository`_ and copy the ``workflow`` subfolder to the root -directory of your workflow. - -Your workflow directory should look something like this (where -``yourscript.py`` contains your workflow code and ``info.plist`` is -the workflow information file generated by Alfred):: - - Your Workflow/ - info.plist - icon.png - workflow/ - __init__.py - background.py - notify.py - Notify.tgz - update.py - version - web.py - workflow.py - yourscript.py - etc. - - -Documentation -============= - -Detailed documentation, including a tutorial, is available at -http://www.deanishe.net/alfred-workflow/. - -.. _v2 branch: https://github.com/deanishe/alfred-workflow/tree/v2 -.. _requests: http://docs.python-requests.org/en/latest/ -.. _Alfred 2, 3 and 4: http://www.alfredapp.com/ -.. _GitHub releases: https://github.com/deanishe/alfred-workflow/releases -.. _the source code: https://github.com/deanishe/alfred-workflow/archive/master.zip -.. _GitHub repository: https://github.com/deanishe/alfred-workflow -.. _Cheese Shop: https://pypi.python.org/pypi -.. _pip documentation: https://pip.pypa.io/en/latest/ -.. _workflow variables: http://www.deanishe.net/alfred-workflow/user-manual/workflow-variables.html - - diff --git a/src/Alfred_Workflow-1.40.0.dist-info/RECORD b/src/Alfred_Workflow-1.40.0.dist-info/RECORD deleted file mode 100644 index 015604a..0000000 --- a/src/Alfred_Workflow-1.40.0.dist-info/RECORD +++ /dev/null @@ -1,24 +0,0 @@ -Alfred_Workflow-1.40.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -Alfred_Workflow-1.40.0.dist-info/METADATA,sha256=51BwlMAk_kr5mPAalwiYe6XKLoBXYOqax8ffVcSvDXI,5610 -Alfred_Workflow-1.40.0.dist-info/RECORD,, -Alfred_Workflow-1.40.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 -Alfred_Workflow-1.40.0.dist-info/WHEEL,sha256=NzFAKnL7g-U64xnS1s5e3mJnxKpOTeOtlXdFwS9yNXI,92 -Alfred_Workflow-1.40.0.dist-info/top_level.txt,sha256=jT-znOUjxvwdr-w5ECrvROWZ9y_Doiz0yVYSI0VxpXA,9 -workflow/Notify.tgz,sha256=dfcN09jNo0maLZLIZDSsBDouynsjgtDMSnSL3UfFcRE,35556 -workflow/__init__.py,sha256=Ae2f8xQxpZE3ijEYgSNir8h-XW04_sNUxkY3vmplOcQ,2068 -workflow/__pycache__/__init__.cpython-37.pyc,, -workflow/__pycache__/background.cpython-37.pyc,, -workflow/__pycache__/notify.cpython-37.pyc,, -workflow/__pycache__/update.cpython-37.pyc,, -workflow/__pycache__/util.cpython-37.pyc,, -workflow/__pycache__/web.cpython-37.pyc,, -workflow/__pycache__/workflow.cpython-37.pyc,, -workflow/__pycache__/workflow3.cpython-37.pyc,, -workflow/background.py,sha256=DxSQ3NSJADuW94BWiykKJbcWywhWKdyjSfT4HczhiCw,7532 -workflow/notify.py,sha256=OuD5wDd0qwxcH2hLD6RoqFZyG4I-yrMvoaUmtrkQ-to,9670 -workflow/update.py,sha256=0n4Yvfiin4AMQuP2orzDZ31SB0ZGJ2l0CA2DISdnt4k,16133 -workflow/util.py,sha256=QE3MJOj8Cj7LzB2gHXNZI2HqQ13vivU4wY_FkHpk3sc,18256 -workflow/version,sha256=_sWfmyrEjikcQfQVyndvj90fs4KQPeqGIb8e85nzj1c,6 -workflow/web.py,sha256=TG_Sv0RJYBlyTRLG9BNjnExg2YeQMnz8JwFteNq2ksU,22093 -workflow/workflow.py,sha256=oFxsLKK0E9L6ZM9RRgPa-86zVgBy2HXuPcWZffTM6JY,92565 -workflow/workflow3.py,sha256=_Gm3IjLDp82YRJiIq1mDnXNT4lWPvAX02_h9wARzJ-8,21854 diff --git a/src/Alfred_Workflow-1.40.0.dist-info/REQUESTED b/src/Alfred_Workflow-1.40.0.dist-info/REQUESTED deleted file mode 100644 index e69de29..0000000 diff --git a/src/Alfred_Workflow-1.40.0.dist-info/WHEEL b/src/Alfred_Workflow-1.40.0.dist-info/WHEEL deleted file mode 100644 index bff023e..0000000 --- a/src/Alfred_Workflow-1.40.0.dist-info/WHEEL +++ /dev/null @@ -1,5 +0,0 @@ -Wheel-Version: 1.0 -Generator: bdist_wheel (0.31.1) -Root-Is-Purelib: true -Tag: py3-none-any - diff --git a/src/Alfred_Workflow-1.40.0.dist-info/top_level.txt b/src/Alfred_Workflow-1.40.0.dist-info/top_level.txt deleted file mode 100644 index a1e5ef7..0000000 --- a/src/Alfred_Workflow-1.40.0.dist-info/top_level.txt +++ /dev/null @@ -1 +0,0 @@ -workflow