You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.5 KiB
Python

1 year ago
import feedparser
1 year ago
from optparse import OptionParser
from configparser import ConfigParser
1 year ago
def main(config):
feed = feedparser.parse(config.get('locations', 'feed'))
# print(len(feed.entries))
# print(feed.entries[0].link)
with open(config.get('locations', 'output'), 'r') as file:
lines = [line.rstrip() for line in file]
# print(lines)
newworks = 0
with open(config.get('locations', 'output'), 'a') as f: #input=/config/fanfiction_file #output=/output/fanfiction_file
#/Users/sam/Desktop/workspace/FFFRssLinkGrabber/root/config.default/fanfiction_file
1 year ago
for entry in feed.entries:
if entry.link not in lines:
newworks += 1
f.write(f"{entry.link}\n")
print(f"Added {newworks} works out of {len(feed.entries)} works to list.")
1 year ago
if __name__ == "__main__":
option_parser = OptionParser(usage="usage: %prog [flags]")
option_parser.add_option(
'-c',
'--config',
action='store',
dest='config',
help='Config file for inputs. Blank config file is provided. No default. If an option is present in whatever config file is passed it, the option will overwrite whatever is passed in through command line arguments unless the option is blank. Do not put any quotation marks in the options.')
(options, args) = option_parser.parse_args()
if options.config:
config = ConfigParser(allow_no_value=True)
config.read(options.config)
main(config)