mirror of
https://github.com/logos-blockchain/logos-blockchain-e2e-tests.git
synced 2026-01-02 13:13:08 +00:00
11 lines
124 B
Python
11 lines
124 B
Python
import nltk
|
|
|
|
|
|
def main():
|
|
nltk.download("punkt")
|
|
nltk.download("punkt_tab")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|