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

pasteurize 426 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
  1. #!/Users/daniellagrimberg/itc/first-repo/env/bin/python3
  2. # EASY-INSTALL-ENTRY-SCRIPT: 'future==0.18.2','console_scripts','pasteurize'
  3. __requires__ = 'future==0.18.2'
  4. import re
  5. import sys
  6. from pkg_resources import load_entry_point
  7. if __name__ == '__main__':
  8. sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
  9. sys.exit(
  10. load_entry_point('future==0.18.2', 'console_scripts', 'pasteurize')()
  11. )
Tip!

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

Comments

Loading...