Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Use of %%SAS
#1
I would to use %%SAS to execute SAS code in Python but I receive only this message: "this shouldn't happen".
I don't understand what I wrong.
The connection to SAS works but not when I use %%SAS.
Someone could help me?

pip install saspy

import saspy

MySAS = saspy.SASsession(cfgfile='C:\\Users\\D103165\\AppData\\Local\\Continuum\\anaconda3\\pkgs\\saspy-3.1.0-py_0\\site-packages\\saspy\\sascfg_personal.py')

MySAS.saslib("TABCOM", "BASE", "X:\\dircommerciale\\crm\\Tab_Comuni")
SASinPY = MySAS.sasdata("Stato_civile", "TABCOM")
SASinPY.head()

%%SAS
proc print data=sashelp.Citiyr;
run;
Using SAS Config named: default
Out[5]:
"this shouldn't happen"
Reply
#2
Where did you get the %%SAS syntax from? I'm not seeing that anywhere in the saspy documentation.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020