Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

tasks.py 410 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  1. import sys
  2. from pathlib import Path
  3. import subprocess as sp
  4. import os
  5. from invoke import task, Collection
  6. import ratings, support, viaf, openlib, loc
  7. ns = Collection()
  8. ns.add_collection(support)
  9. ns.add_collection(ratings)
  10. ns.add_collection(viaf)
  11. ns.add_collection(openlib)
  12. ns.add_collection(loc)
  13. if __name__ == '__main__':
  14. import invoke.program
  15. program = invoke.program.Program()
  16. program.run()
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...