ContributionsMost RecentMost LikesSolutionsRe: Poll: SnapLogic Onboarding the community 🙂 Re: Standard python packages in the Script snap @ptaylor thanks for the reply! Did you mean of possibility to import other packages without having RPE set up? Can you please in that case share an example (or simple pipeline)? Standard python packages in the Script snap Hi guys, Can anyone supply a list of the available python packages for usage via the Script snap? Thanks in advance - Igor Re: Expression to keep leading zero in a number Hi @mtran21 What is the desired length with leading zeroes? you could have examples like 00123, 01234, or 00001. Under the assumption that you know the length, for example 5 here, then you could do something like: ("00000"+ $ MyNum.toString()).slice(-5) and you’ll always be having leading zeros and lengths == 5. HTH Re: Seclore encrypted file processing You have to use a Script snap. It supports JavaScript, Python and Ruby. Here is an article that uses Javascript Achieve Custom 256BIT AES/CBC/PKCS7 Encryption in SnapLogic Using Script Snap - ⋮IWConnect The basic python support with the Script snap is limited to some basic packages, but depending on the encryption you might be able to make a decryption However, if you additionally have the Snaplogic RPE you can use the Remote Python Script and try with many of the python’s packages for encr/decr. Re: Can see Tables not Views of DB It’s more practical to use the “Snowflake - Execute” snap and get the desired columns from the view. Just write in the SQL statement and execute. Re: Including payload in REST Get Snap Haven’t you looked with the Rest POST snap. Why do you must use the Rest Get with a payload? - not typical. Re: Parse Excel file with duplicate columns Hi @mohit, You can read-in the excel file with duplicate columns if you have the un-checked the “Contains headers” in the next “Excel Parser” snap Then with a mapper, you can remove the duplicate column and introduce a row number (snap.in.totalCount) column at the same time, because in the next step you’d want to filter the first row that contains the real Headers, … so ending up with something like this: Example pipeline attached: IM_remove_duplicate_columns_example_2021_01_05.slp (7.7 KB) /Igor Re: Email snap with both pipeline variables and HTML table? Hi @wpenfold You’re probably close to your goal. Make changes in your email sender snap like below: I guess your Template body is OK, i.e. in the HTML you should have something like ... <table> </table> <br> </body> </html> and before the email sender snap you should have a mapper like this one (note the $table object) that provides the $table: That should be enough /Igor Re: Convert array to object and remove empty array Hi @Cogenics, You can check this pipeline Convert_Array_to_Object_2020_12_14.slp (4.5 KB) /Igor