Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Surya Narayana
/
ai-workforce-rasa
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
a2db773d
authored
Jan 19, 2021
by
Rajeev Uppala
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
code added to install a package dateutil
parent
1e7678dd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletions
actions/actions.py
actions/actions.py
View file @
a2db773d
...
@@ -7,7 +7,15 @@ from rasa_sdk.events import SlotSet
...
@@ -7,7 +7,15 @@ from rasa_sdk.events import SlotSet
import
re
import
re
from
twilio.rest
import
Client
from
twilio.rest
import
Client
from
datetime
import
datetime
from
datetime
import
datetime
from
dateutil.parser
import
parse
import
subprocess
import
sys
try
:
from
dateutil.parser
import
parse
except
ImportError
:
subprocess
.
check_call
([
sys
.
executable
,
"-m"
,
"pip"
,
"install"
,
'dateutil'
])
finally
:
from
dateutil.parser
import
parse
account_sid
=
"ACc460d692e5a467c60b352714b1416140"
account_sid
=
"ACc460d692e5a467c60b352714b1416140"
auth_token
=
"bf2a890f36e3329b52d0516a14097623"
auth_token
=
"bf2a890f36e3329b52d0516a14097623"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment