Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

winwcpio.py 521 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. from neo.io.basefromrawio import BaseFromRaw
  3. from neo.rawio.winwcprawio import WinWcpRawIO
  4. class WinWcpIO(WinWcpRawIO, BaseFromRaw):
  5. """
  6. Class for reading data from WinWCP, a software tool written by
  7. John Dempster.
  8. WinWCP is free:
  9. http://spider.science.strath.ac.uk/sipbs/software.htm
  10. """
  11. _prefered_signal_group_mode = 'split-all'
  12. def __init__(self, filename):
  13. WinWcpRawIO.__init__(self, filename=filename)
  14. BaseFromRaw.__init__(self, filename)