This file contains hidden or 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
| #! /usr/bin/env python3 | |
| import sys | |
| import os | |
| import subprocess | |
| from time import sleep | |
| ''' | |
| This is a hack that lets you sub to a bunch of users that are line-delimited in a file. | |
| The Dianara client currently can export such a list. |
This file contains hidden or 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
| #! /usr/bin/env python | |
| import sys | |
| import os | |
| import subprocess | |
| def getNoteText(fileText): | |
| for line in fileText: | |
| if line.find("<dl><dt>") >= 0: |
NewerOlder