A Python program which parses the data in the coblob database and transforms into a format which the co-data project can use. One of the main goals of this project is to reduce the load on the CPU in the co-data project. https://www.craigoates.net/Software/project/17
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

11 lines
308 B

from services import parser_services
from coordinators import art_coordinator
def main():
args = parser_services.create_args()
art_coordinator.update_data(args)
# update_software_data(args) # Future update.
# update_article_data(args) # Future update.
if __name__ == "__main__":
main()