Code Monkey home page Code Monkey logo

Comments (7)

schercav avatar schercav commented on June 25, 2024 1

Hello,
Pytos should run on Tufin ST/SC servers and they run on Linux systems.

Shay

from pytos.

flymg avatar flymg commented on June 25, 2024

Oh that's it, ok I think i'm not the only one who got this wrong (see similar windows request)

We thought of this as a client library to do the thinks announced in the README, like a normal Python SDK.

There is no word about that big dependency that this is designed to run on the TUFIN Server only.

from pytos.

marioland avatar marioland commented on June 25, 2024

It is a pity that Pytos does not run on MacOS and Windows. For production we have it running under Debian and Suse and RedHat.

from pytos.

schercav avatar schercav commented on June 25, 2024

Hello,

Pytos should run on TOS,
but you can connect via SSH to use debug mode from your MacOS or windows.
This is how we use it.

Shay

from pytos.

marioland avatar marioland commented on June 25, 2024

Could you share some instructions how to attach the remote debugger, please?

from pytos.

schercav avatar schercav commented on June 25, 2024

https://www.jetbrains.com/help/pycharm/remote-debugging-with-product.html

from pytos.

geewrd avatar geewrd commented on June 25, 2024

You can remove the references to FileMonitor in the following code, which will remove the inotify dependency:

from pytos.common.functions.file_monitor import FileMonitor
logger = logging.getLogger(COMMON_LOGGER_NAME)
class Secure_Config_Parser(configparser.ConfigParser, FileMonitor):
"""This class is used to parse the Tufin PS library configuration files"""
COMMON = "common"
CUSTOM = "custom"
SECURECHANGE = "securechange"
SECURETRACK = "securetrack"
LOG_LEVELS = "log_levels"
DEFAULT_SECTIONS = (COMMON, LOG_LEVELS, SECURETRACK, SECURECHANGE)
def __init__(self, config_file_path, custom_config_file_path=None):
configparser.ConfigParser.__init__(self)
self.config_file_path = config_file_path
self.custom_config_file_path = custom_config_file_path
if custom_config_file_path is not None:
args = (config_file_path, custom_config_file_path)
else:
args = (config_file_path, )
FileMonitor.__init__(self, args)

pyinotify==0.9.6

from pytos.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.