We are increasingly sharing our data and research in virtual environments. XR or extended reality platforms… XR Tools & Resources for Getting Started
VSim is a simple-to-use interface for exploring computer models of historic sites, environments, and objects. Designed to… VSim: An Interface for Academic 3D Models
Artsteps is a browser-based platform that uses Unity tools to allow users to build and share… Artsteps: Building VR Exhibitions
Welcome to the Advanced Practical Python for Automation and Data Visualization workshop, also referred to as… Advanced Practical Python for Automation and Data Visualization
Pete’s Python cookbook Attempting to ensure that Python 2.7 uses UTF-8 encoding internally and in all output:… Pete’s Python cookbook
This is code to extract article metadata and PDF download links for articles from bioRxiv, as… Web scraping: get article metadata and download PDF
This is code to download and save search page results from bioRxiv, one day at a time. It… Web scraping example: scrape article search pages iteratively
Syntax Like any language, computer or human, Python has some ground rules for being spoken. Welcome… And now for something completely different.
import sys, unittest, time, re, selenium class Sel(unittest.TestCase): def setUp(self): self.driver = webdriver.Firefox() print “waiting” self.driver.implicitly_wait(30)… Selenium Test