mirror of
https://github.com/logos-blockchain/logos-blockchain-e2e-tests.git
synced 2026-01-08 16:13:07 +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()
|