{"id":50680134,"url":"https://github.com/rrennoir/PyAccSharedMemory","last_synced_at":"2026-07-13T23:00:38.858Z","repository":{"id":39945742,"uuid":"364703825","full_name":"rrennoir/PyAccSharedMemory","owner":"rrennoir","description":"ACC shared memory reader written in python","archived":false,"fork":false,"pushed_at":"2022-09-19T21:32:50.000Z","size":802,"stargazers_count":63,"open_issues_count":5,"forks_count":7,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-02-18T07:19:30.430Z","etag":null,"topics":["assetto-corsa-competizione","shared-memory"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rrennoir.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-05-05T20:56:27.000Z","updated_at":"2026-01-22T11:52:41.000Z","dependencies_parsed_at":"2022-09-09T23:21:15.526Z","dependency_job_id":null,"html_url":"https://github.com/rrennoir/PyAccSharedMemory","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/rrennoir/PyAccSharedMemory","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrennoir%2FPyAccSharedMemory","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrennoir%2FPyAccSharedMemory/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrennoir%2FPyAccSharedMemory/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrennoir%2FPyAccSharedMemory/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rrennoir","download_url":"https://codeload.github.com/rrennoir/PyAccSharedMemory/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rrennoir%2FPyAccSharedMemory/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35439213,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-13T02:00:06.543Z","response_time":119,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["assetto-corsa-competizione","shared-memory"],"created_at":"2026-06-08T18:00:31.969Z","updated_at":"2026-07-13T23:00:38.852Z","avatar_url":"https://github.com/rrennoir.png","language":"Python","funding_links":[],"categories":["Sim Racing"],"sub_categories":["Media and Analysis"],"readme":"# PyAccSharedMemory\n\nACC shared memory reader written in python 😀.\n\n- [PyAccSharedMemory](#pyaccsharedmemory)\n  - [Installation](#installation)\n  - [Usage](#usage)\n  - [DataClass](#dataclass)\n    - [ACC_map](#acc_map)\n    - [PhysicsMap](#physicsmap)\n    - [GraphicsMap](#graphicsmap)\n    - [StaticsMap](#staticsmap)\n    - [Wheels](#wheels)\n    - [CarDamage](#cardamage)\n    - [Vector3f](#vector3f)\n    - [ContactPoint](#contactpoint)\n  - [additional information](#additional-information)\n    - [Enums](#enums)\n      - [ACC_STATUS](#acc_status)\n      - [ACC_SESSION_TYPE](#acc_session_type)\n      - [ACC_FLAG_TYPE](#acc_flag_type)\n      - [ACC_PENALTY_TYPE](#acc_penalty_type)\n      - [ACC_TRACK_GRIP_STATUS](#acc_track_grip_status)\n      - [ACC_RAIN_INTENSITY](#acc_rain_intensity)\n    - [Car Model](#car-model)\n      - [GT3](#gt3)\n      - [GT4](#gt4)\n      - [TC](#tc)\n      - [Cup cars](#cup-cars)\n\n## Installation\n\nSimply install the package or copy the pyaccsharedmemory.py file in your project\n\n`pip install pyaccsharedmemory`\n\n## Usage\n\nBasic code example.\n\n```py\nfrom pyaccsharedmemory import accSharedMemory\n\nasm = accSharedMemory()\nsm = asm.read_shared_memory()\n\nif (sm is not None):\n    print(\"Physics:\")\n    print(f\"Pad life: {sm.Physics.pad_life}\")\n\n    print(\"Graphics:\")\n    print(f\"Strategy tyre set: {sm.Graphics.penalty.name}\")\n\n    print(\"Static: \")\n    print(f\"Max RPM: {sm.Static.max_rpm}\")\n\nasm.close()\n```\n\n## DataClass\n\nDescription are moslty a copy past of the ACCSharedMemoryDocumentationV1.x.x.pdf\n\n### ACC_map\n\n| Field    | Type                        | Description                                                                                                                                                      |\n| -------- | --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| Physics  | [PhysicsMap](#physicsmap)   | Data that change at each graphic step. They all refer to the player’s car.                                                                                       |\n| Graphics | [GraphicsMap](#graphicsmap) | Data that are updated at each graphical step. They mostly refer to player’s car except for carCoordinates and carID, which refer to the cars currently on track. |\n| Statics  | [StaticsMap](#staticsmap)   | Data that are initialized when the instance starts and never changes until the instance is closed.                                                               |\n\n### PhysicsMap\n\n| Field                | Type                              | Description                                      | Comment                        |\n| -------------------- | --------------------------------- | ------------------------------------------------ | ------------------------------ |\n| packed_id            | int                               | Current step index                               |                                |\n| gas                  | float                             | Gas pedal input value                            | From 0.0 to 1.0                |\n| brake                | float                             | Brake pedal input value                          | From 0.0 to 1.0                |\n| fuel                 | float                             | Amount of fuel remaining in liters               |                                |\n| gear                 | int                               | Current gear                                     |                                |\n| rpm                  | int                               | engine rpm                                       |                                |\n| steer_angle          | float                             | Steering input value                             | From 0.0 to 1.0                |\n| speed_kmh            | float                             | Car speed                                        |                                |\n| velocity             | [Vector3f](#vector3f)             | Car velocity vector in global coordinates        | Contain 3 floats x, y, z       |\n| g_force              | [Vector3f](#vector3f)             | Car acceleration vector in global coordinates    | Contain 3 floats x, y, z       |\n| wheel_slip           | [Wheels](#wheels)                 | Tyre slip for each tyre                          |                                |\n| wheel_pressure       | [Wheels](#wheels)                 | Tyre pressure                                    |                                |\n| wheel_angular_s      | [Wheels](#wheels)                 | Wheel angular speed in rad/s                     |                                |\n| tyre_core_temp       | [Wheels](#wheels)                 | Tyre rubber core temperature                     |                                |\n| suspension_travel    | [Wheels](#wheels)                 | Suspension travel                                |                                |\n| tc                   | float                             | TC in action                                     |                                |\n| heading              | float                             | Car yaw orientation                              |                                |\n| pitch                | float                             | Car pitch orientation                            |                                |\n| roll                 | float                             | Car roll orientation                             |                                |\n| car_damage           | [CarDamage](#cardamage)           | Car damage                                       |                                |\n| pit_limiter_on       | bool                              | Pit limiter is on                                |                                |\n| abs                  | float                             | ABS in action                                    |                                |\n| autoshifter_on       | bool                              | Automatic transmission on                        |                                |\n| turbo_boost          | float                             | Car turbo level                                  |                                |\n| air_temp             | float                             | Air temperature                                  |                                |\n| road_temp            | float                             | Road temperature                                 |                                |\n| local_angular_vel    | [Vector3f](#vector3f)             | Car angular velocity vector in local coordinates | Contain 3 floats x, y, z       |\n| final_ff             | float                             | Force feedback signal                            |                                |\n| brake_temp           | [Wheels](#wheels)                 | Brake discs temperatures                         |                                |\n| clutch               | float                             | Clutch pedal input value                         | From 0.0 to 1.0                |\n| is_ai_controlled     | bool                              | Car is controlled by the AI                      |                                |\n| tyre_contact_point   | List of [ContactPoint](#vector3f) | Tyre contact point global coordinates            |                                |\n| tyre_contact_normal  | List of [ContactPoint](#vector3f) | Tyre contact normal                              |                                |\n| tyre_contact_heading | List of [ContactPoint](#vector3f) | Tyre contact heading                             |                                |\n| brake_bias           | float                             | Front brake bias                                 |                                |\n| local_velocity       | [Vector3f](#vector3f)             | Car velocity vector in local coordinates         |                                |\n| slit_ratio           | [Wheels](#wheels)                 | Tyre slip ratio                                  |                                |\n| slit_angle           | [Wheels](#wheels)                 | Tyre slip angle                                  |                                |\n| suspension_damage    | [Wheels](#wheels)                 | Damage of the suspension                         | From 0.0 to 0.1 (x30 for in s) |\n| water_temp           | float                             | Water Temperature                                |                                |\n| brake_pressure       | float                             | Brake pressure                                   |                                |\n| front_brake_compound | int                               | Brake pad compund front                          |                                |\n| rear_brake_compound  | int                               | Brake pad compund rear                           |                                |\n| pad_life             | [Wheels](#wheels)                 | Brake pad wear                                   | Pad start at 29mm              |\n| disc_life            | [Wheels](#wheels)                 | Brake disk wear                                  | Disc start at 32mm             |\n| ignition_on          | bool                              | Ignition is on                                   |                                |\n| starter_engine_on    | bool                              | Engine starter on                                |                                |\n| is_engine_running    | bool                              | Engine running                                   |                                |\n| kerb_vibration       | float                             | Kerb vibrations sent to the FFB                  |                                |\n| slip_vibration       | float                             | Slip vibrations sent to the FFB                  |                                |\n| g_vibration          | float                             | G force vibrations sent to the FFB               |                                |\n| abs_vibration        | float                             | Abs vibrations sent to the FFB                   |                                |\n\n### GraphicsMap\n\n| Field                        | Type                                            | Description                                   | Comment                                                                       |\n| ---------------------------- | ----------------------------------------------- | --------------------------------------------- | ----------------------------------------------------------------------------- |\n| packed_id                    | int                                             | Current step index                            |                                                                               |\n| status                       | [ACC_STATUS](#acc_status)                       |                                               |                                                                               |\n| session_type                 | [ACC_SESSION_TYPE](#acc_session_type)           |                                               |                                                                               |\n| current_time_str             | string                                          | Current lap time in string                    | Limited to 15 char                                                            |\n| last_time_str                | string                                          | Last lap time in string                       | Limited to 15 char                                                            |\n| best_time_str                | string                                          | Best lap time in string                       | Limited to 15 char                                                            |\n| last_sector_time_str         | string                                          | Last split time in wide string                | Limited to 15 char                                                            |\n| completed_lap                | int                                             | Number of completed laps                      |                                                                               |\n| position                     | int                                             | Current player position                       |                                                                               |\n| current_time                 | int                                             | Current lap time in milliseconds              |                                                                               |\n| last_time                    | int                                             | Last lap time in milliseconds                 |                                                                               |\n| best_time                    | int                                             | Best lap time in milliseconds                 |                                                                               |\n| session_time_left            | float                                           | Session time left                             |                                                                               |\n| distance_traveled            | float                                           | Distance travelled in the current stint       |                                                                               |\n| is_in_pit                    | bool                                            | Car is pitting                                |                                                                               |\n| current_sector_index         | int                                             | Current track sector                          |                                                                               |\n| last_sector_time             | int                                             | Last sector time in milliseconds              |                                                                               |\n| number_of_laps               | int                                             | Number of completed laps                      | Only has a value when the session is over                                     |\n| tyre_compound                | string                                          | Tyre compound used                            |                                                                               |\n| normalized_car_position      | float                                           | Car position on track spline                  |                                                                               |\n| active_cars                  | int                                             | Number of cars on track                       |                                                                               |\n| car_coordinates              | List of [Vector3f](#vector3f)                   | Coordinates of cars on track                  | 60 car max                                                                    |\n| car_id                       | List of int                                     | Car IDs of cars on track                      | 60 car max                                                                    |\n| player_car_id                | int                                             | Player Car ID                                 |                                                                               |\n| penaltyTime                  | float                                           | Penalty time to wait                          |                                                                               |\n| flag                         | [ACC_FLAG_TYPE](#acc_flag_type)                 |                                               |                                                                               |\n| penalty                      | [ACC_PENALTY_TYPE](#acc_penalty_type)           |                                               | Added DSQ for driving the wrong way with value 22, 18 seems not used anymore. |\n| ideal_line_on                | bool                                            | Ideal line on                                 |                                                                               |\n| is_in_pit_lane               | bool                                            | Car is in pit lane                            |                                                                               |\n| mandatory_pit_done           | bool                                            | Mandatory pit is completed                    |                                                                               |\n| wind_speed                   | float                                           | Wind speed                                    | In m/s                                                                        |\n| wind_direction               | float                                           | wind direction                                | In Radian                                                                     |\n| is_setup_menu_visible        | bool                                            | Is in setup menu                              |                                                                               |\n| main_display_index           | int                                             | Current car main display index                |                                                                               |\n| secondary_display_index      | int                                             | Current car secondary display index           |                                                                               |\n| tc_level                     | int                                             | Traction control level                        |                                                                               |\n| tc_cut_level                 | int                                             | Traction control cut level                    |                                                                               |\n| engine_map                   | int                                             | Current engine map                            |                                                                               |\n| abs_level                    | int                                             | ABS level                                     |                                                                               |\n| fuel_per_lap                 | float                                           | Average fuel consumed per lap in liters       |                                                                               |\n| rain_light                   | bool                                            | Rain lights on                                |                                                                               |\n| flashing_light               | bool                                            | Flashing lights on                            |                                                                               |\n| light_stage                  | int                                             | Current lights stage                          |                                                                               |\n| exhaust_temp                 | float                                           | Exhaust temperature                           |                                                                               |\n| wiper_stage                  | int                                             | Current wiper stage                           |                                                                               |\n| driver_stint_total_time_left | int                                             | Time the driver is allowed to drive/race      | In millisecond                                                                |\n| driver_stint_time_left       | int                                             | Timethe driverisallowed to drive/stint        | In millisecond                                                                |\n| rain_tyres                   | bool                                            | Are rain tyres equipped                       |                                                                               |\n| session_index                | int                                             |                                               | idk wtf is this                                                               |\n| used_fuel                    | float                                           | Used fuel since last time refueling           |                                                                               |\n| delta_lap_time_str           | string                                          | Delta time in string                          |                                                                               |\n| delta_lap_time               | int                                             | Delta time time in milliseconds               |                                                                               |\n| estimated_lap_time_str       | string                                          | Estimated lap time in string                  |                                                                               |\n| estimated_lap_time           | int                                             | Estimated lap time in milliseconds            |                                                                               |\n| is_delta_positive            | bool                                            | Is delta positive                             |                                                                               |\n| last_sector_time             | int                                             | Last split time in milliseconds               |                                                                               |\n| is_valid_lap                 | bool                                            | Is Lap is valid for timing                    |                                                                               |\n| fuel_estimated_laps          | float                                           | Laps possible with current fuel level         |                                                                               |\n| track_status                 | string                                          | Track status                                  | Green, Fast, Optimum, Greasy, Damp, Wet, Flooded                              |\n| missing_mandatory_pits       | int                                             | Mandatory pitstops the player still has to do |                                                                               |\n| clock                        | int                                             | Time of day in secondso                       |                                                                               |\n| direction_light_left         | bool                                            | Is Blinker left on                            |                                                                               |\n| direction_light_right        | bool                                            | Is Blinker right on                           |                                                                               |\n| global_yellow                | bool                                            | Yellow Flag is out ?                          |                                                                               |\n| global_yellow_s1             | bool                                            | Yellow Flag in Sector 1 is out ?              |                                                                               |\n| global_yellow_s2             | bool                                            | Yellow Flag in Sector 2 is out ?              |                                                                               |\n| global_yellow_s3             | bool                                            | Yellow Flag in Sector 3 is out ?              |                                                                               |\n| global_white                 | bool                                            | White Flag is out ?                           |                                                                               |\n| global_green                 | bool                                            | Green Flag is out ?                           |                                                                               |\n| global_chequered             | bool                                            | CheckeredFlag is out ?                        |                                                                               |\n| global_red                   | bool                                            | RedFlag is out ?                              |                                                                               |\n| mfd_tyre_set                 | int                                             | Number of tyre set on the MFD                 |                                                                               |\n| mfd_fuel_to_add              | float                                           | How much fuel to add on the MFD               |                                                                               |\n| mfd_tyre_pressure            | [Wheels](#wheels)                               | Tyre pressure to add                          |                                                                               |\n| track_grip_status            | [ACC_TRACK_GRIP_STATUS](#acc_track_grip_status) | Track grip status                             |                                                                               |\n| rain_intensity               | [ACC_RAIN_INTENSITY](#acc_rain_intensity)       | Rain intensity                                |                                                                               |\n| rain_intensity_in_10min      | [ACC_RAIN_INTENSITY](#acc_rain_intensity)       | Rain intensity in 10 min                      |                                                                               |\n| rain_intensity_in_30min      | [ACC_RAIN_INTENSITY](#acc_rain_intensity)       | Rain intensity in 30 min                      |                                                                               |\n| current_tyre_set             | int                                             | Tyre Set currently in use                     |                                                                               |\n| strategy_tyre_set            | int                                             | Next tyre set per strategy                    | Original tyre set used for this strategy                                      |\n| gap_ahead                    | int                                             | Gap to the next car in ms                     |                                                                               |\n| gap_behind                   | int                                             | Gap to the previous car in ms                 |                                                                               |\n\n### StaticsMap\n\n| Field                 | Type   | Description                 | Comment                    |\n| --------------------- | ------ | --------------------------- | -------------------------- |\n| sm_version            | string | Shared memory version       |                            |\n| ac_version            | string | Assetto Corsa version       |                            |\n| number_of_session     | int    | Number of sessions          |                            |\n| num_cars              | int    | Number of cars              |                            |\n| car_model             | string | Name of the car             | see [carmodel](#car-model) |\n| track                 | string | Track name                  |                            |\n| player_name           | string | Player name                 |                            |\n| player_surname        | string | Player surname              |                            |\n| player_nick           | string | Player nickname             |                            |\n| sector_count          | int    | Number of sectors           |                            |\n| max_rpm               | int    | Maximum rpm                 |                            |\n| max_fuel              | float  | Maximum fuel tank capacity  | why float ? idk ask kunos  |\n| penalty_enabled       | bool   | Penalties enabled           |                            |\n| aid_fuel_rate         | float  | Fuel consumption rate       | from 0.0 to 1.0            |\n| aid_tyre_rate         | float  | Tyre wear rate              | from 0.0 to 1.0            |\n| aid_mechanical_damage | float  | Mechanical damage rate      | from 0.0 to 1.0            |\n| aid_stability         | float  | Stability control used      | from 0.0 to 1.0            |\n| aid_auto_clutch       | bool   | Auto clutch used            |                            |\n| pit_window_start      | int    | Pit window opening time     |                            |\n| pit_window_end        | int    | Pit windows closing time    |                            |\n| is_online             | bool   | If is a multiplayer session |                            |\n| dry_tyres_name        | string | Name of the dry tyres       |                            |\n| wet_tyres_name        | string | Name of the wet tyres       |                            |\n\n### Wheels\n\n| Field       | Type  | Description      | Comment |\n| ----------- | ----- | ---------------- | ------- |\n| front_left  | float | Front left tyre  |         |\n| front_right | float | Front right tyre |         |\n| rear_left   | float | Rear left tyre   |         |\n| rear_right  | float | Rear right tyre  |         |\n\n### CarDamage\n\n| Field  | Type  | Description                    | Comment                                                        |\n| ------ | ----- | ------------------------------ | -------------------------------------------------------------- |\n| front  | float | Damage at the front of the car | from 0.0 to idfk (multiply by 0.284 to get the time in second) |\n| rear   | float | Damage at the rear of the car  | from 0.0 to idfk (multiply by 0.284 to get the time in second) |\n| left   | float | Damage at the left of the car  | from 0.0 to idfk (multiply by 0.284 to get the time in second) |\n| right  | float | Damage at the right of the car | from 0.0 to idfk (multiply by 0.284 to get the time in second) |\n| center | float | Total damage of the car        | from 0.0 to idfk (multiply by 0.284 to get the time in second) |\n\n### Vector3f\n\n| Field | Type  |\n| ----- | ----- |\n| x     | float |\n| y     | float |\n| z     | float |\n\n### ContactPoint\n\n| Field       | Type                  |\n| ----------- | --------------------- |\n| front_left  | [Vector3f](#vector3f) |\n| front_right | [Vector3f](#vector3f) |\n| rear_left   | [Vector3f](#vector3f) |\n| rear_right  | [Vector3f](#vector3f) |\n\n## additional information\n\n### Enums\n\n#### ACC_STATUS\n\n| Name       | Value |\n| ---------- | ----- |\n| ACC_OFF    | 0     |\n| ACC_REPLAY | 1     |\n| ACC_LIVE   | 2     |\n| ACC_PAUSE  | 3     |\n\n#### ACC_SESSION_TYPE\n\n| Name                | Value |\n| ------------------- | ----- |\n| ACC_UNKNOW          | -1    |\n| ACC_PRACTICE        | 0     |\n| ACC_QUALIFY         | 1     |\n| ACC_RACE            | 2     |\n| ACC_HOTLAP          | 3     |\n| ACC_TIME_ATTACK     | 4     |\n| ACC_DRIFT           | 5     |\n| ACC_DRAG            | 6     |\n| ACC_HOTSTINT        | 7     |\n| ACC_HOTLAPSUPERPOLE | 8     |\n\n#### ACC_FLAG_TYPE\n\n| Name               | Value |\n| ------------------ | ----- |\n| ACC_NO_FLAG        | 0     |\n| ACC_BLUE_FLAG      | 1     |\n| ACC_YELLOW_FLAG    | 2     |\n| ACC_BLACK_FLAG     | 3     |\n| ACC_WHITE_FLAG     | 4     |\n| ACC_CHECKERED_FLAG | 5     |\n| ACC_PENALTY_FLAG   | 6     |\n| ACC_GREEN_FLAG     | 7     |\n| ACC_ORANGE_FLAG    | 8     |\n\n#### ACC_PENALTY_TYPE\n\n| Name                                  | Value |\n| ------------------------------------- | ----- |\n| Unknown                               | -1    |\n| No_penalty                            | 0     |\n| DriveThrough_Cutting                  | 1     |\n| StopAndGo_10_Cutting                  | 2     |\n| StopAndGo_20_Cutting                  | 3     |\n| StopAndGo_30_Cutting                  | 4     |\n| Disqualified_Cutting                  | 5     |\n| RemoveBestLaptime_Cutting             | 6     |\n| DriveThrough_PitSpeeding              | 7     |\n| StopAndGo_10_PitSpeeding              | 8     |\n| StopAndGo_20_PitSpeeding              | 9     |\n| StopAndGo_30_PitSpeeding              | 10    |\n| Disqualified_PitSpeeding              | 11    |\n| RemoveBestLaptime_PitSpeeding         | 12    |\n| Disqualified_IgnoredMandatoryPit      | 13    |\n| PostRaceTime                          | 14    |\n| Disqualified_Trolling                 | 15    |\n| Disqualified_PitEntry                 | 16    |\n| Disqualified_PitExit                  | 17    |\n| ~~Disqualified_WrongWay~~  ????       | 18    |\n| DriveThrough_IgnoredDriverStint       | 19    |\n| Disqualified_IgnoredDriverStint       | 20    |\n| Disqualified_ExceededDriverStintLimit | 21    |\n| Disqualified_WrongWay                 | 22    |\n\n#### ACC_TRACK_GRIP_STATUS\n\n| Name        | Value |\n| ----------- | ----- |\n| ACC_GREEN   | 0     |\n| ACC_FAST    | 1     |\n| ACC_OPTIMUM | 2     |\n| ACC_GREASY  | 3     |\n| ACC_DAMP    | 4     |\n| ACC_WET     | 5     |\n| ACC_FLOODED | 6     |\n\n#### ACC_RAIN_INTENSITY\n\n| Name             | Value |\n| ---------------- | ----- |\n| ACC_NO_RAIN      | 0     |\n| ACC_DRIZZLE      | 1     |\n| ACC_LIGHT_RAIN   | 2     |\n| ACC_MEDIUM_RAIN  | 3     |\n| ACC_HEAVY_RAIN   | 4     |\n| ACC_THUNDERSTORM | 5     |\n\n### Car Model\n\n#### GT3\n\n| Name                                | Kunos ID                     |\n| ----------------------------------- | ---------------------------- |\n| Aston Martin Vantage V12 GT3 2013   | amr_v12_vantage_gt3          |\n| Audi R8 LMS 2015                    | audi_r8_lms                  |\n| Bentley Continental GT3 2015        | bentley_continental_gt3_2016 |\n| Bentley Continental GT3 2018        | bentley_continental_gt3_2018 |\n| BMW M6 GT3 2017                     | bmw_m6_gt3                   |\n| Emil Frey Jaguar G3 2012            | jaguar_g3                    |\n| Ferrari 488 GT3 2018                | ferrari_488_gt3              |\n| Honda NSX GT3 2017                  | honda_nsx_gt3                |\n| Lamborghini Gallardo G3 Reiter 2017 | lamborghini_gallardo_rex     |\n| Lamborghini Huracan GT3 2015        | lamborghini_huracan_gt3      |\n| Lexus RCF GT3 2016                  | lexus_rc_f_gt3               |\n| McLaren 650S GT3 2015               | mclaren_650s_gt3             |\n| Mercedes AMG GT3 2015               | mercedes_amg_gt3             |\n| Nissan GTR Nismo GT3 2015           | nissan_gt_r_gt3_2017         |\n| Nissan GTR Nismo GT3 2018           | nissan_gt_r_gt3_2018         |\n| Porsche 991 GT3 R 2018              | porsche_991_gt3_r            |\n| Aston Martin V8 Vantage GT3 2019    | amr_v8_vantage_gt3           |\n| Audi R8 LMS Evo 2019                | audi_r8_lms_evo              |\n| Honda NSX GT3 Evo 2019              | honda_nsx_gt3_evo            |\n| Lamborghini Huracan GT3 EVO 2019    | lamborghini_huracan_gt3_evo  |\n| McLaren 720S GT3 2019               | mclaren_720s_gt3             |\n| Porsche 911 II GT3 R 2019           | porsche_991ii_gt3_r          |\n| Ferrari 488 GT3 Evo 2020            | ferrari_488_gt3_evo          |\n| Mercedes AMG GT3 Evo 2020           | mercedes_amg_gt3_evo         |\n| BMW M4 GT3 2021                     | bmw_m4_gt3                   |\n| Audi R8 LMS Evo II 2022             | audi_r8_lms_evo_ii           |\n\n#### GT4\n\n| Name                              | Kunos ID                  |\n| --------------------------------- | ------------------------- |\n| Alpine A110 GT4 2018              | alpine_a110_gt4           |\n| Aston Martin Vantage AMR GT4 2018 | amr_v8_vantage_gt4        |\n| Audi R8 LMS GT4 2016              | audi_r8_gt4               |\n| BMW M4 GT4 2018                   | bmw_m4_gt4                |\n| Chevrolet Camaro GT4 R 2017       | chevrolet_camaro_gt4r     |\n| Ginetta G55 GT4 2012              | ginetta_g55_gt4           |\n| Ktm Xbow GT4 2016                 | ktm_xbow_gt4              |\n| Maserati Gran Turismo MC GT4 2016 | maserati_mc_gt4           |\n| McLaren 570s GT4 2016             | mclaren_570s_gt4          |\n| Mercedes AMG GT4 2016             | mercedes_amg_gt4          |\n| Porsche 718 Cayman GT4 MR 2019    | porsche_718_cayman_gt4_mr |\n\n#### TC\n\n| Name            | Kunos ID         |\n| --------------- | ---------------- |\n| BMW M2 Cup 2020 | bmw_m2_cs_racing |\n\n#### Cup cars\n\n| Name                             | Kunos ID                    |\n| -------------------------------- | --------------------------- |\n| Porsche9 91 II GT3 Cup 2017      | porsche_991ii_gt3_cup       |\n| Lamborghini Huracan ST 2015      | lamborghini_huracan_st      |\n| Ferrari 488 Challenge Evo 2020   | ferrari_488_challenge_evo   |\n| Lamborghini Huracan ST Evo2 2021 | lamborghini_huracan_st_evo2 |\n| Porsche 992 GT3 Cup 2021         | porsche_992_gt3_cup         |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frrennoir%2FPyAccSharedMemory","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frrennoir%2FPyAccSharedMemory","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frrennoir%2FPyAccSharedMemory/lists"}