Skip to content

Python interfaces for lab instruments (Research in Experimental Physics)

License

Notifications You must be signed in to change notification settings

ptomato/REP-instrumentation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

REP-Instrumentation
Copyright (c) 2011 Philip Chimento

---

Contains Python interfaces to various lab instruments that I use.
Will be added and extended according to my own needs. If they help
you, so much the better. 

Wherever possible, modules implement the context manager protocol,
so that they can be used like this:

from Frobnitz3000 import *
with Frobnitz300 as frobnitz:
    data = frobnitz.measure_stuff()
    
If it's not feasible to use the context manager protocol, you can
also initialize and shut down the instruments like this:

frobnitz.open(parameters)
data = frobnitz.measure_stuff()
frobnitz.close()

---

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

About

Python interfaces for lab instruments (Research in Experimental Physics)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages