Release 0.0.1

This commit is contained in:
Lars 2024-07-04 23:17:56 +02:00
commit f920008cad
288 changed files with 75791 additions and 0 deletions

View file

@ -0,0 +1 @@
pip

View file

@ -0,0 +1,21 @@
MIT License
Copyright (c) [year] [fullname]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View file

@ -0,0 +1,65 @@
Metadata-Version: 2.1
Name: Flox-lib
Version: 0.19.6
Summary: Python library to help build Flow Launcher and Wox plugins.
Home-page: https://github.com/Garulf/Flox
Author: William McAllister
Author-email: dev.garulf@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/Garulf/Flox/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE.txt
[![Release](https://github.com/Garulf/Flox/actions/workflows/release.yml/badge.svg?branch=main)](https://github.com/Garulf/Flox/actions/workflows/release.yml)
# FLOX
Flox is a Python library to help build Flow Launcher and Wox plugins
Flox adds many useful methods to speed up plugin development
Heavily inspired from the great work done by deanishe at: [deanishe/alfred-workflow](https://github.com/deanishe/alfred-workflow)
## Installation
### PIP install from pypi
```
pip install flox-lib
```
### PIP install from github
```
pip install git+https://github.com/garulf/flox.git
```
## Basic Usage
```
from flox import Flox
import requests
# have your class inherit from Flox
class YourClass(Flox):
def query(self, query):
for _ in range(250):
self.add_item(
title=self.args,
subtitle=str(_)
)
def context_menu(self, data):
self.add_item(
title=data,
subtitle=data
)
if __name__ == "__main__":
YourClass()
```

View file

@ -0,0 +1,23 @@
Flox_lib-0.19.6.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
Flox_lib-0.19.6.dist-info/LICENSE.txt,sha256=ACwmltkrXIz5VsEQcrqljq-fat6ZXAMepjXGoe40KtE,1069
Flox_lib-0.19.6.dist-info/METADATA,sha256=oXruRxS9yGEo_xakDUi7KFpPd1F9vNFx0mqsnzSHiME,1565
Flox_lib-0.19.6.dist-info/RECORD,,
Flox_lib-0.19.6.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
Flox_lib-0.19.6.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
Flox_lib-0.19.6.dist-info/top_level.txt,sha256=ToVvesHvA4pegruUxqdJ2gkmKACaQRSWPIKAoqyR9_0,5
Flox_lib-0.19.6.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
flox/__init__.py,sha256=AbtSHfocNNCyrA1_2MHk3RTBi4J9QMCmgChSGyHfvXY,11379
flox/__pycache__/__init__.cpython-312.pyc,,
flox/__pycache__/browser.cpython-312.pyc,,
flox/__pycache__/clipboard.cpython-312.pyc,,
flox/__pycache__/launcher.cpython-312.pyc,,
flox/__pycache__/settings.cpython-312.pyc,,
flox/__pycache__/string_matcher.cpython-312.pyc,,
flox/__pycache__/utils.cpython-312.pyc,,
flox/browser.py,sha256=olZ3cbG1bzXc97AK0M60CNE6JLMkJhnHdOWpnFrdk_s,2732
flox/clipboard.py,sha256=OKkS8guLa6D1OjnQXdvh_U8cRTrGijWJBepb99mhHtk,2319
flox/launcher.py,sha256=E9je22w2ntnCr45ARe7_5pfGhNCsA5Sx5WvyZeSV8UY,4457
flox/settings.py,sha256=Vi67rPTrp-97vYkdCiVObiLc8m_Tg24i1emn2aahJSI,1351
flox/string_matcher.py,sha256=2WQ3HBX4HMdPKnZr6eVNYML6kOlwjwHlhL59OkIywM4,7877
flox/utils.py,sha256=X5-hQz80UXX94XxvshB7vVHSb4MAoZChoZ29vjgdFE0,3943
flox/version,sha256=zoupBJrAgnX6zlL40wHdkDnSu9YNO9kG96PRVLFYOkE,7

View file

View file

@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: bdist_wheel (0.40.0)
Root-Is-Purelib: true
Tag: py3-none-any

View file

@ -0,0 +1 @@
flox

View file

@ -0,0 +1 @@