raplets
Raplets to add value to GMail, including one to query World Adult Kickball Association (WAKA) website for player history and current team registration.
Science Score: 18.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
○codemeta.json file
-
○.zenodo.json file
-
○DOI references
-
○Academic links in README
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (1.4%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
·
Repository
Raplets to add value to GMail, including one to query World Adult Kickball Association (WAKA) website for player history and current team registration.
Basic Info
Statistics
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
- Releases: 0
Created almost 16 years ago
· Last pushed over 15 years ago
Metadata Files
Citation
Owner
- Name: Matt Bornski
- Login: mattbornski
- Kind: user
- Location: San Jose, CA
- Website: bornski.com/matt
- Repositories: 63
- Profile: https://github.com/mattbornski
Engineering leadership / Technical due diligence, mentorship, and acceleration / Sweat and money investments
Citation (citations/citations.py)
#!/usr/bin/env python
import re
import urllib2
# Register a custom User-Agent string so that people don't slam the
# door on us. Some people don't take kindly to unidentified robots.
opener = urllib2.build_opener()
opener.addheaders = [
('User-Agent', 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.19) Gecko/20081202 Firefox (Debian-2.0.0.19-0etch1)'),
]
urllib2.install_opener(opener)
def scholar(names = None, emails = None):
if names is not None and emails is not None:
query = u'http://scholar.google.com/scholar?q='
if len(emails) > 0:
query += urllib2.quote(emails[0])
for email in emails[1:]:
query += '+'
query += urllib2.quote(email)
if len(names) > 0:
if len(emails) > 0:
query += '+'
query += 'author:' + '+author:'.join(names)
query += '&'
query += 'hl=en&btnG=Search'#&as_sdt=2001'
page = urllib2.urlopen(query).read()
results = re.findall(
r'<div[^>]*gs_rt[^<]*<h3[^>]*>[^<]*<a[^>]*>([^<]*).*href="([^">]+)',
page)
return results
else:
return []
def process(args):
names = [] + args.get('name', '').split()
emails = []
if 'email' in args:
emails += [args['email']]
if len(names) + len(emails) > 0:
results = scholar(names, emails)
html = '<div class="citations">'
if len(results) > 0:
for result in results:
html += '<div class="citation"><a href="' + result[1] + '">' \
+ result[0] + '</a></div>'
else:
html += 'No citations info'
return {'html':html + '</div>'}
if __name__ == '__main__':
results = process(names = ['Luddy', 'Harrison'])
print results