9 lines
162 B
Python
Executable File
9 lines
162 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from harvester.harvester import harvest_readmes
|
|
|
|
if __name__ == "__main__":
|
|
harvest_readmes(
|
|
organization="mcovsandbox"
|
|
)
|