Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
e116668987 | |||
0e40e95d08 | |||
919e0a7a8c |
6
.gitignore
vendored
6
.gitignore
vendored
@ -1,5 +1,3 @@
|
||||
venv/
|
||||
env/
|
||||
.vscode
|
||||
models/
|
||||
.rasa/
|
||||
writeup.txt
|
||||
models/
|
7
LICENSE
7
LICENSE
@ -1,7 +0,0 @@
|
||||
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.
|
34
README.rst
34
README.rst
@ -1,26 +1,24 @@
|
||||
==========================================
|
||||
Interactive Login to Liberta Casa Services
|
||||
==========================================
|
||||
|
||||
==========================
|
||||
Current Scope and Features
|
||||
==========================
|
||||
|
||||
Creating a Dev Env
|
||||
==================
|
||||
User Registration
|
||||
This is the primary feature for the initial release. Liberta Casa exposes many services via SSO which improves
|
||||
end user experience. The hindrances to this are manual intervention being required for sending users the link
|
||||
and then telling them to check the email confirmation etc. Also they do need to register it like any old web form.
|
||||
|
||||
- Install ``conda`` and initialize
|
||||
- ``source anaconda3/bin/activate``
|
||||
- ``conda install py38``
|
||||
- ``cd path/to/dir``
|
||||
- ``pip install rasa``
|
||||
One solution to this is the ``KeyCloak`` plugin on the bot but that requires a similar intervention and knowledge of syntax
|
||||
|
||||
This ``Rasa`` based conversational user registration system aims to make this simple for the end user and require less
|
||||
intervention by network staff.
|
||||
|
||||
|
||||
Rasa setup and command list
|
||||
===========================
|
||||
=====
|
||||
Setup
|
||||
=====
|
||||
|
||||
- ``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
|
||||
* Set up a virtual environment using ``python3 -m venv venv``
|
||||
* Clone the repository and install the dependencies using ``pip3 install -r requirements.txt``
|
||||
|
@ -1,5 +1,3 @@
|
||||
recipe: default.v1
|
||||
|
||||
language: en
|
||||
pipeline:
|
||||
- name: WhitespaceTokenizer
|
||||
@ -15,7 +13,7 @@ pipeline:
|
||||
- name: DucklingEntityExtractor
|
||||
url: http://localhost:8000
|
||||
dimensions:
|
||||
- ["email"]
|
||||
- email
|
||||
- name: EntitySynonymMapper
|
||||
- name: ResponseSelector
|
||||
epochs: 100
|
||||
@ -25,4 +23,4 @@ policies:
|
||||
- name: RulePolicy
|
||||
- name: TEDPolicy
|
||||
max_history: 5
|
||||
epochs: 100
|
||||
epochs: 100
|
||||
|
13
data/nlu.yml
13
data/nlu.yml
@ -1,5 +1,3 @@
|
||||
version: "3.1"
|
||||
|
||||
nlu:
|
||||
- intent: greet
|
||||
examples: |
|
||||
@ -398,7 +396,7 @@ nlu:
|
||||
- Exit
|
||||
- Close this talk
|
||||
- byr
|
||||
|
||||
|
||||
- intent: deny
|
||||
examples: |
|
||||
- I don't want to
|
||||
@ -566,7 +564,8 @@ nlu:
|
||||
- my last names [Wontor](last_name)
|
||||
- [Smith](last_name)
|
||||
- my last names [Munoz](last_name)
|
||||
- [Farrell](last_name)
|
||||
- [Farrell](last_name)
|
||||
|
||||
- intent: bot_challange
|
||||
examples: |
|
||||
- Ar you a bot ?
|
||||
@ -631,7 +630,8 @@ nlu:
|
||||
- So I'm here Today to ask one very simple question, what are you ?
|
||||
- you sound like a real human
|
||||
- wow you sound like real human
|
||||
- are you human ?
|
||||
- are you human ?
|
||||
|
||||
- intent: out_of_scope/non_english
|
||||
examples: |
|
||||
- Wie fange ich mit Rasa an?
|
||||
@ -675,7 +675,6 @@ nlu:
|
||||
- αστεία λές
|
||||
- rasa codigo abierto
|
||||
- 卧槽
|
||||
|
||||
- intent: out_of_scope/other
|
||||
examples: |
|
||||
- I am asking you an out of scope question
|
||||
@ -1046,4 +1045,4 @@ nlu:
|
||||
- drhdtjfjfyj
|
||||
- sudo reboot
|
||||
- asdfgasd
|
||||
- asdfgasdas
|
||||
- asdfgasdas
|
||||
|
@ -1,12 +1,7 @@
|
||||
version: "3.1"
|
||||
|
||||
policies:
|
||||
- name: RulePolicy
|
||||
|
||||
rules:
|
||||
- rule: activate signup form
|
||||
steps:
|
||||
- intent: inform_email
|
||||
- intent: signup
|
||||
- action: signup_form
|
||||
- active_loop: signup_form
|
||||
|
||||
@ -31,4 +26,4 @@ rules:
|
||||
- rule: bye
|
||||
steps:
|
||||
- intent: bye
|
||||
- action: utter_bye
|
||||
- action: utter_bye
|
||||
|
@ -1,12 +1,8 @@
|
||||
version: "3.1"
|
||||
|
||||
stories:
|
||||
- story: greet and signup
|
||||
steps:
|
||||
- intent: greet
|
||||
- action: utter_greet
|
||||
- intent: signup
|
||||
- action: utter_ask_email
|
||||
- intent: inform_email
|
||||
- action: signup_form
|
||||
- active_loop: signup_form
|
38
domain.yml
38
domain.yml
@ -1,4 +1,4 @@
|
||||
version: '3.1'
|
||||
version: '2.0'
|
||||
session_config:
|
||||
session_expiration_time: 60
|
||||
carry_over_slots_to_new_session: true
|
||||
@ -7,6 +7,7 @@ entities:
|
||||
- last_name
|
||||
- first_name
|
||||
- full_name
|
||||
|
||||
intents:
|
||||
- greet
|
||||
- inform
|
||||
@ -14,49 +15,42 @@ intents:
|
||||
- bye
|
||||
- affirm
|
||||
- deny
|
||||
- bot_challange
|
||||
- out_of_scope
|
||||
slots:
|
||||
email:
|
||||
type: any
|
||||
influence_conversation: false
|
||||
mappings:
|
||||
- type: custom
|
||||
first_name:
|
||||
type: text
|
||||
influence_conversation: false
|
||||
mappings:
|
||||
- type: custom
|
||||
last_name:
|
||||
type: text
|
||||
influence_conversation: false
|
||||
mappings:
|
||||
- type: custom
|
||||
responses:
|
||||
utter_bye:
|
||||
- text: |
|
||||
Goodbye!
|
||||
Goodbye!
|
||||
utter_out_of_scope/other:
|
||||
- text: |
|
||||
I dont understand sorry!
|
||||
I dont understand sorry!
|
||||
utter_out_of_scope/non_english:
|
||||
- text: |
|
||||
I only speak English :(
|
||||
I only speak English :(
|
||||
utter_bot_challenge:
|
||||
- text: |
|
||||
I am a bot!
|
||||
I am a bot!
|
||||
utter_greet:
|
||||
- text: |
|
||||
Hello! How can I help you?
|
||||
Hello! How can I help you?
|
||||
- text: |
|
||||
Hi!
|
||||
Hi!
|
||||
utter_ask_email:
|
||||
- text: |
|
||||
What is your email address?
|
||||
What is your email address?
|
||||
utter_signedup:
|
||||
- text: |
|
||||
Check your inbox at {email} in order to finish signing up on Liberta Casa!
|
||||
You're all set! Check your inbox at {email} to confirm your registration.
|
||||
You're all set! Check your inbox at {email} to confirm your registration.
|
||||
actions:
|
||||
- '...'
|
||||
- utter_greet
|
||||
@ -64,9 +58,9 @@ actions:
|
||||
forms:
|
||||
signup_form:
|
||||
required_slots:
|
||||
- email
|
||||
# - type: from_slot
|
||||
- first_name
|
||||
# - type: from_slot
|
||||
- last_name
|
||||
# - type: from_slot
|
||||
email:
|
||||
- type: from_slot
|
||||
first_name:
|
||||
- type: from_slot
|
||||
last_name:
|
||||
- type: from_slot
|
||||
|
@ -6,4 +6,4 @@ forms:
|
||||
first_name:
|
||||
- type: from_slot
|
||||
last_name:
|
||||
- type: from_slot
|
||||
- type: from_slot
|
||||
|
685
requirements.txt
685
requirements.txt
@ -1,614 +1,141 @@
|
||||
adb-shell==0.4.3
|
||||
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
|
||||
absl-py==0.15.0
|
||||
aiohttp==3.7.4.post0
|
||||
alabaster==0.7.12
|
||||
ansiwrap==0.8.4
|
||||
antlr4-python3-runtime==4.10.1
|
||||
anyio==3.6.1
|
||||
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
|
||||
APScheduler==3.6.3
|
||||
astunparse==1.6.3
|
||||
async-timeout==3.0.1
|
||||
attrs==21.2.0
|
||||
Automat==20.2.0
|
||||
autotiling==1.6
|
||||
Babel==2.10.3
|
||||
backcall==0.2.0
|
||||
backports-abc==0.5
|
||||
backports.csv==1.0.7
|
||||
base58==2.1.1
|
||||
bcrypt==3.2.2
|
||||
Beaker==1.11.0
|
||||
beautifulsoup4==4.11.1
|
||||
beets==1.6.0
|
||||
bitstring==3.1.9
|
||||
black==22.6.0
|
||||
bleach==5.0.1
|
||||
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
|
||||
Babel==2.9.1
|
||||
bleach==4.1.0
|
||||
boto3==1.19.1
|
||||
botocore==1.22.2
|
||||
cachetools==4.2.2
|
||||
certifi==2021.10.8
|
||||
characteristic==14.3.0
|
||||
chardet==4.0.0
|
||||
charset-normalizer==2.0.7
|
||||
clang==5.0
|
||||
click==8.0.3
|
||||
cloudpickle==2.0.0
|
||||
coloredlogs==15.0.1
|
||||
ConfigArgParse==1.5.3
|
||||
constantly==15.1.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
|
||||
cycler==0.10.0
|
||||
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
|
||||
docutils==0.19
|
||||
dogpile.cache==1.1.7
|
||||
DoubleRatchet==0.7.0
|
||||
dulwich==0.20.35
|
||||
ebaysdk==2.2.0
|
||||
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
|
||||
docutils==0.17.1
|
||||
entrypoints==0.3
|
||||
fakeredis==1.6.1
|
||||
fbmessenger==4.3.1
|
||||
Flask==2.0.2
|
||||
flatbuffers==1.12
|
||||
future==0.18.2
|
||||
fuzzyfinder==2.1.0
|
||||
gajim==1.4.7
|
||||
genson==1.2.2
|
||||
gevent==21.12.0
|
||||
Glances==3.2.5
|
||||
gmpy2==2.1.2
|
||||
GooCalendar==0.7.2
|
||||
gpg==1.17.1
|
||||
gps==3.24
|
||||
graphviz==0.19.1
|
||||
gast==0.4.0
|
||||
gevent==21.8.0
|
||||
google-auth==2.3.0
|
||||
google-auth-oauthlib==0.4.6
|
||||
google-pasta==0.2.0
|
||||
graphviz==0.17
|
||||
greenlet==1.1.2
|
||||
gssapi==1.7.3
|
||||
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
|
||||
grpcio==1.41.0
|
||||
h5py==3.1.0
|
||||
humanfriendly==10.0
|
||||
humanize==3.1.0
|
||||
hyperframe==6.0.1
|
||||
hyperlink==21.0.0
|
||||
hypothesis==6.45.0
|
||||
i3ipc==2.2.1
|
||||
identify==2.4.12
|
||||
idna==3.3
|
||||
ifaddr==0.2.0
|
||||
imagesize==1.4.1
|
||||
importlib-metadata==4.8.1
|
||||
imagesize==1.2.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
|
||||
ipywidgets==7.7.1
|
||||
iso-639==0.4.5
|
||||
iso8601==1.0.2
|
||||
isodate==0.6.1
|
||||
isort==5.10.1
|
||||
itsdangerous==2.1.2
|
||||
itypes==1.2.0
|
||||
jaraco.context==4.1.1
|
||||
jaraco.functools==3.5.1
|
||||
jaraco.text==3.8.1
|
||||
jedi==0.18.1
|
||||
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
|
||||
itsdangerous==2.0.1
|
||||
Jinja2==3.0.2
|
||||
jmespath==0.10.0
|
||||
joblib==1.1.0
|
||||
jsonpickle==2.0.0
|
||||
jsonschema==4.1.2
|
||||
jupyter-client==7.0.6
|
||||
jupyter-core==4.8.1
|
||||
jupyterlab-pygments==0.1.2
|
||||
keras==2.6.0
|
||||
Keras-Preprocessing==1.1.2
|
||||
kiwisolver==1.3.2
|
||||
klein==21.8.0
|
||||
libfdt==1.6.1
|
||||
libmagic==1.0
|
||||
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
|
||||
Markdown==3.3.4
|
||||
MarkupSafe==2.0.1
|
||||
matplotlib==3.4.3
|
||||
mistune==0.8.4
|
||||
mixbox==1.0.5
|
||||
mock==3.0.5
|
||||
more-itertools==8.13.0
|
||||
mpmath==1.2.1
|
||||
msgpack==1.0.3
|
||||
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
|
||||
multidict==5.2.0
|
||||
nbclient==0.5.4
|
||||
nbconvert==6.2.0
|
||||
nbformat==5.1.3
|
||||
nbsphinx==0.8.7
|
||||
nest-asyncio==1.5.1
|
||||
networkx==2.6.3
|
||||
nftables==0.1
|
||||
nodeenv==1.6.0
|
||||
nose==1.3.7
|
||||
notebook==6.4.12
|
||||
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
|
||||
numpy==1.19.5
|
||||
oauthlib==3.1.1
|
||||
opt-einsum==3.3.0
|
||||
packaging==21.0
|
||||
pandoc==1.1.0
|
||||
pandocfilters==1.5.0
|
||||
paramiko==2.11.0
|
||||
parso==0.8.3
|
||||
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
|
||||
pathlib==1.0.1
|
||||
Pillow==8.4.0
|
||||
plumbum==1.7.0
|
||||
ply==3.11
|
||||
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
|
||||
protobuf==3.19.0
|
||||
pyasn1==0.4.8
|
||||
pyasn1-modules==0.2.8
|
||||
pybcj==0.6.1
|
||||
PyBluez==0.23
|
||||
pycairo==1.21.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
|
||||
Pygments==2.10.0
|
||||
pykwalify==1.6.0
|
||||
pyparsing==2.4.7
|
||||
pyrsistent==0.18.0
|
||||
python-dateutil==2.8.2
|
||||
python-dotenv==0.20.0
|
||||
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
|
||||
python-telegram-bot==13.7
|
||||
pytz==2021.3
|
||||
PyYAML==6.0
|
||||
pyzmq==23.2.0
|
||||
pyzstd==0.15.2
|
||||
qrcode==7.3.1
|
||||
qtconsole==5.3.1
|
||||
QtPy==2.1.0
|
||||
quodlibet==4.5.0
|
||||
rados==2.0.0
|
||||
ranger==0.10
|
||||
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
|
||||
pyzmq==22.3.0
|
||||
rasa==0.1.1
|
||||
rasa-core==0.8.6
|
||||
rasa-nlu==0.11.5
|
||||
redis==3.5.3
|
||||
requests==2.26.0
|
||||
requests-oauthlib==1.3.0
|
||||
rsa==4.7.2
|
||||
ruamel.yaml==0.17.16
|
||||
ruamel.yaml.clib==0.2.6
|
||||
sagemath-standard==9.6
|
||||
scipy==1.8.0
|
||||
SecretStorage==3.3.2
|
||||
selenium==4.1.5
|
||||
semver==2.13.0
|
||||
Send2Trash==1.8.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
|
||||
s3transfer==0.5.0
|
||||
scikit-learn==1.0
|
||||
scipy==1.7.1
|
||||
simplejson==3.17.5
|
||||
six==1.15.0
|
||||
slackclient==2.9.3
|
||||
snowballstemmer==2.1.0
|
||||
sortedcontainers==2.4.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
|
||||
Sphinx==4.2.0
|
||||
sphinxcontrib-applehelp==1.0.2
|
||||
sphinxcontrib-devhelp==1.0.2
|
||||
sphinxcontrib-htmlhelp==2.0.0
|
||||
sphinxcontrib-jsmath==1.0.1
|
||||
sphinxcontrib-qthelp==1.0.3
|
||||
sphinxcontrib-serializinghtml==1.1.5
|
||||
sportyfin==1.0.7
|
||||
SQLAlchemy==1.3.24
|
||||
sqlparse==0.4.2
|
||||
stack-data==0.3.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
|
||||
tensorboard==2.7.0
|
||||
tensorboard-data-server==0.6.1
|
||||
tensorboard-plugin-wit==1.8.0
|
||||
tensorflow==2.6.0
|
||||
tensorflow-estimator==2.6.0
|
||||
termcolor==1.1.0
|
||||
terminado==0.15.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
|
||||
testpath==0.5.0
|
||||
threadpoolctl==3.0.0
|
||||
tornado==6.1
|
||||
tox==3.25.1
|
||||
tqdm==4.64.0
|
||||
traitlets==5.3.0
|
||||
trio==0.20.0
|
||||
trio-websocket==0.9.2
|
||||
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
|
||||
tqdm==4.62.3
|
||||
traitlets==5.1.0
|
||||
Tubes==0.2.0
|
||||
Twisted==21.7.0
|
||||
typing==3.7.4.3
|
||||
typing-extensions==3.7.4.3
|
||||
tzlocal==2.1
|
||||
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
|
||||
urllib3==1.26.7
|
||||
webencodings==0.5.1
|
||||
websocket-client==1.3.3
|
||||
websockets==10.3
|
||||
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
|
||||
Werkzeug==2.0.2
|
||||
wrapt==1.12.1
|
||||
yarl==1.7.0
|
||||
zope.event==4.5.0
|
||||
zope.interface==5.4.0
|
||||
|
@ -22,4 +22,4 @@ responses:
|
||||
utter_signedup:
|
||||
- text: |
|
||||
Check your inbox at {email} in order to finish signing up on Liberta Casa!
|
||||
You're all set! Check your inbox at {email} to confirm your registration.
|
||||
You're all set! Check your inbox at {email} to confirm your registration.
|
||||
|
Reference in New Issue
Block a user