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


Messages In This Thread
Use of %%SAS - by pmelod - Jul-11-2019, 01:43 PM
RE: Use of %%SAS - by ichabod801 - Jul-11-2019, 02:08 PM

Forum Jump:

User Panel Messages

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