config.py 524 B

12345678910111213141516171819
  1. import os
  2. folder_current = os.getcwd()
  3. folder_storage = 'storage'
  4. folder_plot = 'plot'
  5. folder_use = os.path.join(folder_current, folder_storage)
  6. folder_use_plot = os.path.join(folder_current, folder_plot)
  7. string_range = 30
  8. index_begin, index_end = 1, 2000001
  9. nats_subject = 'test_subject_4'
  10. nats_url = "nats://127.0.0.1:4222"
  11. value_x = [
  12. 100000, 200000, 300000, 400000, 500000, 600000, 700000, 800000, 900000, 1000000,
  13. 1100000, 1200000, 1300000, 1400000, 1500000, 1600000, 1700000, 1800000, 1900000, 2000000,
  14. ]