Compare commits
13 Commits
Author | SHA1 | Date | |
---|---|---|---|
7029a99470 | |||
6f279a2267 | |||
5047788f5f | |||
95bf237c6b | |||
42b153cb0e | |||
c862889cd5 | |||
f30663a671 | |||
b8d331098d | |||
0d3d9e79fc | |||
a7fb4bca98 | |||
09a68b838d | |||
2a406e8f87 | |||
6f9950bcdf |
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,3 +1,5 @@
|
|||||||
venv/
|
venv/
|
||||||
.vscode
|
.vscode
|
||||||
models/
|
models/
|
||||||
|
.rasa/
|
||||||
|
writeup.txt
|
7
LICENSE
Normal file
7
LICENSE
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Copyright 2022 Pratyush Desai
|
||||||
|
|
||||||
|
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.
|
23
README.rst
23
README.rst
@ -1,3 +1,26 @@
|
|||||||
|
==========================================
|
||||||
Interactive Login to Liberta Casa Services
|
Interactive Login to Liberta Casa Services
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
|
|
||||||
|
Creating a Dev Env
|
||||||
|
==================
|
||||||
|
|
||||||
|
- Install ``conda`` and initialize
|
||||||
|
- ``source anaconda3/bin/activate``
|
||||||
|
- ``conda install py38``
|
||||||
|
- ``cd path/to/dir``
|
||||||
|
- ``pip install rasa``
|
||||||
|
|
||||||
|
|
||||||
|
Rasa setup and command list
|
||||||
|
===========================
|
||||||
|
|
||||||
|
- ``rasa init`` to create a new project
|
||||||
|
- ``rasa train`` to train your model
|
||||||
|
|
||||||
|
Entity Extraction
|
||||||
|
=================
|
||||||
|
|
||||||
|
- Using duckling the easy way ``docker run -p 8000:8000 rasa/duckling``
|
||||||
|
- docs https://duckling.wit.ai/#getting-started
|
@ -1,3 +1,5 @@
|
|||||||
|
recipe: default.v1
|
||||||
|
|
||||||
language: en
|
language: en
|
||||||
pipeline:
|
pipeline:
|
||||||
- name: WhitespaceTokenizer
|
- name: WhitespaceTokenizer
|
||||||
@ -13,7 +15,7 @@ pipeline:
|
|||||||
- name: DucklingEntityExtractor
|
- name: DucklingEntityExtractor
|
||||||
url: http://localhost:8000
|
url: http://localhost:8000
|
||||||
dimensions:
|
dimensions:
|
||||||
- email
|
- ["email"]
|
||||||
- name: EntitySynonymMapper
|
- name: EntitySynonymMapper
|
||||||
- name: ResponseSelector
|
- name: ResponseSelector
|
||||||
epochs: 100
|
epochs: 100
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
version: "3.1"
|
||||||
|
|
||||||
nlu:
|
nlu:
|
||||||
- intent: greet
|
- intent: greet
|
||||||
examples: |
|
examples: |
|
||||||
@ -565,7 +567,6 @@ nlu:
|
|||||||
- [Smith](last_name)
|
- [Smith](last_name)
|
||||||
- my last names [Munoz](last_name)
|
- my last names [Munoz](last_name)
|
||||||
- [Farrell](last_name)
|
- [Farrell](last_name)
|
||||||
|
|
||||||
- intent: bot_challange
|
- intent: bot_challange
|
||||||
examples: |
|
examples: |
|
||||||
- Ar you a bot ?
|
- Ar you a bot ?
|
||||||
@ -631,7 +632,6 @@ nlu:
|
|||||||
- you sound like a real human
|
- you sound like a real human
|
||||||
- wow you sound like real human
|
- wow you sound like real human
|
||||||
- are you human ?
|
- are you human ?
|
||||||
|
|
||||||
- intent: out_of_scope/non_english
|
- intent: out_of_scope/non_english
|
||||||
examples: |
|
examples: |
|
||||||
- Wie fange ich mit Rasa an?
|
- Wie fange ich mit Rasa an?
|
||||||
@ -675,6 +675,7 @@ nlu:
|
|||||||
- αστεία λές
|
- αστεία λές
|
||||||
- rasa codigo abierto
|
- rasa codigo abierto
|
||||||
- 卧槽
|
- 卧槽
|
||||||
|
|
||||||
- intent: out_of_scope/other
|
- intent: out_of_scope/other
|
||||||
examples: |
|
examples: |
|
||||||
- I am asking you an out of scope question
|
- I am asking you an out of scope question
|
||||||
|
@ -1,7 +1,12 @@
|
|||||||
|
version: "3.1"
|
||||||
|
|
||||||
|
policies:
|
||||||
|
- name: RulePolicy
|
||||||
|
|
||||||
rules:
|
rules:
|
||||||
- rule: activate signup form
|
- rule: activate signup form
|
||||||
steps:
|
steps:
|
||||||
- intent: signup
|
- intent: inform_email
|
||||||
- action: signup_form
|
- action: signup_form
|
||||||
- active_loop: signup_form
|
- active_loop: signup_form
|
||||||
|
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
|
version: "3.1"
|
||||||
|
|
||||||
stories:
|
stories:
|
||||||
- story: greet and signup
|
- story: greet and signup
|
||||||
steps:
|
steps:
|
||||||
- intent: greet
|
- intent: greet
|
||||||
- action: utter_greet
|
- action: utter_greet
|
||||||
- intent: signup
|
- intent: signup
|
||||||
|
- action: utter_ask_email
|
||||||
|
- intent: inform_email
|
||||||
- action: signup_form
|
- action: signup_form
|
||||||
- active_loop: signup_form
|
- active_loop: signup_form
|
22
domain.yml
22
domain.yml
@ -1,4 +1,4 @@
|
|||||||
version: '2.0'
|
version: '3.1'
|
||||||
session_config:
|
session_config:
|
||||||
session_expiration_time: 60
|
session_expiration_time: 60
|
||||||
carry_over_slots_to_new_session: true
|
carry_over_slots_to_new_session: true
|
||||||
@ -7,7 +7,6 @@ entities:
|
|||||||
- last_name
|
- last_name
|
||||||
- first_name
|
- first_name
|
||||||
- full_name
|
- full_name
|
||||||
|
|
||||||
intents:
|
intents:
|
||||||
- greet
|
- greet
|
||||||
- inform
|
- inform
|
||||||
@ -15,17 +14,24 @@ intents:
|
|||||||
- bye
|
- bye
|
||||||
- affirm
|
- affirm
|
||||||
- deny
|
- deny
|
||||||
|
- bot_challange
|
||||||
- out_of_scope
|
- out_of_scope
|
||||||
slots:
|
slots:
|
||||||
email:
|
email:
|
||||||
type: any
|
type: any
|
||||||
influence_conversation: false
|
influence_conversation: false
|
||||||
|
mappings:
|
||||||
|
- type: custom
|
||||||
first_name:
|
first_name:
|
||||||
type: text
|
type: text
|
||||||
influence_conversation: false
|
influence_conversation: false
|
||||||
|
mappings:
|
||||||
|
- type: custom
|
||||||
last_name:
|
last_name:
|
||||||
type: text
|
type: text
|
||||||
influence_conversation: false
|
influence_conversation: false
|
||||||
|
mappings:
|
||||||
|
- type: custom
|
||||||
responses:
|
responses:
|
||||||
utter_bye:
|
utter_bye:
|
||||||
- text: |
|
- text: |
|
||||||
@ -58,9 +64,9 @@ actions:
|
|||||||
forms:
|
forms:
|
||||||
signup_form:
|
signup_form:
|
||||||
required_slots:
|
required_slots:
|
||||||
email:
|
- email
|
||||||
- type: from_slot
|
# - type: from_slot
|
||||||
first_name:
|
- first_name
|
||||||
- type: from_slot
|
# - type: from_slot
|
||||||
last_name:
|
- last_name
|
||||||
- type: from_slot
|
# - type: from_slot
|
685
requirements.txt
685
requirements.txt
@ -1,141 +1,614 @@
|
|||||||
absl-py==0.15.0
|
adb-shell==0.4.3
|
||||||
aiohttp==3.7.4.post0
|
advocate==1.0.0
|
||||||
|
aiodns==3.0.0
|
||||||
|
aiohttp==3.8.1
|
||||||
|
aiohttp-socks==0.7.1
|
||||||
|
aiohttp-utils==3.1.1
|
||||||
|
aiorpcX==0.22.1
|
||||||
|
aiosignal==1.2.0
|
||||||
|
airdrop-ng==1.1
|
||||||
|
airgraph-ng==1.1
|
||||||
alabaster==0.7.12
|
alabaster==0.7.12
|
||||||
APScheduler==3.6.3
|
ansiwrap==0.8.4
|
||||||
astunparse==1.6.3
|
antlr4-python3-runtime==4.10.1
|
||||||
async-timeout==3.0.1
|
anyio==3.6.1
|
||||||
attrs==21.2.0
|
anytree==2.8.0
|
||||||
|
api-client==1.3.1
|
||||||
|
api-client-pydantic==1.2.2
|
||||||
|
apiclient-pydantic-generator==0.1.0
|
||||||
|
apipkg==3.0.1
|
||||||
|
appdirs==1.4.4
|
||||||
|
apsw==3.38.5.post1
|
||||||
|
arandr==0.1.10
|
||||||
|
argcomplete==2.0.0
|
||||||
|
argon2-cffi==21.3.0
|
||||||
|
argon2-cffi-bindings==21.2.0
|
||||||
|
arrow==1.2.1
|
||||||
|
asciidoc==10.2.0
|
||||||
|
asgiref==3.5.0
|
||||||
|
asn1crypto==1.5.1
|
||||||
|
asttokens==2.0.5
|
||||||
|
async-generator==1.10
|
||||||
|
async-timeout==4.0.2
|
||||||
|
atomicwrites==1.4.1
|
||||||
|
attrs==21.4.0
|
||||||
|
attrs-strict==1.0.0
|
||||||
Automat==20.2.0
|
Automat==20.2.0
|
||||||
Babel==2.9.1
|
autotiling==1.6
|
||||||
bleach==4.1.0
|
Babel==2.10.3
|
||||||
boto3==1.18.65
|
backcall==0.2.0
|
||||||
botocore==1.21.65
|
backports-abc==0.5
|
||||||
cachetools==4.2.2
|
backports.csv==1.0.7
|
||||||
certifi==2021.10.8
|
base58==2.1.1
|
||||||
characteristic==14.3.0
|
bcrypt==3.2.2
|
||||||
chardet==4.0.0
|
Beaker==1.11.0
|
||||||
charset-normalizer==2.0.7
|
beautifulsoup4==4.11.1
|
||||||
clang==5.0
|
beets==1.6.0
|
||||||
click==8.0.3
|
bitstring==3.1.9
|
||||||
cloudpickle==2.0.0
|
black==22.6.0
|
||||||
coloredlogs==15.0.1
|
bleach==5.0.1
|
||||||
ConfigArgParse==1.5.3
|
blinker==1.4
|
||||||
|
boto==2.49.0
|
||||||
|
breezy==3.2.2
|
||||||
|
Brlapi==0.8.4
|
||||||
|
Brotli==1.0.9
|
||||||
|
brotlicffi==1.0.9.2
|
||||||
|
brz-etckeeper==0.0.0
|
||||||
|
bs4==0.0.1
|
||||||
|
btrfsutil==5.18.1
|
||||||
|
bugwarrior==1.8.0
|
||||||
|
CacheControl==0.12.6
|
||||||
|
cached-property==1.5.2
|
||||||
|
cchardet==2.1.7
|
||||||
|
ceph==1.0.0
|
||||||
|
ceph-volume==1.0.0
|
||||||
|
cephfs==2.0.0
|
||||||
|
cephfs-shell==0.0.1
|
||||||
|
certifi==2022.6.15
|
||||||
|
cffi==1.15.1
|
||||||
|
cfgv==3.3.1
|
||||||
|
chardet==5.0.0
|
||||||
|
charset-normalizer==2.1.0
|
||||||
|
chromedriver-binary==102.0.5005.27.0
|
||||||
|
cli-helpers==2.2.1
|
||||||
|
click==8.1.3
|
||||||
|
click-plugins==1.1.1
|
||||||
|
colorama==0.4.5
|
||||||
|
colorful==0.5.4
|
||||||
|
commonmark==0.9.1
|
||||||
|
configobj==5.1.0.dev0
|
||||||
|
configparser==5.2.0
|
||||||
|
confluent-kafka==1.8.2
|
||||||
|
confuse @ file:///build/python-confuse/src/confuse/dist/confuse-1.7.0-py2.py3-none-any.whl
|
||||||
constantly==15.1.0
|
constantly==15.1.0
|
||||||
cycler==0.10.0
|
contextlib2==21.6.0
|
||||||
|
coreapi==2.3.3
|
||||||
|
coreschema==0.0.4
|
||||||
|
cryptography==37.0.4
|
||||||
|
css-parser==1.0.7
|
||||||
|
cssselect==1.1.0
|
||||||
|
cupshelpers==1.0
|
||||||
|
cvxopt==1.3.0
|
||||||
|
cycler==0.11.0
|
||||||
|
cypari2==2.1.2
|
||||||
|
cysignals==1.11.2
|
||||||
|
Cython==0.29.32
|
||||||
|
daiquiri==3.0.1
|
||||||
|
datamodel-code-generator==0.11.20
|
||||||
|
debugpy==1.6.2
|
||||||
|
decorator==5.1.1
|
||||||
defusedxml==0.7.1
|
defusedxml==0.7.1
|
||||||
|
Deprecated==1.2.13
|
||||||
|
deprecation==2.1.0
|
||||||
|
DisplayCAL==3.9.6
|
||||||
|
distlib==0.3.5
|
||||||
|
distro==1.7.0
|
||||||
|
Django==4.0.4
|
||||||
|
django-stubs==1.10.1
|
||||||
|
django-stubs-ext==0.4.0
|
||||||
|
djangorestframework-stubs==1.5.0
|
||||||
|
dnspython==2.2.1
|
||||||
|
docker==5.0.3
|
||||||
|
docker-pycreds==0.4.0
|
||||||
|
dockerpty==0.4.1
|
||||||
docopt==0.6.2
|
docopt==0.6.2
|
||||||
docutils==0.17.1
|
docutils==0.19
|
||||||
entrypoints==0.3
|
dogpile.cache==1.1.7
|
||||||
fakeredis==1.6.1
|
DoubleRatchet==0.7.0
|
||||||
fbmessenger==4.3.1
|
dulwich==0.20.35
|
||||||
Flask==2.0.2
|
ebaysdk==2.2.0
|
||||||
flatbuffers==1.12
|
ecdsa==0.17.0
|
||||||
|
Electrum==4.2.2
|
||||||
|
email-validator==1.2.0
|
||||||
|
entrypoints==0.4
|
||||||
|
esbonio==0.13.0
|
||||||
|
evdev==1.6.0
|
||||||
|
exchange==0.3
|
||||||
|
executing==0.9.1
|
||||||
|
extension-helpers==0.1
|
||||||
|
extras==1.0.0
|
||||||
|
fastbencode==0.0.9
|
||||||
|
fastjsonschema==2.16.1
|
||||||
|
feedparser==6.0.10
|
||||||
|
fett==0.3.2
|
||||||
|
filelock==3.6.0
|
||||||
|
fixtures==4.0.0
|
||||||
|
flake8==4.0.1
|
||||||
|
Flask==2.0.3
|
||||||
|
Flask-Babel==2.0.0
|
||||||
|
Flask-Login==0.5.0
|
||||||
|
Flask-Principal==0.4.0
|
||||||
|
Flask-WTF==1.0.1
|
||||||
|
fonttools==4.33.1
|
||||||
|
formula1-cli==0.1.2
|
||||||
|
fpylll==0.5.7
|
||||||
|
frozenlist==1.3.0
|
||||||
future==0.18.2
|
future==0.18.2
|
||||||
gast==0.4.0
|
fuzzyfinder==2.1.0
|
||||||
gevent==21.8.0
|
gajim==1.4.7
|
||||||
google-auth==2.3.0
|
genson==1.2.2
|
||||||
google-auth-oauthlib==0.4.6
|
gevent==21.12.0
|
||||||
google-pasta==0.2.0
|
Glances==3.2.5
|
||||||
graphviz==0.17
|
gmpy2==2.1.2
|
||||||
|
GooCalendar==0.7.2
|
||||||
|
gpg==1.17.1
|
||||||
|
gps==3.24
|
||||||
|
graphviz==0.19.1
|
||||||
greenlet==1.1.2
|
greenlet==1.1.2
|
||||||
grpcio==1.41.0
|
gssapi==1.7.3
|
||||||
h5py==3.1.0
|
gTTS==2.2.4
|
||||||
|
gunicorn==20.1.0
|
||||||
|
h11==0.13.0
|
||||||
|
h2==4.1.0
|
||||||
|
hpack==4.0.0
|
||||||
|
html2text==2020.1.16
|
||||||
|
html5-parser==0.4.10
|
||||||
|
html5lib==1.1
|
||||||
|
httpie==3.2.1
|
||||||
|
httplib2==0.20.4
|
||||||
humanfriendly==10.0
|
humanfriendly==10.0
|
||||||
|
humanize==3.1.0
|
||||||
|
hyperframe==6.0.1
|
||||||
hyperlink==21.0.0
|
hyperlink==21.0.0
|
||||||
|
hypothesis==6.45.0
|
||||||
|
i3ipc==2.2.1
|
||||||
|
identify==2.4.12
|
||||||
idna==3.3
|
idna==3.3
|
||||||
imagesize==1.2.0
|
ifaddr==0.2.0
|
||||||
|
imagesize==1.4.1
|
||||||
|
importlib-metadata==4.8.1
|
||||||
incremental==21.3.0
|
incremental==21.3.0
|
||||||
|
inflate64==0.1.3
|
||||||
|
inflect==5.5.2
|
||||||
|
iniconfig==1.1.1
|
||||||
|
iOSbackup==0.9.923
|
||||||
|
ipykernel==6.15.1
|
||||||
|
ipython==8.4.0
|
||||||
ipython-genutils==0.2.0
|
ipython-genutils==0.2.0
|
||||||
itsdangerous==2.0.1
|
ipywidgets==7.7.1
|
||||||
Jinja2==3.0.2
|
iso-639==0.4.5
|
||||||
jmespath==0.10.0
|
iso8601==1.0.2
|
||||||
joblib==1.1.0
|
isodate==0.6.1
|
||||||
jsonpickle==2.0.0
|
isort==5.10.1
|
||||||
jsonschema==4.1.1
|
itsdangerous==2.1.2
|
||||||
jupyter-client==7.0.6
|
itypes==1.2.0
|
||||||
jupyter-core==4.8.1
|
jaraco.context==4.1.1
|
||||||
jupyterlab-pygments==0.1.2
|
jaraco.functools==3.5.1
|
||||||
keras==2.6.0
|
jaraco.text==3.8.1
|
||||||
Keras-Preprocessing==1.1.2
|
jedi==0.18.1
|
||||||
kiwisolver==1.3.2
|
jeepney==0.8.0
|
||||||
|
jellyfin-apiclient-python==1.8.1
|
||||||
|
jellyfin-mpv-shim==2.0.2
|
||||||
|
jellyfish==0.9.0
|
||||||
|
Jinja2==3.1.2
|
||||||
|
json5==0.9.9
|
||||||
|
jsonpointer==2.3
|
||||||
|
jsonrpclib-pelix==0.4.3.2
|
||||||
|
jsonschema==4.9.0
|
||||||
|
jupyter==1.0.0
|
||||||
|
jupyter-client==7.3.4
|
||||||
|
jupyter-console==6.4.4
|
||||||
|
jupyter-core==4.11.1
|
||||||
|
jupyter-packaging==0.12.2
|
||||||
|
jupyter-server==1.18.1
|
||||||
|
jupyterlab==3.4.4
|
||||||
|
jupyterlab-pygments==0.2.2
|
||||||
|
jupyterlab-server==2.15.0
|
||||||
|
jupyterlab-widgets==1.1.1
|
||||||
|
keyboard==0.13.5
|
||||||
|
keyring==23.4.0
|
||||||
|
kitchen==1.2.6
|
||||||
|
kiwisolver==1.4.2
|
||||||
klein==21.8.0
|
klein==21.8.0
|
||||||
Markdown==3.3.4
|
libfdt==1.6.1
|
||||||
MarkupSafe==2.0.1
|
libmagic==1.0
|
||||||
matplotlib==3.4.3
|
libnacl==1.8.0
|
||||||
|
libtorrent==2.0.7
|
||||||
|
libusb1==2.0.1
|
||||||
|
libvirt-python==8.6.0
|
||||||
|
limnoria @ git+https://github.com/ProgVal/Limnoria.git@b8dce0d7db3c84ade83111c4f8ff99302a0b3833
|
||||||
|
lit==14.0.6.dev0
|
||||||
|
lockfile==0.12.2
|
||||||
|
louis==3.22.0
|
||||||
|
lrcalc==2.0.0
|
||||||
|
lxml==4.9.1
|
||||||
|
lyricsgenius==3.0.1
|
||||||
|
m2r==0.2.1
|
||||||
|
Mako==1.1.6
|
||||||
|
mallard-ducktype==1.0.2
|
||||||
|
Markdown==3.4.1
|
||||||
|
Markups==3.1.3
|
||||||
|
MarkupSafe==2.1.1
|
||||||
|
matplotlib==3.5.1
|
||||||
|
matplotlib-inline==0.1.3
|
||||||
|
mccabe==0.7.0
|
||||||
|
mechanize==0.4.8
|
||||||
|
mediafile @ file:///build/python-mediafile/src/mediafile/dist/mediafile-0.9.0-py3-none-any.whl
|
||||||
|
memory-allocator==0.1.3
|
||||||
|
mercurial==6.2.1
|
||||||
|
meson==0.63.0
|
||||||
|
metakernel==0.29.0
|
||||||
|
meteostat==1.6.3
|
||||||
|
mirakuru==2.4.2
|
||||||
mistune==0.8.4
|
mistune==0.8.4
|
||||||
multidict==5.2.0
|
mixbox==1.0.5
|
||||||
nbclient==0.5.4
|
mock==3.0.5
|
||||||
nbconvert==6.2.0
|
more-itertools==8.13.0
|
||||||
nbformat==5.1.3
|
mpmath==1.2.1
|
||||||
nbsphinx==0.8.7
|
msgpack==1.0.3
|
||||||
nest-asyncio==1.5.1
|
multidict==6.0.2
|
||||||
|
multivolumefile==0.2.3
|
||||||
|
munkres==1.1.4
|
||||||
|
musicbrainzngs==0.7.1
|
||||||
|
mutagen==1.45.1
|
||||||
|
mvt==2.1.2
|
||||||
|
mypy==0.971
|
||||||
|
mypy-extensions==0.4.3
|
||||||
|
namcap==3.3.1
|
||||||
|
nba-api==1.1.11
|
||||||
|
nbclassic==0.4.3
|
||||||
|
nbclient==0.6.6
|
||||||
|
nbconvert==6.5.0
|
||||||
|
nbformat==5.4.0
|
||||||
|
nbxmpp==3.1.1
|
||||||
|
ndg-httpsclient==0.5.1
|
||||||
|
nest-asyncio==1.5.4
|
||||||
|
netifaces==0.11.0
|
||||||
|
netsnmp-python==1.0a1
|
||||||
networkx==2.6.3
|
networkx==2.6.3
|
||||||
numpy==1.19.5
|
nftables==0.1
|
||||||
oauthlib==3.1.1
|
nodeenv==1.6.0
|
||||||
opt-einsum==3.3.0
|
nose==1.3.7
|
||||||
packaging==21.0
|
notebook==6.4.12
|
||||||
pandoc==1.1.0
|
notebook-shim==0.1.0
|
||||||
|
notmuch==0.36
|
||||||
|
notmuch2==0.36
|
||||||
|
NSKeyedUnArchiver==1.5
|
||||||
|
nspektr==0.4.0
|
||||||
|
numpy==1.23.1
|
||||||
|
oct2py==5.5.1
|
||||||
|
octave-kernel==0.34.2
|
||||||
|
OMEMO==0.14.0
|
||||||
|
omemo-backend-signal==0.3.0
|
||||||
|
openapi-schema-validator==0.1.6
|
||||||
|
openapi-spec-validator==0.3.3
|
||||||
|
ordered-set==4.0.2
|
||||||
|
ordereddict==1.1
|
||||||
|
outcome==1.1.0
|
||||||
|
packaging==21.3
|
||||||
|
paho-mqtt==1.6.1
|
||||||
|
pandas==1.4.2
|
||||||
pandocfilters==1.5.0
|
pandocfilters==1.5.0
|
||||||
pathlib==1.0.1
|
paramiko==2.11.0
|
||||||
Pillow==8.4.0
|
parso==0.8.3
|
||||||
plumbum==1.7.0
|
pass-import==3.2
|
||||||
|
passlib==1.7.4
|
||||||
|
pathspec==0.9.0
|
||||||
|
patiencediff==0.2.2
|
||||||
|
PBinCLI==0.3.1
|
||||||
|
pbkdf2==1.3
|
||||||
|
pbr==5.9.0
|
||||||
|
pdftotext==2.2.2
|
||||||
|
pendulum==2.1.2
|
||||||
|
pep517==0.12.0
|
||||||
|
pexpect==4.8.0
|
||||||
|
pgcli==3.4.1
|
||||||
|
pgspecial==1.13.1
|
||||||
|
pickleshare==0.7.5
|
||||||
|
pifpaf==3.1.5
|
||||||
|
Pillow==9.2.0
|
||||||
|
platformdirs==2.5.2
|
||||||
|
pluggy==1.0.0
|
||||||
ply==3.11
|
ply==3.11
|
||||||
protobuf==3.18.1
|
poezio==0.14.dev10
|
||||||
|
polib==1.1.1
|
||||||
|
port-for==0.6.2
|
||||||
|
powerline-status==2.8.2
|
||||||
|
pplpy==0.8.7
|
||||||
|
prance==0.21.8.0
|
||||||
|
pre-commit==2.18.1
|
||||||
|
precis-i18n==1.0.4
|
||||||
|
primecountpy==0.1.0
|
||||||
|
priority==2.0.0
|
||||||
|
progress==1.6
|
||||||
|
prometheus-client==0.14.1
|
||||||
|
prompt-toolkit==3.0.30
|
||||||
|
protobuf==4.21.4
|
||||||
|
psutil==5.9.1
|
||||||
|
psycopg2==2.9.3
|
||||||
|
PTable==0.9.2
|
||||||
|
ptyprocess==0.7.0
|
||||||
|
pure-eval==0.2.2
|
||||||
|
py==1.11.0
|
||||||
|
py7zr==0.19.0
|
||||||
|
pyaes==1.6.1
|
||||||
|
pyalpm==0.10.6
|
||||||
|
pyaml==21.10.1
|
||||||
pyasn1==0.4.8
|
pyasn1==0.4.8
|
||||||
pyasn1-modules==0.2.8
|
pyasn1-modules==0.2.8
|
||||||
Pygments==2.10.0
|
pybcj==0.6.1
|
||||||
pykwalify==1.6.0
|
PyBluez==0.23
|
||||||
pyparsing==2.4.7
|
pycairo==1.21.0
|
||||||
pyrsistent==0.18.0
|
pycares==4.2.1
|
||||||
|
PyChess==1.0.3
|
||||||
|
pychm==0.8.6
|
||||||
|
pycodestyle==2.8.0
|
||||||
|
pycosat==0.6.3
|
||||||
|
pycountry==22.3.5
|
||||||
|
pycparser==2.21
|
||||||
|
pycryptodome==3.15.0
|
||||||
|
pycryptodomex==3.12.0
|
||||||
|
pycups==2.0.1
|
||||||
|
pycurl==7.45.1
|
||||||
|
pydantic==1.8.2
|
||||||
|
pydot==1.4.2
|
||||||
|
pyelftools==0.28
|
||||||
|
pyenchant==3.2.2
|
||||||
|
pyergast==0.1.0
|
||||||
|
pyfiglet==0.8.post1
|
||||||
|
pyflakes==2.5.0
|
||||||
|
pygit2==1.9.2
|
||||||
|
pygls==0.11.3
|
||||||
|
Pygments==2.12.0
|
||||||
|
PyGObject==3.42.2
|
||||||
|
pyinotify==0.9.6
|
||||||
|
pylast==4.5.0
|
||||||
|
pyliblo==0.10.0
|
||||||
|
pymongo==3.12.3
|
||||||
|
PyNaCl==1.4.0
|
||||||
|
pynvim==0.4.3
|
||||||
|
pyOpenSSL==22.0.0
|
||||||
|
pyparsing==3.0.9
|
||||||
|
PyPDF2==2.0.0
|
||||||
|
PyPDF3==1.0.6
|
||||||
|
pyperclip==1.8.2
|
||||||
|
pyppmd==0.18.2
|
||||||
|
Pypubsub==4.0.3
|
||||||
|
PyQt5==5.15.7
|
||||||
|
PyQt5-sip==12.11.0
|
||||||
|
PyQt6==6.3.1
|
||||||
|
PyQt6-sip==13.4.0
|
||||||
|
PyQt6-WebEngine==6.3.1
|
||||||
|
PyQtWebEngine==5.15.6
|
||||||
|
pyrsistent==0.16.1
|
||||||
|
pyserial==3.5
|
||||||
|
PySide2==5.15.5
|
||||||
|
PySnooper==1.1.1
|
||||||
|
PySocks==1.7.1
|
||||||
|
pyspellchecker==0.6.3
|
||||||
|
pystache==0.5.4
|
||||||
|
PyStemmer==2.0.1
|
||||||
|
pytest-django==4.5.2
|
||||||
|
pytest-mock==3.7.0
|
||||||
|
pytest-postgresql==3.1.3
|
||||||
|
pytest-redis==2.4.0
|
||||||
|
python-axolotl==0.2.3
|
||||||
|
python-axolotl-curve25519==0.4.1.post2
|
||||||
python-dateutil==2.8.2
|
python-dateutil==2.8.2
|
||||||
python-telegram-bot==13.7
|
python-dotenv==0.20.0
|
||||||
pytz==2021.3
|
python-gnupg==0.4.9
|
||||||
|
python-jose==3.3.0
|
||||||
|
python-json-logger==2.0.2
|
||||||
|
python-jsonrpc-server==0.3.4
|
||||||
|
python-keycloak==0.27.0
|
||||||
|
python-ldap==3.4.2
|
||||||
|
python-mailcow==1.0.4
|
||||||
|
python-markdown-math==0.8
|
||||||
|
python-mimeparse==1.6.0
|
||||||
|
python-mpd2==3.0.5
|
||||||
|
python-mpv==0.5.2
|
||||||
|
python-mpv-jsonipc==1.1.13
|
||||||
|
python-socks==2.0.3
|
||||||
|
python-xlib==0.31
|
||||||
|
pytz==2022.1
|
||||||
|
pytz-deprecation-shim==0.1.0.post0
|
||||||
|
pytzdata==2020.1
|
||||||
|
pyusb==1.2.1
|
||||||
|
pyxdg==0.28
|
||||||
PyYAML==6.0
|
PyYAML==6.0
|
||||||
pyzmq==22.3.0
|
pyzmq==23.2.0
|
||||||
rasa==0.1.1
|
pyzstd==0.15.2
|
||||||
rasa-core==0.8.6
|
qrcode==7.3.1
|
||||||
rasa-nlu==0.11.5
|
qtconsole==5.3.1
|
||||||
redis==3.5.3
|
QtPy==2.1.0
|
||||||
requests==2.26.0
|
quodlibet==4.5.0
|
||||||
requests-oauthlib==1.3.0
|
rados==2.0.0
|
||||||
rsa==4.7.2
|
ranger==0.10
|
||||||
ruamel.yaml==0.17.16
|
ranger-fm==1.9.3
|
||||||
|
rbd==2.0.0
|
||||||
|
rdflib==6.1.1
|
||||||
|
redis==4.2.2
|
||||||
|
Reflector==2021.11.20.2.41.3
|
||||||
|
regex==2022.6.2
|
||||||
|
reportlab==3.6.11
|
||||||
|
requests==2.28.1
|
||||||
|
requests-file==1.5.1
|
||||||
|
requests-mock==1.9.3
|
||||||
|
requests-toolbelt==0.9.1
|
||||||
|
requests-unixsocket==0.3.0
|
||||||
|
resolvelib==0.8.1
|
||||||
|
ReText==7.2.3
|
||||||
|
retrying==1.3.3
|
||||||
|
rfc3987==1.3.8
|
||||||
|
rgw==2.0.0
|
||||||
|
rich @ file:///build/python-rich/src/rich-12.5.1/dist/rich-12.5.0-py3-none-any.whl
|
||||||
|
rnr @ file:///home/mogad0n/.cache/yay/rnr-fm/src/rnr-1.0.8-py3-none-any.whl
|
||||||
|
rpy2==3.5.3
|
||||||
|
rsa==4.9
|
||||||
|
rstcheck==3.3.1
|
||||||
|
ruamel.yaml==0.17.21
|
||||||
ruamel.yaml.clib==0.2.6
|
ruamel.yaml.clib==0.2.6
|
||||||
s3transfer==0.5.0
|
sagemath-standard==9.6
|
||||||
scikit-learn==1.0
|
scipy==1.8.0
|
||||||
scipy==1.7.1
|
SecretStorage==3.3.2
|
||||||
simplejson==3.17.5
|
selenium==4.1.5
|
||||||
six==1.15.0
|
semver==2.13.0
|
||||||
slackclient==2.9.3
|
Send2Trash==1.8.0
|
||||||
snowballstemmer==2.1.0
|
sentry-sdk==1.5.10
|
||||||
|
service-identity==21.1.0
|
||||||
|
setproctitle==1.2.3
|
||||||
|
setuptools-scm==7.0.4
|
||||||
|
sftpman==1.2.2
|
||||||
|
sftpman-gtk==1.1
|
||||||
|
sgmllib3k==1.0.0
|
||||||
|
shellingham==1.4.0
|
||||||
|
shiboken2==5.15.5
|
||||||
|
shodan==1.28.0
|
||||||
|
simplejson==3.17.6
|
||||||
|
simpy==4.0.1
|
||||||
|
six==1.16.0
|
||||||
|
sjcl==0.2.1
|
||||||
|
slixmpp==1.8.2
|
||||||
|
slixmpp-omemo==0.6.0
|
||||||
|
sniffio==1.2.0
|
||||||
|
snooty-lextudio==1.11.6
|
||||||
|
snowballstemmer==2.2.0
|
||||||
sortedcontainers==2.4.0
|
sortedcontainers==2.4.0
|
||||||
Sphinx==4.2.0
|
soupsieve==2.3.2.post1
|
||||||
|
speaklater==1.3
|
||||||
|
speech==0.5.2
|
||||||
|
speedtest-cli==2.1.3
|
||||||
|
Sphinx==5.1.1
|
||||||
|
sphinx-autodoc-typehints==1.13.1
|
||||||
|
sphinx-automodapi==0.14.1
|
||||||
|
sphinx-rtd-theme==1.0.0
|
||||||
sphinxcontrib-applehelp==1.0.2
|
sphinxcontrib-applehelp==1.0.2
|
||||||
sphinxcontrib-devhelp==1.0.2
|
sphinxcontrib-devhelp==1.0.2
|
||||||
sphinxcontrib-htmlhelp==2.0.0
|
sphinxcontrib-htmlhelp==2.0.0
|
||||||
sphinxcontrib-jsmath==1.0.1
|
sphinxcontrib-jsmath==1.0.1
|
||||||
sphinxcontrib-qthelp==1.0.3
|
sphinxcontrib-qthelp==1.0.3
|
||||||
sphinxcontrib-serializinghtml==1.1.5
|
sphinxcontrib-serializinghtml==1.1.5
|
||||||
tensorboard==2.7.0
|
sportyfin==1.0.7
|
||||||
tensorboard-data-server==0.6.1
|
SQLAlchemy==1.3.24
|
||||||
tensorboard-plugin-wit==1.8.0
|
sqlparse==0.4.2
|
||||||
tensorflow==2.6.0
|
stack-data==0.3.0
|
||||||
tensorflow-estimator==2.6.0
|
statistics==1.0.3.5
|
||||||
|
stevedore==4.0.0
|
||||||
|
stix-validator==2.5.1
|
||||||
|
stix2==2.1.0
|
||||||
|
stix2-patterns==1.3.2
|
||||||
|
stringcase==1.2.0
|
||||||
|
swagger-ui-bundle==0.0.6
|
||||||
|
-e git+https://forge.softwareheritage.org/source/swh-auth.git@2ccdcfc872e1bb4c5de87020633a22aabf766156#egg=swh.auth
|
||||||
|
-e git+https://forge.softwareheritage.org/source/swh-core.git@95709cffddc3586066a2760254e85b86d5d8997b#egg=swh.core
|
||||||
|
-e git+https://forge.softwareheritage.org/source/swh-counters.git@2d13c33cd1836c2621dbd40957a2e4db1354f5fc#egg=swh.counters
|
||||||
|
-e git+https://forge.softwareheritage.org/source/swh-journal.git@50bdea7e9188dace9dbf72a289cb16ae8b59ee9b#egg=swh.journal
|
||||||
|
-e git+https://forge.softwareheritage.org/source/swh-model.git@f82a2179dcc5df1d7cc16f336a6ef0222d927a83#egg=swh.model
|
||||||
|
sympy==1.10.1
|
||||||
|
systemd-python==234
|
||||||
|
tabulate==0.8.10
|
||||||
|
tasklib==2.4.3
|
||||||
|
taskw==1.3.1
|
||||||
|
taxii2-client==0.5.0
|
||||||
|
team==1.0
|
||||||
|
Telethon==1.13.0
|
||||||
|
tenacity==8.0.1
|
||||||
termcolor==1.1.0
|
termcolor==1.1.0
|
||||||
testpath==0.5.0
|
terminado==0.15.0
|
||||||
threadpoolctl==3.0.0
|
terminaltables==3.1.0
|
||||||
|
testpath==0.6.0
|
||||||
|
testtools==2.5.0
|
||||||
|
texttable==1.6.4
|
||||||
|
tgcli==0.3.1
|
||||||
|
tinycss2==1.1.1
|
||||||
|
tld==0.12.6
|
||||||
|
toml==0.10.2
|
||||||
|
tomli==2.0.1
|
||||||
|
tomlkit==0.11.1
|
||||||
|
torbrowser-launcher==0.3.5
|
||||||
tornado==6.1
|
tornado==6.1
|
||||||
tqdm==4.62.3
|
tox==3.25.1
|
||||||
traitlets==5.1.0
|
tqdm==4.64.0
|
||||||
Tubes==0.2.0
|
traitlets==5.3.0
|
||||||
Twisted==21.7.0
|
trio==0.20.0
|
||||||
typing==3.7.4.3
|
trio-websocket==0.9.2
|
||||||
typing-extensions==3.7.4.3
|
trove-classifiers==2022.7.22
|
||||||
|
Tubes==0.2.1
|
||||||
|
tuir==1.29.0
|
||||||
|
Twisted==22.4.0
|
||||||
|
typed-ast==1.5.4
|
||||||
|
typeguard==2.13.3
|
||||||
|
typer==0.4.1
|
||||||
|
types-click==7.1.8
|
||||||
|
types-Flask==1.1.6
|
||||||
|
types-Jinja2==2.11.9
|
||||||
|
types-Markdown==3.3.13
|
||||||
|
types-MarkupSafe==1.1.10
|
||||||
|
types-psycopg2==2.9.13
|
||||||
|
types-python-dateutil==2.8.12
|
||||||
|
types-pytz==2021.3.6
|
||||||
|
types-PyYAML==6.0.7
|
||||||
|
types-redis==4.2.0
|
||||||
|
types-requests==2.27.20
|
||||||
|
types-urllib3==1.26.13
|
||||||
|
types-Werkzeug==1.0.9
|
||||||
|
typing==3.10.0.0
|
||||||
|
typing_extensions==4.2.0
|
||||||
|
tzdata==2022.1
|
||||||
tzlocal==2.1
|
tzlocal==2.1
|
||||||
urllib3==1.26.7
|
ueberzug==18.1.9
|
||||||
|
ujson==1.35
|
||||||
|
Unidecode==1.3.4
|
||||||
|
unrardll==0.1.5
|
||||||
|
urllib3==1.26.9
|
||||||
|
urwid==2.1.2
|
||||||
|
validate==5.1.0.dev0
|
||||||
|
validate-pyproject==0.9
|
||||||
|
virtualenv==20.11.0
|
||||||
|
virtualenv-clone==0.5.7
|
||||||
|
virtualenvwrapper==4.8.4
|
||||||
|
vit==2.2.0
|
||||||
|
vobject==0.9.6.1
|
||||||
|
Wand==0.6.7
|
||||||
|
watchdog==1.0.2
|
||||||
|
wcwidth==0.2.5
|
||||||
|
webcolors==1.12
|
||||||
webencodings==0.5.1
|
webencodings==0.5.1
|
||||||
Werkzeug==2.0.2
|
websocket-client==1.3.3
|
||||||
wrapt==1.12.1
|
websockets==10.3
|
||||||
yarl==1.7.0
|
Werkzeug==2.0.3
|
||||||
|
whichcraft==0.6.1
|
||||||
|
widgetsnbextension==3.6.1
|
||||||
|
wrapt==1.14.0
|
||||||
|
wsproto==1.1.0
|
||||||
|
WTForms==3.0.1
|
||||||
|
wxPython==4.1.1
|
||||||
|
X3DH==0.5.9
|
||||||
|
xattr==0.9.9
|
||||||
|
xcffib==0.11.1
|
||||||
|
XEdDSA==0.6.0
|
||||||
|
xlrd==2.0.1
|
||||||
|
XlsxWriter==3.0.3
|
||||||
|
xlwt==1.3.0
|
||||||
|
xmltodict==0.12.0
|
||||||
|
yapf==0.31.0
|
||||||
|
yarl==1.7.2
|
||||||
|
yaspin==2.1.0
|
||||||
|
yt-dlg==1.8.4
|
||||||
|
yt-dlp==2022.7.18
|
||||||
|
zeep==4.1.0
|
||||||
|
zeroconf==0.38.7
|
||||||
|
zipfile-deflate64==0.2.0
|
||||||
|
zipp==3.8.1
|
||||||
zope.event==4.5.0
|
zope.event==4.5.0
|
||||||
zope.interface==5.4.0
|
zope.interface==5.4.0
|
||||||
|
Loading…
Reference in New Issue
Block a user