Browse Source

Merge pull request #1 from joyeusenoelle/dev

Handle filenames
master
Noëlle Anthony 5 years ago
parent
commit
f51d271cf8
No account linked to committer's email address
1 changed files with 11 additions and 2 deletions
  1. 11
    2
      pyris.py

+ 11
- 2
pyris.py View File

@@ -15,12 +15,21 @@ class Citation:
self.fn, self.ext = ".".join(chunks[:-1]), chunks[-1]
else: # has one period in filename
self.fn, self.ext = chunks[0], chunks[1]
with open(filename, 'r') as f:
self.contents = f.read()
self.outfile = self.fn + ".ris"

def toString(self):
return "Current file: {}.{}".format(self.fn, self.ext)
rstr = "Current infile: {}.{}".format(self.fn, self.ext)
rstr += "\n"
rstr += "Current outfile: {}".format(self.outfile)
return rstr

def print(self):
print("Current file: {}.{}").format(self.fn, self.ext)
rstr = "Current infile: {}.{}".format(self.fn, self.ext)
rstr += "\n"
rstr += "Current outfile: {}".format(self.outfile)
print(rstr)

def main(filename):
cite = Citation(filename)

Loading…
Cancel
Save