1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-04 19:40:02 +03:00

[2051] Utilities Quick Pass

This commit is contained in:
David Sangrey 2023-11-16 16:14:59 -05:00
parent c7c6d5eed7
commit 8693c1a667
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC
2 changed files with 16 additions and 4 deletions

View File

@ -1,4 +1,10 @@
"""Utilities for dealing with text (and byte representations thereof)."""
"""
text.py - Dealing with Text and Bytes.
Copyright (c) EDCD, All Rights Reserved
Licensed under the GNU General Public License.
See LICENSE file.
"""
from __future__ import annotations
from gzip import compress

View File

@ -1,4 +1,10 @@
"""Utility functions relating to ships."""
"""
util_ships.py - Ship Utilities.
Copyright (c) EDCD, All Rights Reserved
Licensed under the GNU General Public License.
See LICENSE file.
"""
from edmc_data import ship_name_map
@ -11,6 +17,6 @@ def ship_file_name(ship_name: str, ship_type: str) -> str:
if name.lower() in ('con', 'prn', 'aux', 'nul',
'com0', 'com2', 'com3', 'com4', 'com5', 'com6', 'com7', 'com8', 'com9',
'lpt0', 'lpt2', 'lpt3', 'lpt4', 'lpt5', 'lpt6', 'lpt7', 'lpt8', 'lpt9'):
name = name + '_'
name += '_'
return name.translate({ord(x): u'_' for x in ('\0', '<', '>', ':', '"', '/', '\\', '|', '?', '*')})
return name.translate({ord(x): '_' for x in ('\0', '<', '>', ':', '"', '/', '\\', '|', '?', '*')})