This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><title>Frontier Counts - Web App</title><style> | |
/* cspell:disable-file */ | |
/* webkit printing magic: print all background colors */ | |
html { | |
-webkit-print-color-adjust: exact; | |
} | |
* { | |
box-sizing: border-box; | |
-webkit-print-color-adjust: exact; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
from bs4 import BeautifulSoup | |
from collections import Counter | |
def get_organizations(url): | |
''' | |
(String) ->() | |
Adding names of all organizations listed in the given GSOC url | |
''' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
saspy provides Python APIs to the SAS environment. | |
Configuring SASPy on Windows 7: | |
1. Create a python file by the name of "sascfg_personal.py" at C:\\Program Files\\Anaconda3\\lib\\site-packages\\saspy | |
2. Fill file with following: | |
SAS_config_names = ['winlocal'] | |
# Windows client class path | |
# build out a local classpath variable to use below for Linux clients CHANGE THE PATHS TO BE CORRECT FOR YOUR INSTALLATION | |
cpW = "C:\Program Files\SASHome\SASDeploymentManager\9.4\products\deploywiz__94435__prt__xx__sp0__1\deploywiz\sas.svc.connection.jar" |