question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Is this project still maintained or abandoned

See original GitHub issue

We’re planning to use this library in our project and would like to know this is still maintained and whether can we get some clarification on the usage?.

  1. Can we generate a json output out of the dom or any guide on how to do it
  2. Can we parse the template once and reuse it (or serialize to disk) in order to parse the data files thereafter instead of re-parsing the template.

Issue Analytics

  • State:open
  • Created 3 years ago
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
d0c-s4vagecommented, Feb 8, 2021

Expect some movement on this this week - I have a number of items queued up for pfp/py010parser.

0reactions
kmrshcommented, Feb 8, 2021

ex: current print output as a different output format (ex: json)

ex: Current output


struct {
    fileheader = struct {
        MainVersion = UChar(1 [01])
        SubVersion = UChar(0 [00])
        TraceNo    = UInt(4294967295 [ffffffff])
        Reserved   = UChar[26] ('ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ')
    }
    EventRecord = EVENTRECORED[2]
        EventRecord[0] = struct {
                CHRHeader  = struct {
                    EventId    = UShort(4870 [1306])
                    EventLength = UInt(42 [0000002a])
                    eNodeBId   = UInt(21156 [000052a4])

Simplified json output

{
    fileheader: {
        MainVersion: 1,
        SubVersion: 0,
        TraceNo: 4294967295
        Reserved: ''
    },
    EventRecordCollection: [
        {
            CHRHeader: {
                EventId: 4870,
                EventLength: 42
                ...
            }
        }
    ]
}                    

extended json output incliding types and other properties as shown in current print output

{
    fileheader: {
        MainVersion: {type: 'UChar', value: 1, bin: '01'},
        SubVersion: {type: 'UChar', value: 0, bin: '00'},
}

Since you’ve already implemented _pfp__show in Fields this should be very much similar to that except it generates json output and return it (instead of printing it)

Read more comments on GitHub >

github_iconTop Results From Across the Web

Is this project now abandoned? · Issue #151
It is maintained in a private repository on Azure DevOps. Basically development on this project is no longer open-source, but the legacy ...
Read more >
Our Guide for Unmaintained Open Source Projects
There is no clear way to continuing maintenance of an abandoned OSS project. There are definitely great guides that share a few important ......
Read more >
What's an Abandoned open source project that people still ...
I'm looking for Python projects where the owner has either disappeared or decided to stop supporting it, and no decent forks exist.
Read more >
Finally a way to mark your Github project as abandoned
Announcing stillmaintained.com, a simple web application that keeps track of open source maintenance states.
Read more >
repostatus.org
Abandoned – Initial development has started, but there has not yet been a stable, usable release; the project has been abandoned and the...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found