Skip to content

Latest commit

 

History

History
96 lines (96 loc) · 3.6 KB

Structure.md

File metadata and controls

96 lines (96 loc) · 3.6 KB
PySnippets
├── pysnippets
│   ├── __init__.py
│   ├── documentation.md
│   ├── strings/
│   │   ├── __init__.py
│   │   ├── strings.md
│   │   ├── list_to_comma_string.py
│   │   ├── string_manipulation.py
│   ├── system/
│   │   ├── __init__.py
│   │   ├── system.md
│   │   ├── process_manager.py
│   │   ├── system_resource_monitor.py
│   │   ├── disk_space_checker.py
│   │   ├── temporary_file_handler.py
│   │   ├── environment_variable_manager.py
│   ├── stats/
│   │   ├── __init__.py
│   │   ├── stats.md
│   │   ├── quantile.py
│   │   ├── z_score_normalization.py
│   │   ├── variance.py
│   │   ├── standard_deviation.py
│   │   ├── mean_median_mode.py
│   ├── maths/
│   │   ├── __init__.py
│   │   ├── maths.md
│   │   ├── complex_number_operations.py
│   │   ├── polar_rectangular_conversion.py
│   │   ├── matrix_operations.py
│   │   ├── determinant.py
│   ├── numbers/
│   │   ├── __init__.py
│   │   ├── numbers.md
│   │   ├── number_formatting.py
│   ├── files/
│   │   ├── __init__.py
│   │   ├── files.md
│   │   ├── file_organizer.py
│   │   ├── file_reader.py
│   ├── analysis/
│   │   ├── __init__.py
│   │   ├── datautils.md
│   │   ├── datautils.py
│   │   ├── modelutils.md
│   │   ├── modelutils.py
│   ├── database/
│   │   ├── __init__.py
│   │   ├── database.md
│   │   │   ├── mysql/
│   │   │   │   ├── __init__.py
│   │   │   │   ├── sql_transaction_handling.py
│   │   │   │   ├── sql_data_insertion.py
│   │   │   │   ├── sql_schema_creation.py
│   │   │   │   ├── sql_connection_manager.py
│   │   │   │   ├── sql_query_executor.py
│   │   │   ├── mongodb/
│   │   │   │   ├── __init__.py
│   │   │   │   ├── mongo_connection_manager.py
│   │   │   │   ├── mongo_document_insertion.py
│   │   │   │   ├── mongo_document_query.py
│   │   │   │   ├── mongo_document_update.py
│   │   │   │   ├── mongo_index_management.py
├── Tests
│   ├── __init__.py 
│   ├── analysis/
│   │   ├── test_analysis.py
│   ├── files/
│   │   ├── test_file_organizer.py
│   │   ├── test_file_reader.py
│   ├── maths/
│   │   ├── test_complex_number.py
│   │   ├── test_matrix_operations.py
│   ├── numbers/
│   │   ├── test_number_formattig.py
│   ├── stats/
│   │   ├── test_data_distribution.py
│   │   ├── test_statistics.py
│   ├── strings/
│   │   ├── test_string_manipulation.py
│   │   ├── test_list_to_comma_string.py
│   ├── system/
│   │   ├── test_process_manager.py
│   │   ├── test_system_resource_monitor.py
│   │   ├── test_disk_space_checker.py
│   │   ├── test_environment_variable_manager.py
├───│   ├── test_temporary_file_handler.py
├── LICENSE
├── setup.py
├── README.md
├── Structure.md
├── CONTRIBUTING.md
├── CODE_OF_CONDUCT.md