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

jsonpath_ng 278 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
  1. #!/Users/daniellagrimberg/itc/first-repo/env/bin/python3
  2. # -*- coding: utf-8 -*-
  3. import re
  4. import sys
  5. from jsonpath_ng.bin.jsonpath import entry_point
  6. if __name__ == '__main__':
  7. sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
  8. sys.exit(entry_point())
Tip!

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

Comments

Loading...